From 4a0e9bc7e026e84d2e8f66edc4f098488ce7aeab Mon Sep 17 00:00:00 2001 From: Rhys Lees <43909932+RhysLees@users.noreply.github.com> Date: Thu, 14 Mar 2024 21:48:40 +0000 Subject: [PATCH 01/11] WIP --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 56516cc..fc16dfe 100644 --- a/composer.json +++ b/composer.json @@ -21,15 +21,15 @@ } ], "require": { - "php": "^8.1", + "php": "^8.3", "guzzlehttp/guzzle": "^7.8", - "illuminate/contracts": "^10.0", + "illuminate/contracts": "^11.0", "spatie/laravel-package-tools": "^1.16" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.46", - "nunomaduro/collision": "^7.10", - "orchestra/testbench": "^8.20", + "nunomaduro/collision": "^8.1", + "orchestra/testbench": "^9.0", "pestphp/pest": "^2.31", "phpunit/phpunit": "^10.5", "spatie/laravel-ray": "^1.33", From a8e5efc2ff827a4252654aed607d06569f9287ca Mon Sep 17 00:00:00 2001 From: Rhys Lees <43909932+RhysLees@users.noreply.github.com> Date: Thu, 14 Mar 2024 22:10:34 +0000 Subject: [PATCH 02/11] WIP --- .github/workflows/run-tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index ae885d2..84ff88c 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -14,12 +14,12 @@ jobs: max-parallel: 1 matrix: os: [ ubuntu-latest, windows-latest ] - php: [ 8.2, 8.3 ] - laravel: [ 10.* ] + php: [ 8.3 ] + laravel: [ 11.* ] stability: [ prefer-lowest, prefer-stable ] include: - - laravel: 10.* - testbench: 8.* + - laravel: 11.* + testbench: 9.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} From 0e4d1c3cc0538b14a2ab185a8c8f25634af62969 Mon Sep 17 00:00:00 2001 From: Rhys Lees <43909932+RhysLees@users.noreply.github.com> Date: Fri, 15 Mar 2024 11:48:59 +0000 Subject: [PATCH 03/11] WIP --- .github/workflows/psalm.yml | 2 +- .github/workflows/run-tests.yml | 5 +---- composer.json | 2 +- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml index a05ccc0..fd3892c 100644 --- a/.github/workflows/psalm.yml +++ b/.github/workflows/psalm.yml @@ -16,7 +16,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.1' + php-version: '8.2' extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick coverage: none diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 84ff88c..558ab07 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -14,12 +14,9 @@ jobs: max-parallel: 1 matrix: os: [ ubuntu-latest, windows-latest ] - php: [ 8.3 ] + php: [ 8.2, 8.3 ] laravel: [ 11.* ] stability: [ prefer-lowest, prefer-stable ] - include: - - laravel: 11.* - testbench: 9.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index fc16dfe..b70cee4 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ } ], "require": { - "php": "^8.3", + "php": ">=8.2", "guzzlehttp/guzzle": "^7.8", "illuminate/contracts": "^11.0", "spatie/laravel-package-tools": "^1.16" From ab24be42b72029ecd93d2b86dff3962fe98ba0f0 Mon Sep 17 00:00:00 2001 From: Rhys Lees <43909932+RhysLees@users.noreply.github.com> Date: Fri, 15 Mar 2024 11:51:19 +0000 Subject: [PATCH 04/11] WIP --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 558ab07..c26d8ea 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -38,7 +38,7 @@ jobs: - name: Install dependencies run: | - composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update + composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update composer update --${{ matrix.stability }} --prefer-dist --no-interaction - name: Set phpunit.xml From 36d72484f47f0bc39f4108cae9f2179982865fef Mon Sep 17 00:00:00 2001 From: Rhys Lees <43909932+RhysLees@users.noreply.github.com> Date: Thu, 27 Feb 2025 14:32:42 +0000 Subject: [PATCH 05/11] WIP --- src/DTO/Carrier.php | 3 +-- src/DTO/Lookup.php | 4 +--- src/DTO/SendCodeAttempt.php | 5 ++--- src/DTO/VerificationCheck.php | 9 ++++----- src/DTO/VerificationStart.php | 9 ++++----- src/Events/TwilioVerifyResponseLog.php | 4 +--- tests/Feature/TwilioVerifyTest.php | 4 ++-- tests/TestCase.php | 4 ++-- 8 files changed, 17 insertions(+), 25 deletions(-) diff --git a/src/DTO/Carrier.php b/src/DTO/Carrier.php index f0d84c0..2b64c03 100644 --- a/src/DTO/Carrier.php +++ b/src/DTO/Carrier.php @@ -23,8 +23,7 @@ public function __construct( public string $mobile_country_code, public string $mobile_network_code, public string $type, - ) { - } + ) {} public static function fake( ?string $error_code = null, diff --git a/src/DTO/Lookup.php b/src/DTO/Lookup.php index e6fee8a..b085ca7 100644 --- a/src/DTO/Lookup.php +++ b/src/DTO/Lookup.php @@ -17,9 +17,7 @@ public static function fromJson(array $lookup): ?self ); } - public function __construct(public Carrier $carrier) - { - } + public function __construct(public Carrier $carrier) {} public static function fake(?Carrier $carrier = null): self { diff --git a/src/DTO/SendCodeAttempt.php b/src/DTO/SendCodeAttempt.php index 7629f18..2690a5d 100644 --- a/src/DTO/SendCodeAttempt.php +++ b/src/DTO/SendCodeAttempt.php @@ -24,8 +24,7 @@ public function __construct( public Carbon $time, public string $channel, public string $attempt_sid, - ) { - } + ) {} public static function fake( ?Carbon $time = null, @@ -35,7 +34,7 @@ public static function fake( return new static( time: $time ?? now(), channel: $channel ?? 'sms', - attempt_sid: $attempt_sid ?? 'VL' . Str::random(32), + attempt_sid: $attempt_sid ?? 'VL'.Str::random(32), ); } } diff --git a/src/DTO/VerificationCheck.php b/src/DTO/VerificationCheck.php index 2ea334c..d97ac48 100644 --- a/src/DTO/VerificationCheck.php +++ b/src/DTO/VerificationCheck.php @@ -33,8 +33,7 @@ public function __construct( public bool $valid, public Carbon $created_at, public Carbon $updated_at, - ) { - } + ) {} public static function fake( ?string $sid = null, @@ -48,9 +47,9 @@ public static function fake( ?string $updated_at = null, ): self { return new static( - sid: $sid ?? 'VE' . Str::random(32), - service_sid: $service_sid ?? 'VA' . Str::random(32), - account_sid: $account_sid ?? 'AC' . Str::random(32), + sid: $sid ?? 'VE'.Str::random(32), + service_sid: $service_sid ?? 'VA'.Str::random(32), + account_sid: $account_sid ?? 'AC'.Str::random(32), to: $to ?? '+41795555825', channel: $channel ?? 'sms', status: $status ?? 'approved', diff --git a/src/DTO/VerificationStart.php b/src/DTO/VerificationStart.php index e3401f0..d762984 100644 --- a/src/DTO/VerificationStart.php +++ b/src/DTO/VerificationStart.php @@ -43,8 +43,7 @@ public function __construct( public ?Lookup $lookup, public Collection $send_code_attempts, public string $url, - ) { - } + ) {} public static function fake( ?string $sid = null, @@ -60,12 +59,12 @@ public static function fake( ?Collection $send_code_attempts = null, ?string $url = null, ): self { - $service = 'VA' . Str::random(32); + $service = 'VA'.Str::random(32); return new static( - sid: $sid ?? 'VE' . Str::random(32), + sid: $sid ?? 'VE'.Str::random(32), service_sid: $service_sid ?? $service, - account_sid: $account_sid ?? 'AC' . Str::random(32), + account_sid: $account_sid ?? 'AC'.Str::random(32), to: $to ?? '+41795555825', channel: $channel ?? 'sms', status: $status ?? 'pending', diff --git a/src/Events/TwilioVerifyResponseLog.php b/src/Events/TwilioVerifyResponseLog.php index dba2a81..94cad09 100644 --- a/src/Events/TwilioVerifyResponseLog.php +++ b/src/Events/TwilioVerifyResponseLog.php @@ -13,7 +13,5 @@ class TwilioVerifyResponseLog use InteractsWithSockets; use SerializesModels; - public function __construct(public Response $response) - { - } + public function __construct(public Response $response) {} } diff --git a/tests/Feature/TwilioVerifyTest.php b/tests/Feature/TwilioVerifyTest.php index 7acabf5..40d9ff2 100644 --- a/tests/Feature/TwilioVerifyTest.php +++ b/tests/Feature/TwilioVerifyTest.php @@ -18,7 +18,7 @@ public function it_does_start_a_verification_with_sms() Event::fake(); $phoneNumber = '+12085059915'; - $verification = (new TwilioVerify())->start(to: $phoneNumber); + $verification = (new TwilioVerify)->start(to: $phoneNumber); $this->assertInstanceOf(VerificationStart::class, $verification); $this->assertSame($phoneNumber, $verification->to); @@ -37,7 +37,7 @@ public function it_does_check_a_verification_with_sms() $code = '4804'; $phoneNumber = '+12085059915'; - $verification = (new TwilioVerify())->check( + $verification = (new TwilioVerify)->check( to: $phoneNumber, code: $code, ); diff --git a/tests/TestCase.php b/tests/TestCase.php index 6f1caea..43e021a 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -8,12 +8,12 @@ class TestCase extends Orchestra { - public function setUp(): void + protected function setUp(): void { parent::setUp(); Factory::guessFactoryNamesUsing( - fn (string $modelName) => 'Spatie\\TwilioVerify\\Database\\Factories\\' . class_basename($modelName) . 'Factory', + fn (string $modelName) => 'Spatie\\TwilioVerify\\Database\\Factories\\'.class_basename($modelName).'Factory', ); } From 2723eefe22fb994c40efbb76c645aefa3793d5b8 Mon Sep 17 00:00:00 2001 From: RhysLees Date: Thu, 27 Feb 2025 14:32:58 +0000 Subject: [PATCH 06/11] Fix styling --- src/DTO/Carrier.php | 3 ++- src/DTO/Lookup.php | 4 +++- src/DTO/SendCodeAttempt.php | 5 +++-- src/DTO/VerificationCheck.php | 9 +++++---- src/DTO/VerificationStart.php | 9 +++++---- src/Events/TwilioVerifyResponseLog.php | 4 +++- tests/TestCase.php | 2 +- 7 files changed, 22 insertions(+), 14 deletions(-) diff --git a/src/DTO/Carrier.php b/src/DTO/Carrier.php index 2b64c03..f0d84c0 100644 --- a/src/DTO/Carrier.php +++ b/src/DTO/Carrier.php @@ -23,7 +23,8 @@ public function __construct( public string $mobile_country_code, public string $mobile_network_code, public string $type, - ) {} + ) { + } public static function fake( ?string $error_code = null, diff --git a/src/DTO/Lookup.php b/src/DTO/Lookup.php index b085ca7..e6fee8a 100644 --- a/src/DTO/Lookup.php +++ b/src/DTO/Lookup.php @@ -17,7 +17,9 @@ public static function fromJson(array $lookup): ?self ); } - public function __construct(public Carrier $carrier) {} + public function __construct(public Carrier $carrier) + { + } public static function fake(?Carrier $carrier = null): self { diff --git a/src/DTO/SendCodeAttempt.php b/src/DTO/SendCodeAttempt.php index 2690a5d..7629f18 100644 --- a/src/DTO/SendCodeAttempt.php +++ b/src/DTO/SendCodeAttempt.php @@ -24,7 +24,8 @@ public function __construct( public Carbon $time, public string $channel, public string $attempt_sid, - ) {} + ) { + } public static function fake( ?Carbon $time = null, @@ -34,7 +35,7 @@ public static function fake( return new static( time: $time ?? now(), channel: $channel ?? 'sms', - attempt_sid: $attempt_sid ?? 'VL'.Str::random(32), + attempt_sid: $attempt_sid ?? 'VL' . Str::random(32), ); } } diff --git a/src/DTO/VerificationCheck.php b/src/DTO/VerificationCheck.php index d97ac48..2ea334c 100644 --- a/src/DTO/VerificationCheck.php +++ b/src/DTO/VerificationCheck.php @@ -33,7 +33,8 @@ public function __construct( public bool $valid, public Carbon $created_at, public Carbon $updated_at, - ) {} + ) { + } public static function fake( ?string $sid = null, @@ -47,9 +48,9 @@ public static function fake( ?string $updated_at = null, ): self { return new static( - sid: $sid ?? 'VE'.Str::random(32), - service_sid: $service_sid ?? 'VA'.Str::random(32), - account_sid: $account_sid ?? 'AC'.Str::random(32), + sid: $sid ?? 'VE' . Str::random(32), + service_sid: $service_sid ?? 'VA' . Str::random(32), + account_sid: $account_sid ?? 'AC' . Str::random(32), to: $to ?? '+41795555825', channel: $channel ?? 'sms', status: $status ?? 'approved', diff --git a/src/DTO/VerificationStart.php b/src/DTO/VerificationStart.php index d762984..e3401f0 100644 --- a/src/DTO/VerificationStart.php +++ b/src/DTO/VerificationStart.php @@ -43,7 +43,8 @@ public function __construct( public ?Lookup $lookup, public Collection $send_code_attempts, public string $url, - ) {} + ) { + } public static function fake( ?string $sid = null, @@ -59,12 +60,12 @@ public static function fake( ?Collection $send_code_attempts = null, ?string $url = null, ): self { - $service = 'VA'.Str::random(32); + $service = 'VA' . Str::random(32); return new static( - sid: $sid ?? 'VE'.Str::random(32), + sid: $sid ?? 'VE' . Str::random(32), service_sid: $service_sid ?? $service, - account_sid: $account_sid ?? 'AC'.Str::random(32), + account_sid: $account_sid ?? 'AC' . Str::random(32), to: $to ?? '+41795555825', channel: $channel ?? 'sms', status: $status ?? 'pending', diff --git a/src/Events/TwilioVerifyResponseLog.php b/src/Events/TwilioVerifyResponseLog.php index 94cad09..dba2a81 100644 --- a/src/Events/TwilioVerifyResponseLog.php +++ b/src/Events/TwilioVerifyResponseLog.php @@ -13,5 +13,7 @@ class TwilioVerifyResponseLog use InteractsWithSockets; use SerializesModels; - public function __construct(public Response $response) {} + public function __construct(public Response $response) + { + } } diff --git a/tests/TestCase.php b/tests/TestCase.php index 43e021a..2a22970 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -13,7 +13,7 @@ protected function setUp(): void parent::setUp(); Factory::guessFactoryNamesUsing( - fn (string $modelName) => 'Spatie\\TwilioVerify\\Database\\Factories\\'.class_basename($modelName).'Factory', + fn (string $modelName) => 'Spatie\\TwilioVerify\\Database\\Factories\\' . class_basename($modelName) . 'Factory', ); } From ed055cecbc1680fe40474cebd30b5d41e0a07a61 Mon Sep 17 00:00:00 2001 From: Rhys Lees <43909932+RhysLees@users.noreply.github.com> Date: Thu, 27 Feb 2025 15:59:17 +0000 Subject: [PATCH 07/11] WIP --- .github/ISSUE_TEMPLATE/bug_report.yml | 17 ++++--- .github/dependabot.yml | 12 +++++ .github/workflows/dependabot-auto-merge.yml | 32 ++++++++++++ .github/workflows/dependency-review.yml | 20 ++++++++ .../workflows/fix-php-code-style-issues.yml | 21 ++++++++ .github/workflows/php-cs-fixer.yml | 23 --------- .github/workflows/phpstan.yml | 26 ++++++++++ .github/workflows/psalm.yml | 33 ------------ .github/workflows/release.yml | 23 +++++++++ .github/workflows/run-tests.yml | 21 ++++---- .php-cs-fixer.dist.php | 51 ------------------- composer.json | 36 +++++++------ psalm.xml.dist | 16 ------ src/DTO/Carrier.php | 3 +- src/DTO/Lookup.php | 4 +- src/DTO/SendCodeAttempt.php | 5 +- src/DTO/VerificationCheck.php | 9 ++-- src/DTO/VerificationStart.php | 9 ++-- src/Events/TwilioVerifyResponseLog.php | 4 +- tests/TestCase.php | 2 +- 20 files changed, 189 insertions(+), 178 deletions(-) create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/dependabot-auto-merge.yml create mode 100644 .github/workflows/dependency-review.yml create mode 100644 .github/workflows/fix-php-code-style-issues.yml delete mode 100644 .github/workflows/php-cs-fixer.yml create mode 100644 .github/workflows/phpstan.yml delete mode 100644 .github/workflows/psalm.yml create mode 100644 .github/workflows/release.yml delete mode 100644 .php-cs-fixer.dist.php delete mode 100644 psalm.xml.dist diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 7546b77..bc5e177 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,18 +1,18 @@ name: Bug Report description: Report an Issue or Bug with the Package title: "[Bug]: " -labels: ["bug"] +labels: [ "bug" ] body: - type: markdown attributes: - value: | - We're sorry to hear you have a problem. Can you help us solve it by providing the following details. + value: "| +We're sorry to hear you have a problem. Can you help us solve it by providing the following details." - type: textarea id: what-happened attributes: label: What happened? description: What did you expect to happen? - placeholder: I cannot currently do X thing because when I do, it breaks X thing. + placeholder: "I cannot currently do X thing because when I do, it breaks X thing." validations: required: true - type: input @@ -20,7 +20,8 @@ body: attributes: label: Package Version description: What version of our Package are you running? Please be as specific as possible - placeholder: 1.0.0 + placeholder: "12.0" + value: "12.0" validations: required: true - type: input @@ -28,7 +29,8 @@ body: attributes: label: PHP Version description: What version of PHP are you running? Please be as specific as possible - placeholder: 8.3.0 + placeholder: "8.4.0" + value: "8.4.0" validations: required: true - type: input @@ -36,7 +38,8 @@ body: attributes: label: Laravel Version description: What version of Laravel are you running? Please be as specific as possible - placeholder: 11.0.0 + placeholder: "12.0.0" + value: "12.0.0" validations: required: true - type: dropdown diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..0bc378d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +# Please see the documentation for all configuration options: +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + labels: + - "dependencies" diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml new file mode 100644 index 0000000..2df1631 --- /dev/null +++ b/.github/workflows/dependabot-auto-merge.yml @@ -0,0 +1,32 @@ +name: dependabot-auto-merge +on: pull_request_target + +permissions: + pull-requests: write + contents: write + +jobs: + dependabot: + runs-on: ubuntu-latest + if: ${{ github.actor == 'dependabot[bot]' }} + steps: + + - name: Dependabot metadata + id: metadata + uses: dependabot/fetch-metadata@v2.3.0 + with: + github-token: "${{ secrets.GITHUB_TOKEN }}" + + - name: Auto-merge Dependabot PRs for semver-minor updates + if: ${{steps.metadata.outputs.update-type == 'version-update:semver-minor'}} + run: gh pr merge --auto --merge "$PR_URL" + env: + PR_URL: ${{github.event.pull_request.html_url}} + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + + - name: Auto-merge Dependabot PRs for semver-patch updates + if: ${{steps.metadata.outputs.update-type == 'version-update:semver-patch'}} + run: gh pr merge --auto --merge "$PR_URL" + env: + PR_URL: ${{github.event.pull_request.html_url}} + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml new file mode 100644 index 0000000..0d4a013 --- /dev/null +++ b/.github/workflows/dependency-review.yml @@ -0,0 +1,20 @@ +# Dependency Review Action +# +# This Action will scan dependency manifest files that change as part of a Pull Request, surfacing known-vulnerable versions of the packages declared or updated in the PR. Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable packages will be blocked from merging. +# +# Source repository: https://github.com/actions/dependency-review-action +# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement +name: 'Dependency Review' +on: [pull_request] + +permissions: + contents: read + +jobs: + dependency-review: + runs-on: ubuntu-latest + steps: + - name: 'Checkout Repository' + uses: actions/checkout@v4 + - name: 'Dependency Review' + uses: actions/dependency-review-action@v4 diff --git a/.github/workflows/fix-php-code-style-issues.yml b/.github/workflows/fix-php-code-style-issues.yml new file mode 100644 index 0000000..ef2fadf --- /dev/null +++ b/.github/workflows/fix-php-code-style-issues.yml @@ -0,0 +1,21 @@ +name: Fix PHP code style issues + +on: [push] + +jobs: + php-code-styling: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + ref: ${{ github.head_ref }} + + - name: Fix PHP code style issues + uses: aglipanci/laravel-pint-action@2.5 + + - name: Commit changes + uses: stefanzweifel/git-auto-commit-action@v5 + with: + commit_message: Fix styling diff --git a/.github/workflows/php-cs-fixer.yml b/.github/workflows/php-cs-fixer.yml deleted file mode 100644 index a83d708..0000000 --- a/.github/workflows/php-cs-fixer.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Check & fix styling - -on: [push] - -jobs: - php-cs-fixer: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v2 - with: - ref: ${{ github.head_ref }} - - - name: Run PHP CS Fixer - uses: docker://oskarstark/php-cs-fixer-ga - with: - args: --config=.php-cs-fixer.dist.php --allow-risky=yes - - - name: Commit changes - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: Fix styling diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml new file mode 100644 index 0000000..b0cde6a --- /dev/null +++ b/.github/workflows/phpstan.yml @@ -0,0 +1,26 @@ +name: PHPStan + +on: + push: + paths: + - '**.php' + - 'phpstan.neon.dist' + +jobs: + phpstan: + name: phpstan + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: '8.4' + coverage: none + + - name: Install composer dependencies + uses: ramsey/composer-install@v3 + + - name: Run PHPStan + run: ./vendor/bin/phpstan --error-format=github diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml deleted file mode 100644 index fd3892c..0000000 --- a/.github/workflows/psalm.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Psalm - -on: - push: - paths: - - '**.php' - - 'psalm.xml.dist' - -jobs: - psalm: - name: psalm - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: '8.2' - extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick - coverage: none - - - name: Cache composer dependencies - uses: actions/cache@v2 - with: - path: vendor - key: composer-${{ hashFiles('composer.lock') }} - - - name: Run composer install - run: composer install -n --prefer-dist - - - name: Run psalm - run: ./vendor/bin/psalm --output-format=github diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..afa28ff --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,23 @@ +name: release + +on: + pull_request: + types: + - closed + branches: + - main +jobs: + release: + name: Release + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: '0' + - name: Bump version and push tag + uses: anothrNick/github-tag-action@master + env: + GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} + WITH_V: true + RELEASE_BRANCHES: main + DEFAULT_BUMP: minor diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index c26d8ea..c4d9e45 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,16 +13,16 @@ jobs: fail-fast: true max-parallel: 1 matrix: - os: [ ubuntu-latest, windows-latest ] - php: [ 8.2, 8.3 ] - laravel: [ 11.* ] + os: [ ubuntu-latest ] + php: [ 8.2, 8.3, 8.4 ] + laravel: [ 12.* ] stability: [ prefer-lowest, prefer-stable ] name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -41,16 +41,15 @@ jobs: composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update composer update --${{ matrix.stability }} --prefer-dist --no-interaction - - name: Set phpunit.xml + - name: Execute tests run: cp phpunit.xml.dist phpunit.xml - name: Execute tests run: vendor/bin/pest - - name: Store test reports - uses: actions/upload-artifact@v2 + - name: Store Log Artifacts + if: failure() + uses: actions/upload-artifact@v4 with: - name: Store report - retention-days: 1 - path: | - ./reports + name: Store report artifacts + path: ./vendor/orchestra/testbench-core/laravel/storage/logs diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php deleted file mode 100644 index a0168ac..0000000 --- a/.php-cs-fixer.dist.php +++ /dev/null @@ -1,51 +0,0 @@ - true, - 'array_indentation' => true, - 'array_syntax' => ['syntax' => 'short'], - 'binary_operator_spaces' => true, - 'blank_line_before_statement' => [ - 'statements' => ['break', 'continue', 'declare', 'return', 'throw', 'try'], - ], - 'cast_spaces' => ['space' => 'single'], - 'class_attributes_separation' => [ - 'elements' => ['method' => 'one'], - ], - 'concat_space' => ['spacing' => 'one'], - 'function_declaration' => false, - 'method_argument_space' => [ - 'on_multiline' => 'ensure_fully_multiline', - 'keep_multiple_spaces_after_comma' => true, - ], - 'method_chaining_indentation' => true, - 'no_empty_statement' => true, - 'no_unused_imports' => true, - 'not_operator_with_successor_space' => false, - 'ordered_imports' => ['sort_algorithm' => 'alpha'], - 'phpdoc_scalar' => true, - 'phpdoc_single_line_var_spacing' => true, - 'phpdoc_var_without_name' => true, - 'return_type_declaration' => true, - 'single_quote' => true, - 'single_trait_insert_per_statement' => true, - 'trailing_comma_in_multiline' => ['elements' => ['arrays', 'arguments', 'parameters']], - 'unary_operator_spaces' => true, -]; - -$finder = Finder::create() - ->in([ - __DIR__ . '/src', - __DIR__ . '/tests', - ]) - ->name('*.php') - ->notName('*.blade.php') - ->ignoreDotFiles(true) - ->ignoreVCS(true); - -return (new Config()) - ->setRules($rules) - ->setFinder($finder); diff --git a/composer.json b/composer.json index ff31ae5..525932e 100644 --- a/composer.json +++ b/composer.json @@ -11,9 +11,14 @@ "license": "MIT", "authors": [ { - "name": "Sebastian x", - "email": "sebastian.fix@codebar.ch", - "role": "Developer" + "name": "Sebastian Bürgin-Fix", + "email": "sebastian.buergin@buergin.ch", + "homepage": "https://www.codebar.ch", + "role": "Sofware-Engineer" + }, + { + "name": "Rhys Lees", + "role": "Software-Engineer" }, { "name": "Ruslan Steiger", @@ -21,20 +26,20 @@ } ], "require": { - "php": ">=8.2", + "php": "8.2.*|8.3.*|8.4.*", "guzzlehttp/guzzle": "^7.8", - "illuminate/contracts": "^11.0", - "spatie/laravel-package-tools": "^1.16" + "illuminate/contracts": "^12.0", + "spatie/laravel-package-tools": "^1.19" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^3.46", - "nunomaduro/collision": "^8.1", - "orchestra/testbench": "^9.0", - "laravel/pint": "^1.14", - "pestphp/pest": "^2.31", - "phpunit/phpunit": "^10.5", - "spatie/laravel-ray": "^1.35", - "vimeo/psalm": "^5.19" + "laravel/pint": "^1.21", + "larastan/larastan": "^v3.1", + "orchestra/testbench": "^10.0", + "pestphp/pest": "^3.7", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan-deprecation-rules": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "spatie/laravel-ray": "^1.39" }, "autoload": { "psr-4": { @@ -56,7 +61,8 @@ "sort-packages": true, "allow-plugins": { "composer/package-versions-deprecated": true, - "pestphp/pest-plugin": true + "pestphp/pest-plugin": true, + "phpstan/extension-installer": true } }, "extra": { diff --git a/psalm.xml.dist b/psalm.xml.dist deleted file mode 100644 index c6df33e..0000000 --- a/psalm.xml.dist +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - diff --git a/src/DTO/Carrier.php b/src/DTO/Carrier.php index f0d84c0..2b64c03 100644 --- a/src/DTO/Carrier.php +++ b/src/DTO/Carrier.php @@ -23,8 +23,7 @@ public function __construct( public string $mobile_country_code, public string $mobile_network_code, public string $type, - ) { - } + ) {} public static function fake( ?string $error_code = null, diff --git a/src/DTO/Lookup.php b/src/DTO/Lookup.php index e6fee8a..b085ca7 100644 --- a/src/DTO/Lookup.php +++ b/src/DTO/Lookup.php @@ -17,9 +17,7 @@ public static function fromJson(array $lookup): ?self ); } - public function __construct(public Carrier $carrier) - { - } + public function __construct(public Carrier $carrier) {} public static function fake(?Carrier $carrier = null): self { diff --git a/src/DTO/SendCodeAttempt.php b/src/DTO/SendCodeAttempt.php index 7629f18..2690a5d 100644 --- a/src/DTO/SendCodeAttempt.php +++ b/src/DTO/SendCodeAttempt.php @@ -24,8 +24,7 @@ public function __construct( public Carbon $time, public string $channel, public string $attempt_sid, - ) { - } + ) {} public static function fake( ?Carbon $time = null, @@ -35,7 +34,7 @@ public static function fake( return new static( time: $time ?? now(), channel: $channel ?? 'sms', - attempt_sid: $attempt_sid ?? 'VL' . Str::random(32), + attempt_sid: $attempt_sid ?? 'VL'.Str::random(32), ); } } diff --git a/src/DTO/VerificationCheck.php b/src/DTO/VerificationCheck.php index 2ea334c..d97ac48 100644 --- a/src/DTO/VerificationCheck.php +++ b/src/DTO/VerificationCheck.php @@ -33,8 +33,7 @@ public function __construct( public bool $valid, public Carbon $created_at, public Carbon $updated_at, - ) { - } + ) {} public static function fake( ?string $sid = null, @@ -48,9 +47,9 @@ public static function fake( ?string $updated_at = null, ): self { return new static( - sid: $sid ?? 'VE' . Str::random(32), - service_sid: $service_sid ?? 'VA' . Str::random(32), - account_sid: $account_sid ?? 'AC' . Str::random(32), + sid: $sid ?? 'VE'.Str::random(32), + service_sid: $service_sid ?? 'VA'.Str::random(32), + account_sid: $account_sid ?? 'AC'.Str::random(32), to: $to ?? '+41795555825', channel: $channel ?? 'sms', status: $status ?? 'approved', diff --git a/src/DTO/VerificationStart.php b/src/DTO/VerificationStart.php index e3401f0..d762984 100644 --- a/src/DTO/VerificationStart.php +++ b/src/DTO/VerificationStart.php @@ -43,8 +43,7 @@ public function __construct( public ?Lookup $lookup, public Collection $send_code_attempts, public string $url, - ) { - } + ) {} public static function fake( ?string $sid = null, @@ -60,12 +59,12 @@ public static function fake( ?Collection $send_code_attempts = null, ?string $url = null, ): self { - $service = 'VA' . Str::random(32); + $service = 'VA'.Str::random(32); return new static( - sid: $sid ?? 'VE' . Str::random(32), + sid: $sid ?? 'VE'.Str::random(32), service_sid: $service_sid ?? $service, - account_sid: $account_sid ?? 'AC' . Str::random(32), + account_sid: $account_sid ?? 'AC'.Str::random(32), to: $to ?? '+41795555825', channel: $channel ?? 'sms', status: $status ?? 'pending', diff --git a/src/Events/TwilioVerifyResponseLog.php b/src/Events/TwilioVerifyResponseLog.php index dba2a81..94cad09 100644 --- a/src/Events/TwilioVerifyResponseLog.php +++ b/src/Events/TwilioVerifyResponseLog.php @@ -13,7 +13,5 @@ class TwilioVerifyResponseLog use InteractsWithSockets; use SerializesModels; - public function __construct(public Response $response) - { - } + public function __construct(public Response $response) {} } diff --git a/tests/TestCase.php b/tests/TestCase.php index 2a22970..43e021a 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -13,7 +13,7 @@ protected function setUp(): void parent::setUp(); Factory::guessFactoryNamesUsing( - fn (string $modelName) => 'Spatie\\TwilioVerify\\Database\\Factories\\' . class_basename($modelName) . 'Factory', + fn (string $modelName) => 'Spatie\\TwilioVerify\\Database\\Factories\\'.class_basename($modelName).'Factory', ); } From 148f79f41c045c82146f5da3ecab8b61c346eb0a Mon Sep 17 00:00:00 2001 From: Rhys Lees <43909932+RhysLees@users.noreply.github.com> Date: Thu, 27 Feb 2025 16:06:58 +0000 Subject: [PATCH 08/11] WIP --- .gitattributes | 7 ++++++- .gitignore | 8 +++----- README.md | 15 ++++++++++----- build/report.junit.xml | 21 +++++++++++++++++++++ phpstan-baseline.neon | 0 phpstan.neon.dist | 12 ++++++++++++ phpunit.xml.dist | 35 ++++++++++++----------------------- 7 files changed, 64 insertions(+), 34 deletions(-) create mode 100644 build/report.junit.xml create mode 100644 phpstan-baseline.neon create mode 100644 phpstan.neon.dist diff --git a/.gitattributes b/.gitattributes index 886475c..9e9519b 100644 --- a/.gitattributes +++ b/.gitattributes @@ -6,9 +6,14 @@ /.gitattributes export-ignore /.gitignore export-ignore /phpunit.xml.dist export-ignore +/art export-ignore +/docs export-ignore /tests export-ignore /.editorconfig export-ignore -/.php_cs.dist export-ignore +/.php_cs.dist.php export-ignore /psalm.xml export-ignore /psalm.xml.dist export-ignore /testbench.yaml export-ignore +/UPGRADING.md export-ignore +/phpstan.neon.dist export-ignore +/phpstan-baseline.neon export-ignore diff --git a/.gitignore b/.gitignore index 8e0aaae..4ad394e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,11 @@ .idea -.php-cs-fixer.php -.php-cs-fixer.cache .phpunit.result.cache -build +.phpunit.cache composer.lock coverage -docs phpunit.xml -psalm.xml +phpstan.neon testbench.yaml vendor node_modules +.phpactor.json diff --git a/README.md b/README.md index 182d0c8..b469929 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,9 @@ -[![Latest Version on Packagist](https://img.shields.io/packagist/v/codebar-ag/laravel-twilio-verify.svg?style=flat-square)](https://packagist.org/packages/codebar-ag/laravel-twilio-verify) -[![Total Downloads](https://img.shields.io/packagist/dt/codebar-ag/laravel-twilio-verify.svg?style=flat-square)](https://packagist.org/packages/codebar-ag/laravel-twilio-verify) -[![run-tests](https://github.com/codebar-ag/laravel-twilio-verify/actions/workflows/run-tests.yml/badge.svg)](https://github.com/codebar-ag/laravel-twilio-verify/actions/workflows/run-tests.yml) -[![Psalm](https://github.com/codebar-ag/laravel-twilio-verify/actions/workflows/psalm.yml/badge.svg)](https://github.com/codebar-ag/laravel-twilio-verify/actions/workflows/psalm.yml) -[![Check & fix styling](https://github.com/codebar-ag/laravel-twilio-verify/actions/workflows/php-cs-fixer.yml/badge.svg)](https://github.com/codebar-ag/laravel-twilio-verify/actions/workflows/php-cs-fixer.yml) +[![Latest Version on Packagist](https://img.shields.io/packagist/v/codebar-ag/laravel-twillio-verify.svg?style=flat-square)](https://packagist.org/packages/codebar-ag/laravel-twillio-verify) +[![GitHub-Tests](https://github.com/codebar-ag/laravel-twillio-verify/actions/workflows/run-tests.yml/badge.svg?branch=main)](https://github.com/codebar-ag/laravel-twillio-verify/actions/workflows/run-tests.yml) +[![GitHub Code Style](https://github.com/codebar-ag/laravel-twillio-verify/actions/workflows/fix-php-code-style-issues.yml/badge.svg?branch=main)](https://github.com/codebar-ag/laravel-twillio-verify/actions/workflows/fix-php-code-style-issues.yml) +[![Total Downloads](https://img.shields.io/packagist/dt/codebar-ag/laravel-twillio-verify.svg?style=flat-square)](https://packagist.org/packages/codebar-ag/laravel-twillio-verify) This package was developed to give you a quick start to communicate with the Twilio Verify service. @@ -19,6 +18,12 @@ Push. Add verification to any step of your user‘s journey with a single API. ## 🛠 Requirements +| Package | PHP | Laravel | +|:-------:|:-----------:|:-------:| +| v12.0.0 | ^8.2 - ^8.4 | 12.x | +| v11.0.0 | ^8.2 - ^8.3 | 11.x | +| | ^8.0 | ... | + - PHP: `^8.0` - Laravel: `^8.12` - Twilio Account diff --git a/build/report.junit.xml b/build/report.junit.xml new file mode 100644 index 0000000..5b6c15f --- /dev/null +++ b/build/report.junit.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/phpstan-baseline.neon b/phpstan-baseline.neon new file mode 100644 index 0000000..e69de29 diff --git a/phpstan.neon.dist b/phpstan.neon.dist new file mode 100644 index 0000000..0cc2d04 --- /dev/null +++ b/phpstan.neon.dist @@ -0,0 +1,12 @@ +includes: + - phpstan-baseline.neon + +parameters: + level: 5 + paths: + - src + - config + tmpDir: build/phpstan + checkOctaneCompatibility: true + checkModelProperties: true + noEnvCallsOutsideOfConfig: false diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 5f4e879..55fd27f 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,32 +1,15 @@ - + - + tests - - ./src - @@ -37,9 +20,15 @@ + + + + ./src + + From 3192729fe2448f5007fd407c283f2143aee1f8c6 Mon Sep 17 00:00:00 2001 From: Rhys Lees <43909932+RhysLees@users.noreply.github.com> Date: Thu, 27 Feb 2025 16:09:06 +0000 Subject: [PATCH 09/11] WIP --- ...65d6d2e2624e292aec9adcce89b24d99966379.php | 288 + ...469e39ff613cc46739e4f4b8a64fdd549fc0c6.php | 1419 ++ ...01be55607081c10d7af73a3ca72a58e9681328.php | 132 + ...4b85b32bd37f3981e57c0d38866dc31ca65a05.php | 24 + ...1e106cd61310448624f0d8befed9daade6f051.php | 1602 ++ ...24d829a91e793e9dfde9a72a1495f5c87a1770.php | 28 + ...e19bc71f3867ee7c4eb2c9fc2adf1a249bb080.php | 260 + ...0d87dd02dee5a170322f7126827cc830ffb674.php | 164 + ...7e1a2bbf979b2bcce48b710df4522487bdb71d.php | 106 + ...cfb0e52ab56e79b0cc84a8c34dd2fce9305585.php | 22 + ...43bcb54a2a84c6cb812a7bf78fc212b6bb9b96.php | 120 + ...4f1d5b5de228c969a5f59ae27f4c8618ada4ed.php | 145 + ...af6a97372b42bc88398afdadbfa84cb31d2592.php | 154 + ...39a2491b73c999e4428ad8f42774bd706e8563.php | 27 + ...60e8ebac70223ee4fc1afa54484297f3327f43.php | 60 + ...c93509bed6d8a6b0d49b45753619d3f899cbe5.php | 70 + ...335fdf6ec7ec7dc6f397cfeaa3b474122be1ea.php | 23 + ...da7f716177026b79ab4149c9fc4e9a79b136aa.php | 315 + ...a1fa3b4156ce369a2fd146a9dc25f914a32e26.php | 874 + ...b79638cf7a7e2a79c39a16100dc9c8f6c789aa.php | 17309 ++++++++++++++++ ...a40994bab1ce5efea436d89f9ce568b53ecfe6.php | 283 + ...14f3d3b3e606f04b1918b7e196a0be3465009d.php | 100 + ...0a030abadecf5c5fa70574719fa1a9e445819b.php | 81 + ...a65a90404c0b8255b5d5ea24facd09461b9c65.php | 60 + ...ef67a94513bfca8b8d3367ec2281a467d31aa0.php | 155 + ...e02cf2732c9617965041b7a99ee064bc826cd0.php | 80 + ...b49cadb80a008d8cb2c27752c1a42874937f1d.php | 36 + build/phpstan/cache/PHPStan/cache-cleared | 1 + ...78ea1a722f55fbdf8cc3074755796931e58d2c.php | 24 + ...4941c9b51578194f0b34346537775aadaabad9.php | 68 + ...8c0db4ba2dd8fead2765782b3dc89efa80174d.php | 431 + ...77435bc038aa32a919661780f5e0dc748fb2f3.php | 24 + ...faba961ca84af4300b2bdad07f065a411b1674.php | 31 + ...d3da1e3370f2b6dcebda97974db0b1f154bfaa.php | 847 + ...7de80fa24c2edaa97ba02101dab3b0095e07d3.php | 362 + .../Container_c5db45e753.php | 8669 ++++++++ .../Container_c5db45e753.php.lock | 0 .../Container_c5db45e753.php.meta | 1 + .../nette.configurator/container.journal | 1 + build/phpstan/resultCache.php | 3977 ++++ src/DTO/Carrier.php | 3 + src/DTO/Lookup.php | 3 + src/DTO/SendCodeAttempt.php | 3 + src/DTO/VerificationCheck.php | 3 + src/DTO/VerificationStart.php | 2 + 45 files changed, 38387 insertions(+) create mode 100644 build/phpstan/cache/PHPStan/08/65/0865d6d2e2624e292aec9adcce89b24d99966379.php create mode 100644 build/phpstan/cache/PHPStan/0e/46/0e469e39ff613cc46739e4f4b8a64fdd549fc0c6.php create mode 100644 build/phpstan/cache/PHPStan/13/01/1301be55607081c10d7af73a3ca72a58e9681328.php create mode 100644 build/phpstan/cache/PHPStan/20/4b/204b85b32bd37f3981e57c0d38866dc31ca65a05.php create mode 100644 build/phpstan/cache/PHPStan/21/1e/211e106cd61310448624f0d8befed9daade6f051.php create mode 100644 build/phpstan/cache/PHPStan/22/24/2224d829a91e793e9dfde9a72a1495f5c87a1770.php create mode 100644 build/phpstan/cache/PHPStan/29/e1/29e19bc71f3867ee7c4eb2c9fc2adf1a249bb080.php create mode 100644 build/phpstan/cache/PHPStan/2a/0d/2a0d87dd02dee5a170322f7126827cc830ffb674.php create mode 100644 build/phpstan/cache/PHPStan/39/7e/397e1a2bbf979b2bcce48b710df4522487bdb71d.php create mode 100644 build/phpstan/cache/PHPStan/3b/cf/3bcfb0e52ab56e79b0cc84a8c34dd2fce9305585.php create mode 100644 build/phpstan/cache/PHPStan/49/43/4943bcb54a2a84c6cb812a7bf78fc212b6bb9b96.php create mode 100644 build/phpstan/cache/PHPStan/59/4f/594f1d5b5de228c969a5f59ae27f4c8618ada4ed.php create mode 100644 build/phpstan/cache/PHPStan/5a/af/5aaf6a97372b42bc88398afdadbfa84cb31d2592.php create mode 100644 build/phpstan/cache/PHPStan/5b/39/5b39a2491b73c999e4428ad8f42774bd706e8563.php create mode 100644 build/phpstan/cache/PHPStan/5c/60/5c60e8ebac70223ee4fc1afa54484297f3327f43.php create mode 100644 build/phpstan/cache/PHPStan/65/c9/65c93509bed6d8a6b0d49b45753619d3f899cbe5.php create mode 100644 build/phpstan/cache/PHPStan/77/33/77335fdf6ec7ec7dc6f397cfeaa3b474122be1ea.php create mode 100644 build/phpstan/cache/PHPStan/7e/da/7eda7f716177026b79ab4149c9fc4e9a79b136aa.php create mode 100644 build/phpstan/cache/PHPStan/81/a1/81a1fa3b4156ce369a2fd146a9dc25f914a32e26.php create mode 100644 build/phpstan/cache/PHPStan/81/b7/81b79638cf7a7e2a79c39a16100dc9c8f6c789aa.php create mode 100644 build/phpstan/cache/PHPStan/84/a4/84a40994bab1ce5efea436d89f9ce568b53ecfe6.php create mode 100644 build/phpstan/cache/PHPStan/8a/14/8a14f3d3b3e606f04b1918b7e196a0be3465009d.php create mode 100644 build/phpstan/cache/PHPStan/91/0a/910a030abadecf5c5fa70574719fa1a9e445819b.php create mode 100644 build/phpstan/cache/PHPStan/93/a6/93a65a90404c0b8255b5d5ea24facd09461b9c65.php create mode 100644 build/phpstan/cache/PHPStan/a5/ef/a5ef67a94513bfca8b8d3367ec2281a467d31aa0.php create mode 100644 build/phpstan/cache/PHPStan/b2/e0/b2e02cf2732c9617965041b7a99ee064bc826cd0.php create mode 100644 build/phpstan/cache/PHPStan/c1/b4/c1b49cadb80a008d8cb2c27752c1a42874937f1d.php create mode 100644 build/phpstan/cache/PHPStan/cache-cleared create mode 100644 build/phpstan/cache/PHPStan/cd/78/cd78ea1a722f55fbdf8cc3074755796931e58d2c.php create mode 100644 build/phpstan/cache/PHPStan/d3/49/d34941c9b51578194f0b34346537775aadaabad9.php create mode 100644 build/phpstan/cache/PHPStan/db/8c/db8c0db4ba2dd8fead2765782b3dc89efa80174d.php create mode 100644 build/phpstan/cache/PHPStan/e3/77/e377435bc038aa32a919661780f5e0dc748fb2f3.php create mode 100644 build/phpstan/cache/PHPStan/f3/fa/f3faba961ca84af4300b2bdad07f065a411b1674.php create mode 100644 build/phpstan/cache/PHPStan/f4/d3/f4d3da1e3370f2b6dcebda97974db0b1f154bfaa.php create mode 100644 build/phpstan/cache/PHPStan/f8/7d/f87de80fa24c2edaa97ba02101dab3b0095e07d3.php create mode 100644 build/phpstan/cache/nette.configurator/Container_c5db45e753.php create mode 100644 build/phpstan/cache/nette.configurator/Container_c5db45e753.php.lock create mode 100644 build/phpstan/cache/nette.configurator/Container_c5db45e753.php.meta create mode 100644 build/phpstan/cache/nette.configurator/container.journal create mode 100644 build/phpstan/resultCache.php diff --git a/build/phpstan/cache/PHPStan/08/65/0865d6d2e2624e292aec9adcce89b24d99966379.php b/build/phpstan/cache/PHPStan/08/65/0865d6d2e2624e292aec9adcce89b24d99966379.php new file mode 100644 index 0000000..9cca8da --- /dev/null +++ b/build/phpstan/cache/PHPStan/08/65/0865d6d2e2624e292aec9adcce89b24d99966379.php @@ -0,0 +1,288 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/CodeUnit.php' => + array ( + 0 => 'a4e326a3a4495b59d511d5b01a6e76399b6b4610', + 1 => + array ( + 0 => 'sebastianbergmann\\codeunit\\codeunit', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codeunit\\forclass', + 1 => 'sebastianbergmann\\codeunit\\forclassmethod', + 2 => 'sebastianbergmann\\codeunit\\forfilewithabsolutepath', + 3 => 'sebastianbergmann\\codeunit\\forinterface', + 4 => 'sebastianbergmann\\codeunit\\forinterfacemethod', + 5 => 'sebastianbergmann\\codeunit\\fortrait', + 6 => 'sebastianbergmann\\codeunit\\fortraitmethod', + 7 => 'sebastianbergmann\\codeunit\\forfunction', + 8 => 'sebastianbergmann\\codeunit\\__construct', + 9 => 'sebastianbergmann\\codeunit\\name', + 10 => 'sebastianbergmann\\codeunit\\sourcefilename', + 11 => 'sebastianbergmann\\codeunit\\sourcelines', + 12 => 'sebastianbergmann\\codeunit\\isclass', + 13 => 'sebastianbergmann\\codeunit\\isclassmethod', + 14 => 'sebastianbergmann\\codeunit\\isinterface', + 15 => 'sebastianbergmann\\codeunit\\isinterfacemethod', + 16 => 'sebastianbergmann\\codeunit\\istrait', + 17 => 'sebastianbergmann\\codeunit\\istraitmethod', + 18 => 'sebastianbergmann\\codeunit\\isfunction', + 19 => 'sebastianbergmann\\codeunit\\isfile', + 20 => 'sebastianbergmann\\codeunit\\ensurefileexistsandisreadable', + 21 => 'sebastianbergmann\\codeunit\\ensureuserdefinedclass', + 22 => 'sebastianbergmann\\codeunit\\ensureuserdefinedinterface', + 23 => 'sebastianbergmann\\codeunit\\ensureuserdefinedtrait', + 24 => 'sebastianbergmann\\codeunit\\reflectorforclassmethod', + 25 => 'sebastianbergmann\\codeunit\\reflectorforfunction', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/TraitUnit.php' => + array ( + 0 => '00e0ebf71d017519306cc46e8fc8adc50a083fce', + 1 => + array ( + 0 => 'sebastianbergmann\\codeunit\\traitunit', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codeunit\\istrait', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/InterfaceMethodUnit.php' => + array ( + 0 => 'c4c4aaad3fe33e0296d277c345ecb69eb286130a', + 1 => + array ( + 0 => 'sebastianbergmann\\codeunit\\interfacemethodunit', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codeunit\\isinterfacemethod', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/exceptions/InvalidCodeUnitException.php' => + array ( + 0 => '1f85639a6a68466fb906fd5fd1ccd5c7cc89e4e8', + 1 => + array ( + 0 => 'sebastianbergmann\\codeunit\\invalidcodeunitexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/exceptions/ReflectionException.php' => + array ( + 0 => '6d9aa134fe89ef240bf3f9358ec3128b54238a3f', + 1 => + array ( + 0 => 'sebastianbergmann\\codeunit\\reflectionexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/exceptions/NoTraitException.php' => + array ( + 0 => '5ff90049fe5f9cfe833dfe9c85adfdc0a0737e02', + 1 => + array ( + 0 => 'sebastianbergmann\\codeunit\\notraitexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/exceptions/Exception.php' => + array ( + 0 => '845bad43c96c716a8a1c466f18e2e2268c9e57dc', + 1 => + array ( + 0 => 'sebastianbergmann\\codeunit\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/CodeUnitCollectionIterator.php' => + array ( + 0 => '05f0a9f3c3e3d77fb507259dcbc2e9e459952335', + 1 => + array ( + 0 => 'sebastianbergmann\\codeunit\\codeunitcollectioniterator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codeunit\\__construct', + 1 => 'sebastianbergmann\\codeunit\\rewind', + 2 => 'sebastianbergmann\\codeunit\\valid', + 3 => 'sebastianbergmann\\codeunit\\key', + 4 => 'sebastianbergmann\\codeunit\\current', + 5 => 'sebastianbergmann\\codeunit\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/CodeUnitCollection.php' => + array ( + 0 => '418bb8c2fbd7ac8fe50d9a38d35b6c858be13604', + 1 => + array ( + 0 => 'sebastianbergmann\\codeunit\\codeunitcollection', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codeunit\\fromlist', + 1 => 'sebastianbergmann\\codeunit\\__construct', + 2 => 'sebastianbergmann\\codeunit\\asarray', + 3 => 'sebastianbergmann\\codeunit\\getiterator', + 4 => 'sebastianbergmann\\codeunit\\count', + 5 => 'sebastianbergmann\\codeunit\\isempty', + 6 => 'sebastianbergmann\\codeunit\\mergewith', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/TraitMethodUnit.php' => + array ( + 0 => '946e7a09676a0151a32e55ecb283911c950c6c20', + 1 => + array ( + 0 => 'sebastianbergmann\\codeunit\\traitmethodunit', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codeunit\\istraitmethod', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/FileUnit.php' => + array ( + 0 => '7cfe216e8ff57e9b58d5ba2e2b5a66178b4e9175', + 1 => + array ( + 0 => 'sebastianbergmann\\codeunit\\fileunit', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codeunit\\isfile', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/FunctionUnit.php' => + array ( + 0 => 'd388c91f962c0421c4c8bf6df8b91480759b5f6e', + 1 => + array ( + 0 => 'sebastianbergmann\\codeunit\\functionunit', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codeunit\\isfunction', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/Mapper.php' => + array ( + 0 => 'a38826f38a64b752bb9decc34f938b9d5164eea7', + 1 => + array ( + 0 => 'sebastianbergmann\\codeunit\\mapper', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codeunit\\codeunitstosourcelines', + 1 => 'sebastianbergmann\\codeunit\\stringtocodeunits', + 2 => 'sebastianbergmann\\codeunit\\isuserdefinedfunction', + 3 => 'sebastianbergmann\\codeunit\\isuserdefinedclass', + 4 => 'sebastianbergmann\\codeunit\\isuserdefinedinterface', + 5 => 'sebastianbergmann\\codeunit\\isuserdefinedtrait', + 6 => 'sebastianbergmann\\codeunit\\isuserdefinedmethod', + 7 => 'sebastianbergmann\\codeunit\\traits', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/ClassUnit.php' => + array ( + 0 => '25b8df3d7044963bd087820b2f99ba825b41dda5', + 1 => + array ( + 0 => 'sebastianbergmann\\codeunit\\classunit', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codeunit\\isclass', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/ClassMethodUnit.php' => + array ( + 0 => '5d3ce9f698e675b13368d95a5e116c0dfbd46e73', + 1 => + array ( + 0 => 'sebastianbergmann\\codeunit\\classmethodunit', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codeunit\\isclassmethod', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/InterfaceUnit.php' => + array ( + 0 => 'f60d06a0aa4131c281531160d4ef215551c7af50', + 1 => + array ( + 0 => 'sebastianbergmann\\codeunit\\interfaceunit', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codeunit\\isinterface', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/0e/46/0e469e39ff613cc46739e4f4b8a64fdd549fc0c6.php b/build/phpstan/cache/PHPStan/0e/46/0e469e39ff613cc46739e4f4b8a64fdd549fc0c6.php new file mode 100644 index 0000000..b8e1b7c --- /dev/null +++ b/build/phpstan/cache/PHPStan/0e/46/0e469e39ff613cc46739e4f4b8a64fdd549fc0c6.php @@ -0,0 +1,1419 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/BaseMatcher.php' => + array ( + 0 => 'ecded29c81c001f0acf79d55c8fe64ca62bd6ab3', + 1 => + array ( + 0 => 'hamcrest\\basematcher', + ), + 2 => + array ( + 0 => 'hamcrest\\describemismatch', + 1 => 'hamcrest\\__tostring', + 2 => 'hamcrest\\__invoke', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Collection/IsEmptyTraversable.php' => + array ( + 0 => '7a218d39f7fd194fee8ed4fc3f62f2e82924e1a7', + 1 => + array ( + 0 => 'hamcrest\\collection\\isemptytraversable', + ), + 2 => + array ( + 0 => 'hamcrest\\collection\\__construct', + 1 => 'hamcrest\\collection\\matches', + 2 => 'hamcrest\\collection\\describeto', + 3 => 'hamcrest\\collection\\emptytraversable', + 4 => 'hamcrest\\collection\\nonemptytraversable', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Collection/IsTraversableWithSize.php' => + array ( + 0 => '4b7a4caa9ee1fd9428c22ecf928f7d7c493b7758', + 1 => + array ( + 0 => 'hamcrest\\collection\\istraversablewithsize', + ), + 2 => + array ( + 0 => 'hamcrest\\collection\\__construct', + 1 => 'hamcrest\\collection\\featurevalueof', + 2 => 'hamcrest\\collection\\traversablewithsize', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsInstanceOf.php' => + array ( + 0 => '0dc9bccb755013e071e0fca3b0a3795783a41f94', + 1 => + array ( + 0 => 'hamcrest\\core\\isinstanceof', + ), + 2 => + array ( + 0 => 'hamcrest\\core\\__construct', + 1 => 'hamcrest\\core\\matcheswithdiagnosticdescription', + 2 => 'hamcrest\\core\\describeto', + 3 => 'hamcrest\\core\\aninstanceof', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsTypeOf.php' => + array ( + 0 => '26f7a5bf14f1191fb76f6b3cdcbb9d752e52011b', + 1 => + array ( + 0 => 'hamcrest\\core\\istypeof', + ), + 2 => + array ( + 0 => 'hamcrest\\core\\__construct', + 1 => 'hamcrest\\core\\matches', + 2 => 'hamcrest\\core\\describeto', + 3 => 'hamcrest\\core\\describemismatch', + 4 => 'hamcrest\\core\\gettypedescription', + 5 => 'hamcrest\\core\\typeof', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsAnything.php' => + array ( + 0 => '715ebc43adf88b08b6b3f88422274d055b9424c0', + 1 => + array ( + 0 => 'hamcrest\\core\\isanything', + ), + 2 => + array ( + 0 => 'hamcrest\\core\\__construct', + 1 => 'hamcrest\\core\\matches', + 2 => 'hamcrest\\core\\describeto', + 3 => 'hamcrest\\core\\anything', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/HasToString.php' => + array ( + 0 => 'ef688a1e35bbb5574286b55fb6ae0d8f5b0202e6', + 1 => + array ( + 0 => 'hamcrest\\core\\hastostring', + ), + 2 => + array ( + 0 => 'hamcrest\\core\\__construct', + 1 => 'hamcrest\\core\\matchessafelywithdiagnosticdescription', + 2 => 'hamcrest\\core\\featurevalueof', + 3 => 'hamcrest\\core\\hastostring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Every.php' => + array ( + 0 => 'a9539e1e94cc285125a1da1ea541cfa2ee05e277', + 1 => + array ( + 0 => 'hamcrest\\core\\every', + ), + 2 => + array ( + 0 => 'hamcrest\\core\\__construct', + 1 => 'hamcrest\\core\\matchessafelywithdiagnosticdescription', + 2 => 'hamcrest\\core\\describeto', + 3 => 'hamcrest\\core\\everyitem', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsCollectionContaining.php' => + array ( + 0 => '4a80f2687cca6422af6c1f4158067de1a228cfba', + 1 => + array ( + 0 => 'hamcrest\\core\\iscollectioncontaining', + ), + 2 => + array ( + 0 => 'hamcrest\\core\\__construct', + 1 => 'hamcrest\\core\\matchessafely', + 2 => 'hamcrest\\core\\describemismatchsafely', + 3 => 'hamcrest\\core\\describeto', + 4 => 'hamcrest\\core\\hasitem', + 5 => 'hamcrest\\core\\hasitems', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/DescribedAs.php' => + array ( + 0 => '1caa650c8304ff06e6ef4900b0d4429b14447deb', + 1 => + array ( + 0 => 'hamcrest\\core\\describedas', + ), + 2 => + array ( + 0 => 'hamcrest\\core\\__construct', + 1 => 'hamcrest\\core\\matches', + 2 => 'hamcrest\\core\\describeto', + 3 => 'hamcrest\\core\\describedas', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsSame.php' => + array ( + 0 => '5c22ce5b8523356598a2ec5dc78020ac81ef9ce0', + 1 => + array ( + 0 => 'hamcrest\\core\\issame', + ), + 2 => + array ( + 0 => 'hamcrest\\core\\__construct', + 1 => 'hamcrest\\core\\matches', + 2 => 'hamcrest\\core\\describeto', + 3 => 'hamcrest\\core\\sameinstance', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/AllOf.php' => + array ( + 0 => '100e7848703aff924b405aac4a1af7bb38b9fc16', + 1 => + array ( + 0 => 'hamcrest\\core\\allof', + ), + 2 => + array ( + 0 => 'hamcrest\\core\\__construct', + 1 => 'hamcrest\\core\\matcheswithdiagnosticdescription', + 2 => 'hamcrest\\core\\describeto', + 3 => 'hamcrest\\core\\allof', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/CombinableMatcher.php' => + array ( + 0 => '9c6d0995c09820c9ff0e9a106eebbabf1f9f8477', + 1 => + array ( + 0 => 'hamcrest\\core\\combinablematcher', + ), + 2 => + array ( + 0 => 'hamcrest\\core\\__construct', + 1 => 'hamcrest\\core\\matches', + 2 => 'hamcrest\\core\\describeto', + 3 => 'hamcrest\\core\\andalso', + 4 => 'hamcrest\\core\\orelse', + 5 => 'hamcrest\\core\\both', + 6 => 'hamcrest\\core\\either', + 7 => 'hamcrest\\core\\_templatedlistwith', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Set.php' => + array ( + 0 => '29e26d577355f7624705dfa999d04fe5d5dac5a4', + 1 => + array ( + 0 => 'hamcrest\\core\\set', + ), + 2 => + array ( + 0 => 'hamcrest\\core\\__construct', + 1 => 'hamcrest\\core\\matches', + 2 => 'hamcrest\\core\\describeto', + 3 => 'hamcrest\\core\\describemismatch', + 4 => 'hamcrest\\core\\set', + 5 => 'hamcrest\\core\\notset', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsEqual.php' => + array ( + 0 => 'a7d123b97dca12f5d5ccc52fe0329a60d457f317', + 1 => + array ( + 0 => 'hamcrest\\core\\isequal', + ), + 2 => + array ( + 0 => 'hamcrest\\core\\__construct', + 1 => 'hamcrest\\core\\matches', + 2 => 'hamcrest\\core\\describeto', + 3 => 'hamcrest\\core\\equalto', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Is.php' => + array ( + 0 => 'cd739f646f8fb5b813f0f6b7e2234b6784da2e0f', + 1 => + array ( + 0 => 'hamcrest\\core\\is', + ), + 2 => + array ( + 0 => 'hamcrest\\core\\__construct', + 1 => 'hamcrest\\core\\matches', + 2 => 'hamcrest\\core\\describeto', + 3 => 'hamcrest\\core\\describemismatch', + 4 => 'hamcrest\\core\\is', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/AnyOf.php' => + array ( + 0 => '39a3b74163be49f0c0afe09adfb02fdf320797fc', + 1 => + array ( + 0 => 'hamcrest\\core\\anyof', + ), + 2 => + array ( + 0 => 'hamcrest\\core\\__construct', + 1 => 'hamcrest\\core\\matches', + 2 => 'hamcrest\\core\\describeto', + 3 => 'hamcrest\\core\\anyof', + 4 => 'hamcrest\\core\\noneof', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsNot.php' => + array ( + 0 => 'f3876690438eaded103f74ee57817df859fe4337', + 1 => + array ( + 0 => 'hamcrest\\core\\isnot', + ), + 2 => + array ( + 0 => 'hamcrest\\core\\__construct', + 1 => 'hamcrest\\core\\matches', + 2 => 'hamcrest\\core\\describeto', + 3 => 'hamcrest\\core\\not', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsIdentical.php' => + array ( + 0 => 'c66cfd2220a91c972a41028c6aaeb1ab77b6ce08', + 1 => + array ( + 0 => 'hamcrest\\core\\isidentical', + ), + 2 => + array ( + 0 => 'hamcrest\\core\\__construct', + 1 => 'hamcrest\\core\\describeto', + 2 => 'hamcrest\\core\\identicalto', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsNull.php' => + array ( + 0 => '963d470399d1d879359306a01a5c6e5f9160cc31', + 1 => + array ( + 0 => 'hamcrest\\core\\isnull', + ), + 2 => + array ( + 0 => 'hamcrest\\core\\matches', + 1 => 'hamcrest\\core\\describeto', + 2 => 'hamcrest\\core\\nullvalue', + 3 => 'hamcrest\\core\\notnullvalue', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/ShortcutCombination.php' => + array ( + 0 => 'a2af2f191ad37934536faf98009ad8480802508d', + 1 => + array ( + 0 => 'hamcrest\\core\\shortcutcombination', + ), + 2 => + array ( + 0 => 'hamcrest\\core\\__construct', + 1 => 'hamcrest\\core\\matcheswithshortcut', + 2 => 'hamcrest\\core\\describetowithoperator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/MatcherAssert.php' => + array ( + 0 => '8f45ab27f62c72a7e8673348e8b0ac0e95947981', + 1 => + array ( + 0 => 'hamcrest\\matcherassert', + ), + 2 => + array ( + 0 => 'hamcrest\\assertthat', + 1 => 'hamcrest\\getcount', + 2 => 'hamcrest\\resetcount', + 3 => 'hamcrest\\doassert', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/SelfDescribing.php' => + array ( + 0 => '55b89f280431a9ff3f7ee9337cf7da6b54aebe22', + 1 => + array ( + 0 => 'hamcrest\\selfdescribing', + ), + 2 => + array ( + 0 => 'hamcrest\\describeto', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/DiagnosingMatcher.php' => + array ( + 0 => '11f2ce906bfca0efa6b9dbe1dd93bc89de6314a9', + 1 => + array ( + 0 => 'hamcrest\\diagnosingmatcher', + ), + 2 => + array ( + 0 => 'hamcrest\\matches', + 1 => 'hamcrest\\describemismatch', + 2 => 'hamcrest\\matcheswithdiagnosticdescription', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/AssertionError.php' => + array ( + 0 => '97b25fbb5bc7c32b1ce9428c3e7d141a81614419', + 1 => + array ( + 0 => 'hamcrest\\assertionerror', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Internal/SelfDescribingValue.php' => + array ( + 0 => 'fe2ee1e6a697ac97bb2723aa5cdfc9f4eff00c0d', + 1 => + array ( + 0 => 'hamcrest\\internal\\selfdescribingvalue', + ), + 2 => + array ( + 0 => 'hamcrest\\internal\\__construct', + 1 => 'hamcrest\\internal\\describeto', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/TypeSafeDiagnosingMatcher.php' => + array ( + 0 => '4ae0a61215f17c30d1d4a636833aeaccff73cf07', + 1 => + array ( + 0 => 'hamcrest\\typesafediagnosingmatcher', + ), + 2 => + array ( + 0 => 'hamcrest\\matchessafely', + 1 => 'hamcrest\\describemismatchsafely', + 2 => 'hamcrest\\matchessafelywithdiagnosticdescription', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/FeatureMatcher.php' => + array ( + 0 => '29b63b2c6ad3149adc0068280fdc0f4f71f39db5', + 1 => + array ( + 0 => 'hamcrest\\featurematcher', + ), + 2 => + array ( + 0 => 'hamcrest\\__construct', + 1 => 'hamcrest\\featurevalueof', + 2 => 'hamcrest\\matchessafelywithdiagnosticdescription', + 3 => 'hamcrest\\describeto', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Xml/HasXPath.php' => + array ( + 0 => '58799873486678ed2c3048c27d4ede0afd97d644', + 1 => + array ( + 0 => 'hamcrest\\xml\\hasxpath', + ), + 2 => + array ( + 0 => 'hamcrest\\xml\\__construct', + 1 => 'hamcrest\\xml\\matcheswithdiagnosticdescription', + 2 => 'hamcrest\\xml\\createdocument', + 3 => 'hamcrest\\xml\\evaluate', + 4 => 'hamcrest\\xml\\matchescontent', + 5 => 'hamcrest\\xml\\matchesexpression', + 6 => 'hamcrest\\xml\\describeto', + 7 => 'hamcrest\\xml\\hasxpath', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Number/IsCloseTo.php' => + array ( + 0 => '001ce0a513acfd7101c645bf8d610bed389e46a9', + 1 => + array ( + 0 => 'hamcrest\\number\\iscloseto', + ), + 2 => + array ( + 0 => 'hamcrest\\number\\__construct', + 1 => 'hamcrest\\number\\matchessafely', + 2 => 'hamcrest\\number\\describemismatchsafely', + 3 => 'hamcrest\\number\\describeto', + 4 => 'hamcrest\\number\\closeto', + 5 => 'hamcrest\\number\\_actualdelta', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Number/OrderingComparison.php' => + array ( + 0 => '9aeab15a5b221ccd00532f83a30457546d365e9c', + 1 => + array ( + 0 => 'hamcrest\\number\\orderingcomparison', + ), + 2 => + array ( + 0 => 'hamcrest\\number\\__construct', + 1 => 'hamcrest\\number\\matchessafely', + 2 => 'hamcrest\\number\\describemismatchsafely', + 3 => 'hamcrest\\number\\describeto', + 4 => 'hamcrest\\number\\comparesequalto', + 5 => 'hamcrest\\number\\greaterthan', + 6 => 'hamcrest\\number\\greaterthanorequalto', + 7 => 'hamcrest\\number\\lessthan', + 8 => 'hamcrest\\number\\lessthanorequalto', + 9 => 'hamcrest\\number\\_compare', + 10 => 'hamcrest\\number\\_comparison', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/BaseDescription.php' => + array ( + 0 => '3170aeb2cd6d4c0c11ee018cd2c9b796a175771a', + 1 => + array ( + 0 => 'hamcrest\\basedescription', + ), + 2 => + array ( + 0 => 'hamcrest\\appendtext', + 1 => 'hamcrest\\appenddescriptionof', + 2 => 'hamcrest\\appendvalue', + 3 => 'hamcrest\\appendvaluelist', + 4 => 'hamcrest\\appendlist', + 5 => 'hamcrest\\append', + 6 => 'hamcrest\\_tophpsyntax', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsInteger.php' => + array ( + 0 => '2d998a674bb3e4f71b88a6b89e39d61a6a0b9f2d', + 1 => + array ( + 0 => 'hamcrest\\type\\isinteger', + ), + 2 => + array ( + 0 => 'hamcrest\\type\\__construct', + 1 => 'hamcrest\\type\\integervalue', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsBoolean.php' => + array ( + 0 => 'bf556ba74b3f48f77fb149d60b370039bf9572b2', + 1 => + array ( + 0 => 'hamcrest\\type\\isboolean', + ), + 2 => + array ( + 0 => 'hamcrest\\type\\__construct', + 1 => 'hamcrest\\type\\booleanvalue', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsResource.php' => + array ( + 0 => '4c1f8c206d52561fab564a51fd1f1b66d146687f', + 1 => + array ( + 0 => 'hamcrest\\type\\isresource', + ), + 2 => + array ( + 0 => 'hamcrest\\type\\__construct', + 1 => 'hamcrest\\type\\resourcevalue', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsObject.php' => + array ( + 0 => '7a55db0f79f63efdaad2979868f7894ac498495c', + 1 => + array ( + 0 => 'hamcrest\\type\\isobject', + ), + 2 => + array ( + 0 => 'hamcrest\\type\\__construct', + 1 => 'hamcrest\\type\\objectvalue', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsScalar.php' => + array ( + 0 => '6a76c2a31d23c8f8eeb66e2543bf0e5000d5e0f2', + 1 => + array ( + 0 => 'hamcrest\\type\\isscalar', + ), + 2 => + array ( + 0 => 'hamcrest\\type\\__construct', + 1 => 'hamcrest\\type\\matches', + 2 => 'hamcrest\\type\\scalarvalue', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsString.php' => + array ( + 0 => 'ce8e4de992f68e8d62e26e20fc329015276de235', + 1 => + array ( + 0 => 'hamcrest\\type\\isstring', + ), + 2 => + array ( + 0 => 'hamcrest\\type\\__construct', + 1 => 'hamcrest\\type\\stringvalue', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsNumeric.php' => + array ( + 0 => 'e095a0b200d53d38423fca4f08981d140add8d70', + 1 => + array ( + 0 => 'hamcrest\\type\\isnumeric', + ), + 2 => + array ( + 0 => 'hamcrest\\type\\__construct', + 1 => 'hamcrest\\type\\matches', + 2 => 'hamcrest\\type\\ishexadecimal', + 3 => 'hamcrest\\type\\numericvalue', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsArray.php' => + array ( + 0 => '5903d125d33c329becfa3694195d5f9e7b8c4185', + 1 => + array ( + 0 => 'hamcrest\\type\\isarray', + ), + 2 => + array ( + 0 => 'hamcrest\\type\\__construct', + 1 => 'hamcrest\\type\\arrayvalue', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsCallable.php' => + array ( + 0 => '1f6cbc3f99bab4674946c92b403c3b93dae6b915', + 1 => + array ( + 0 => 'hamcrest\\type\\iscallable', + ), + 2 => + array ( + 0 => 'hamcrest\\type\\__construct', + 1 => 'hamcrest\\type\\matches', + 2 => 'hamcrest\\type\\callablevalue', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsDouble.php' => + array ( + 0 => 'a51960397a3caebae1e05a6d5a31fb18a3986ac8', + 1 => + array ( + 0 => 'hamcrest\\type\\isdouble', + ), + 2 => + array ( + 0 => 'hamcrest\\type\\__construct', + 1 => 'hamcrest\\type\\doublevalue', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Matcher.php' => + array ( + 0 => 'e0d782f1661b3febec35c0bc88a7bf1abd5cb0b6', + 1 => + array ( + 0 => 'hamcrest\\matcher', + ), + 2 => + array ( + 0 => 'hamcrest\\matches', + 1 => 'hamcrest\\describemismatch', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingKeyValuePair.php' => + array ( + 0 => '1f9d2f9800b0a24e009461a6ce6074b328362172', + 1 => + array ( + 0 => 'hamcrest\\arrays\\isarraycontainingkeyvaluepair', + ), + 2 => + array ( + 0 => 'hamcrest\\arrays\\__construct', + 1 => 'hamcrest\\arrays\\matchessafely', + 2 => 'hamcrest\\arrays\\describemismatchsafely', + 3 => 'hamcrest\\arrays\\describeto', + 4 => 'hamcrest\\arrays\\haskeyvaluepair', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingKey.php' => + array ( + 0 => 'f5f742041e6173d0d2641d1a7bfec923173d4c9f', + 1 => + array ( + 0 => 'hamcrest\\arrays\\isarraycontainingkey', + ), + 2 => + array ( + 0 => 'hamcrest\\arrays\\__construct', + 1 => 'hamcrest\\arrays\\matchessafely', + 2 => 'hamcrest\\arrays\\describemismatchsafely', + 3 => 'hamcrest\\arrays\\describeto', + 4 => 'hamcrest\\arrays\\haskeyinarray', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayWithSize.php' => + array ( + 0 => '9133f558a703466bbe49df937c356d35806df9e0', + 1 => + array ( + 0 => 'hamcrest\\arrays\\isarraywithsize', + ), + 2 => + array ( + 0 => 'hamcrest\\arrays\\__construct', + 1 => 'hamcrest\\arrays\\featurevalueof', + 2 => 'hamcrest\\arrays\\arraywithsize', + 3 => 'hamcrest\\arrays\\emptyarray', + 4 => 'hamcrest\\arrays\\nonemptyarray', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingInAnyOrder.php' => + array ( + 0 => 'c29f19507146575b25d0afc0c6ecf6e1f9b0505b', + 1 => + array ( + 0 => 'hamcrest\\arrays\\isarraycontaininginanyorder', + ), + 2 => + array ( + 0 => 'hamcrest\\arrays\\__construct', + 1 => 'hamcrest\\arrays\\matchessafelywithdiagnosticdescription', + 2 => 'hamcrest\\arrays\\describeto', + 3 => 'hamcrest\\arrays\\arraycontaininginanyorder', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/MatchingOnce.php' => + array ( + 0 => 'e5d89d61031a83735ddbfd026f6654b52751eb20', + 1 => + array ( + 0 => 'hamcrest\\arrays\\matchingonce', + ), + 2 => + array ( + 0 => 'hamcrest\\arrays\\__construct', + 1 => 'hamcrest\\arrays\\matches', + 2 => 'hamcrest\\arrays\\isfinished', + 3 => 'hamcrest\\arrays\\_isnotsurplus', + 4 => 'hamcrest\\arrays\\_ismatched', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingInOrder.php' => + array ( + 0 => '8ccf5b8b226b2c5b279bb2ab71c1256b3cf89c64', + 1 => + array ( + 0 => 'hamcrest\\arrays\\isarraycontaininginorder', + ), + 2 => + array ( + 0 => 'hamcrest\\arrays\\__construct', + 1 => 'hamcrest\\arrays\\matchessafelywithdiagnosticdescription', + 2 => 'hamcrest\\arrays\\describeto', + 3 => 'hamcrest\\arrays\\arraycontaining', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArray.php' => + array ( + 0 => '741276e8b904f925399672bf8dd872cf5e139684', + 1 => + array ( + 0 => 'hamcrest\\arrays\\isarray', + ), + 2 => + array ( + 0 => 'hamcrest\\arrays\\__construct', + 1 => 'hamcrest\\arrays\\matchessafely', + 2 => 'hamcrest\\arrays\\describemismatchsafely', + 3 => 'hamcrest\\arrays\\describeto', + 4 => 'hamcrest\\arrays\\anarray', + 5 => 'hamcrest\\arrays\\descriptionstart', + 6 => 'hamcrest\\arrays\\descriptionseparator', + 7 => 'hamcrest\\arrays\\descriptionend', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContaining.php' => + array ( + 0 => '1a6105dc65014fa97b4dd2101dbb5b1df9baa174', + 1 => + array ( + 0 => 'hamcrest\\arrays\\isarraycontaining', + ), + 2 => + array ( + 0 => 'hamcrest\\arrays\\__construct', + 1 => 'hamcrest\\arrays\\matchessafely', + 2 => 'hamcrest\\arrays\\describemismatchsafely', + 3 => 'hamcrest\\arrays\\describeto', + 4 => 'hamcrest\\arrays\\hasiteminarray', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/SeriesMatchingOnce.php' => + array ( + 0 => 'e30b5aa7b3c3a96821440c32ce17c3c8a87362b7', + 1 => + array ( + 0 => 'hamcrest\\arrays\\seriesmatchingonce', + ), + 2 => + array ( + 0 => 'hamcrest\\arrays\\__construct', + 1 => 'hamcrest\\arrays\\matches', + 2 => 'hamcrest\\arrays\\isfinished', + 3 => 'hamcrest\\arrays\\_isnotsurplus', + 4 => 'hamcrest\\arrays\\_ismatched', + 5 => 'hamcrest\\arrays\\_describemismatch', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Description.php' => + array ( + 0 => '1ea7040c220ba2a08afaae671f29666637ce3e9f', + 1 => + array ( + 0 => 'hamcrest\\description', + ), + 2 => + array ( + 0 => 'hamcrest\\appendtext', + 1 => 'hamcrest\\appenddescriptionof', + 2 => 'hamcrest\\appendvalue', + 3 => 'hamcrest\\appendvaluelist', + 4 => 'hamcrest\\appendlist', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/NullDescription.php' => + array ( + 0 => 'b7199dec45c7008234c5fd5e4c962cb292f1e516', + 1 => + array ( + 0 => 'hamcrest\\nulldescription', + ), + 2 => + array ( + 0 => 'hamcrest\\appendtext', + 1 => 'hamcrest\\appenddescriptionof', + 2 => 'hamcrest\\appendvalue', + 3 => 'hamcrest\\appendvaluelist', + 4 => 'hamcrest\\appendlist', + 5 => 'hamcrest\\__tostring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Util.php' => + array ( + 0 => '86651fda8e788cbf5d8a388ccecb53888ac84f25', + 1 => + array ( + 0 => 'hamcrest\\util', + ), + 2 => + array ( + 0 => 'hamcrest\\registerglobalfunctions', + 1 => 'hamcrest\\wrapvaluewithisequal', + 2 => 'hamcrest\\checkallarematchers', + 3 => 'hamcrest\\creatematcherarray', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/TypeSafeMatcher.php' => + array ( + 0 => '2c015235bcff5f3ae371f478a81eb054b8044ce7', + 1 => + array ( + 0 => 'hamcrest\\typesafematcher', + ), + 2 => + array ( + 0 => 'hamcrest\\__construct', + 1 => 'hamcrest\\matches', + 2 => 'hamcrest\\describemismatch', + 3 => 'hamcrest\\matchessafely', + 4 => 'hamcrest\\describemismatchsafely', + 5 => 'hamcrest\\_issafetype', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEmptyString.php' => + array ( + 0 => '6d76cd2acee87b800889ef86608e78fb6583cea0', + 1 => + array ( + 0 => 'hamcrest\\text\\isemptystring', + ), + 2 => + array ( + 0 => 'hamcrest\\text\\__construct', + 1 => 'hamcrest\\text\\matches', + 2 => 'hamcrest\\text\\describeto', + 3 => 'hamcrest\\text\\isemptystring', + 4 => 'hamcrest\\text\\isemptyornullstring', + 5 => 'hamcrest\\text\\isnonemptystring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/SubstringMatcher.php' => + array ( + 0 => '642c79cc88bde52612b2461f0831ff1e6c97ef49', + 1 => + array ( + 0 => 'hamcrest\\text\\substringmatcher', + ), + 2 => + array ( + 0 => 'hamcrest\\text\\__construct', + 1 => 'hamcrest\\text\\matchessafely', + 2 => 'hamcrest\\text\\describemismatchsafely', + 3 => 'hamcrest\\text\\describeto', + 4 => 'hamcrest\\text\\evalsubstringof', + 5 => 'hamcrest\\text\\relationship', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEqualIgnoringCase.php' => + array ( + 0 => 'd30c998c41a87d5f22a69970e27e8999c2fe5efe', + 1 => + array ( + 0 => 'hamcrest\\text\\isequalignoringcase', + ), + 2 => + array ( + 0 => 'hamcrest\\text\\__construct', + 1 => 'hamcrest\\text\\matchessafely', + 2 => 'hamcrest\\text\\describemismatchsafely', + 3 => 'hamcrest\\text\\describeto', + 4 => 'hamcrest\\text\\equaltoignoringcase', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringStartsWith.php' => + array ( + 0 => 'efcffe7e537bd50c20fecb71cbf9a5ed8fb1a928', + 1 => + array ( + 0 => 'hamcrest\\text\\stringstartswith', + ), + 2 => + array ( + 0 => 'hamcrest\\text\\__construct', + 1 => 'hamcrest\\text\\startswith', + 2 => 'hamcrest\\text\\evalsubstringof', + 3 => 'hamcrest\\text\\relationship', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/MatchesPattern.php' => + array ( + 0 => '0493d5e331167b71a9204546b286c02cfdf30582', + 1 => + array ( + 0 => 'hamcrest\\text\\matchespattern', + ), + 2 => + array ( + 0 => 'hamcrest\\text\\__construct', + 1 => 'hamcrest\\text\\matchespattern', + 2 => 'hamcrest\\text\\evalsubstringof', + 3 => 'hamcrest\\text\\relationship', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContainsInOrder.php' => + array ( + 0 => '30fc9c558a4597f93a960c81f42e78261e6f612b', + 1 => + array ( + 0 => 'hamcrest\\text\\stringcontainsinorder', + ), + 2 => + array ( + 0 => 'hamcrest\\text\\__construct', + 1 => 'hamcrest\\text\\matchessafely', + 2 => 'hamcrest\\text\\describemismatchsafely', + 3 => 'hamcrest\\text\\describeto', + 4 => 'hamcrest\\text\\stringcontainsinorder', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContainsIgnoringCase.php' => + array ( + 0 => 'b450c2710d3999e96702bd85b031911dd6d99f2d', + 1 => + array ( + 0 => 'hamcrest\\text\\stringcontainsignoringcase', + ), + 2 => + array ( + 0 => 'hamcrest\\text\\__construct', + 1 => 'hamcrest\\text\\containsstringignoringcase', + 2 => 'hamcrest\\text\\evalsubstringof', + 3 => 'hamcrest\\text\\relationship', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContains.php' => + array ( + 0 => '935736bec97476246438e0e1a4ee3caa02b3fc45', + 1 => + array ( + 0 => 'hamcrest\\text\\stringcontains', + ), + 2 => + array ( + 0 => 'hamcrest\\text\\__construct', + 1 => 'hamcrest\\text\\ignoringcase', + 2 => 'hamcrest\\text\\containsstring', + 3 => 'hamcrest\\text\\evalsubstringof', + 4 => 'hamcrest\\text\\relationship', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEqualIgnoringWhiteSpace.php' => + array ( + 0 => '2dafbf9444b168f84b1e3f79e374f4107fd3e3a1', + 1 => + array ( + 0 => 'hamcrest\\text\\isequalignoringwhitespace', + ), + 2 => + array ( + 0 => 'hamcrest\\text\\__construct', + 1 => 'hamcrest\\text\\matchessafely', + 2 => 'hamcrest\\text\\describemismatchsafely', + 3 => 'hamcrest\\text\\describeto', + 4 => 'hamcrest\\text\\equaltoignoringwhitespace', + 5 => 'hamcrest\\text\\_stripspace', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringEndsWith.php' => + array ( + 0 => 'ced08c3d0b19212a9194668011583fcb520353a6', + 1 => + array ( + 0 => 'hamcrest\\text\\stringendswith', + ), + 2 => + array ( + 0 => 'hamcrest\\text\\__construct', + 1 => 'hamcrest\\text\\endswith', + 2 => 'hamcrest\\text\\evalsubstringof', + 3 => 'hamcrest\\text\\relationship', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/StringDescription.php' => + array ( + 0 => 'c179df707c4992d79498b6adf7ee81e42e6f6bb7', + 1 => + array ( + 0 => 'hamcrest\\stringdescription', + ), + 2 => + array ( + 0 => 'hamcrest\\__construct', + 1 => 'hamcrest\\__tostring', + 2 => 'hamcrest\\tostring', + 3 => 'hamcrest\\asstring', + 4 => 'hamcrest\\append', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Matchers.php' => + array ( + 0 => '0244d9185ebd53eb0b3115a3ff672fb2735f3f75', + 1 => + array ( + 0 => 'hamcrest\\matchers', + ), + 2 => + array ( + 0 => 'hamcrest\\anarray', + 1 => 'hamcrest\\hasiteminarray', + 2 => 'hamcrest\\hasvalue', + 3 => 'hamcrest\\arraycontaininginanyorder', + 4 => 'hamcrest\\containsinanyorder', + 5 => 'hamcrest\\arraycontaining', + 6 => 'hamcrest\\contains', + 7 => 'hamcrest\\haskeyinarray', + 8 => 'hamcrest\\haskey', + 9 => 'hamcrest\\haskeyvaluepair', + 10 => 'hamcrest\\hasentry', + 11 => 'hamcrest\\arraywithsize', + 12 => 'hamcrest\\emptyarray', + 13 => 'hamcrest\\nonemptyarray', + 14 => 'hamcrest\\emptytraversable', + 15 => 'hamcrest\\nonemptytraversable', + 16 => 'hamcrest\\traversablewithsize', + 17 => 'hamcrest\\allof', + 18 => 'hamcrest\\anyof', + 19 => 'hamcrest\\noneof', + 20 => 'hamcrest\\both', + 21 => 'hamcrest\\either', + 22 => 'hamcrest\\describedas', + 23 => 'hamcrest\\everyitem', + 24 => 'hamcrest\\hastostring', + 25 => 'hamcrest\\is', + 26 => 'hamcrest\\anything', + 27 => 'hamcrest\\hasitem', + 28 => 'hamcrest\\hasitems', + 29 => 'hamcrest\\equalto', + 30 => 'hamcrest\\identicalto', + 31 => 'hamcrest\\aninstanceof', + 32 => 'hamcrest\\any', + 33 => 'hamcrest\\not', + 34 => 'hamcrest\\nullvalue', + 35 => 'hamcrest\\notnullvalue', + 36 => 'hamcrest\\sameinstance', + 37 => 'hamcrest\\typeof', + 38 => 'hamcrest\\set', + 39 => 'hamcrest\\notset', + 40 => 'hamcrest\\closeto', + 41 => 'hamcrest\\comparesequalto', + 42 => 'hamcrest\\greaterthan', + 43 => 'hamcrest\\greaterthanorequalto', + 44 => 'hamcrest\\atleast', + 45 => 'hamcrest\\lessthan', + 46 => 'hamcrest\\lessthanorequalto', + 47 => 'hamcrest\\atmost', + 48 => 'hamcrest\\isemptystring', + 49 => 'hamcrest\\emptystring', + 50 => 'hamcrest\\isemptyornullstring', + 51 => 'hamcrest\\nulloremptystring', + 52 => 'hamcrest\\isnonemptystring', + 53 => 'hamcrest\\nonemptystring', + 54 => 'hamcrest\\equaltoignoringcase', + 55 => 'hamcrest\\equaltoignoringwhitespace', + 56 => 'hamcrest\\matchespattern', + 57 => 'hamcrest\\containsstring', + 58 => 'hamcrest\\containsstringignoringcase', + 59 => 'hamcrest\\stringcontainsinorder', + 60 => 'hamcrest\\endswith', + 61 => 'hamcrest\\startswith', + 62 => 'hamcrest\\arrayvalue', + 63 => 'hamcrest\\booleanvalue', + 64 => 'hamcrest\\boolvalue', + 65 => 'hamcrest\\callablevalue', + 66 => 'hamcrest\\doublevalue', + 67 => 'hamcrest\\floatvalue', + 68 => 'hamcrest\\integervalue', + 69 => 'hamcrest\\intvalue', + 70 => 'hamcrest\\numericvalue', + 71 => 'hamcrest\\objectvalue', + 72 => 'hamcrest\\anobject', + 73 => 'hamcrest\\resourcevalue', + 74 => 'hamcrest\\scalarvalue', + 75 => 'hamcrest\\stringvalue', + 76 => 'hamcrest\\hasxpath', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest.php' => + array ( + 0 => 'b2aa3422a4f0486e97d681bd8f57b3b3264a5e6c', + 1 => + array ( + ), + 2 => + array ( + 0 => 'assertthat', + 1 => 'anarray', + 2 => 'hasiteminarray', + 3 => 'hasvalue', + 4 => 'arraycontaininginanyorder', + 5 => 'containsinanyorder', + 6 => 'arraycontaining', + 7 => 'contains', + 8 => 'haskeyinarray', + 9 => 'haskey', + 10 => 'haskeyvaluepair', + 11 => 'hasentry', + 12 => 'arraywithsize', + 13 => 'emptyarray', + 14 => 'nonemptyarray', + 15 => 'emptytraversable', + 16 => 'nonemptytraversable', + 17 => 'traversablewithsize', + 18 => 'allof', + 19 => 'anyof', + 20 => 'noneof', + 21 => 'both', + 22 => 'either', + 23 => 'describedas', + 24 => 'everyitem', + 25 => 'hastostring', + 26 => 'is', + 27 => 'anything', + 28 => 'hasitem', + 29 => 'hasitems', + 30 => 'equalto', + 31 => 'identicalto', + 32 => 'aninstanceof', + 33 => 'any', + 34 => 'not', + 35 => 'nullvalue', + 36 => 'notnullvalue', + 37 => 'sameinstance', + 38 => 'typeof', + 39 => 'set', + 40 => 'notset', + 41 => 'closeto', + 42 => 'comparesequalto', + 43 => 'greaterthan', + 44 => 'greaterthanorequalto', + 45 => 'atleast', + 46 => 'lessthan', + 47 => 'lessthanorequalto', + 48 => 'atmost', + 49 => 'isemptystring', + 50 => 'emptystring', + 51 => 'isemptyornullstring', + 52 => 'nulloremptystring', + 53 => 'isnonemptystring', + 54 => 'nonemptystring', + 55 => 'equaltoignoringcase', + 56 => 'equaltoignoringwhitespace', + 57 => 'matchespattern', + 58 => 'containsstring', + 59 => 'containsstringignoringcase', + 60 => 'stringcontainsinorder', + 61 => 'endswith', + 62 => 'startswith', + 63 => 'arrayvalue', + 64 => 'booleanvalue', + 65 => 'boolvalue', + 66 => 'callablevalue', + 67 => 'doublevalue', + 68 => 'floatvalue', + 69 => 'integervalue', + 70 => 'intvalue', + 71 => 'numericvalue', + 72 => 'objectvalue', + 73 => 'anobject', + 74 => 'resourcevalue', + 75 => 'scalarvalue', + 76 => 'stringvalue', + 77 => 'hasxpath', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/13/01/1301be55607081c10d7af73a3ca72a58e9681328.php b/build/phpstan/cache/PHPStan/13/01/1301be55607081c10d7af73a3ca72a58e9681328.php new file mode 100644 index 0000000..90e894a --- /dev/null +++ b/build/phpstan/cache/PHPStan/13/01/1301be55607081c10d7af73a3ca72a58e9681328.php @@ -0,0 +1,132 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/global-state/src/Restorer.php' => + array ( + 0 => '7f061eaab5aacc989109e8b61ec6630a5c4fca6d', + 1 => + array ( + 0 => 'sebastianbergmann\\globalstate\\restorer', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\globalstate\\restoreglobalvariables', + 1 => 'sebastianbergmann\\globalstate\\restorestaticproperties', + 2 => 'sebastianbergmann\\globalstate\\restoresuperglobalarray', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/global-state/src/CodeExporter.php' => + array ( + 0 => '20d3ed18a2d65bca6f5d2068e342694dd96040c6', + 1 => + array ( + 0 => 'sebastianbergmann\\globalstate\\codeexporter', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\globalstate\\constants', + 1 => 'sebastianbergmann\\globalstate\\globalvariables', + 2 => 'sebastianbergmann\\globalstate\\inisettings', + 3 => 'sebastianbergmann\\globalstate\\exportvariable', + 4 => 'sebastianbergmann\\globalstate\\arrayonlycontainsscalars', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/global-state/src/Snapshot.php' => + array ( + 0 => '657d8157312e3a2e551089f0f2b057fa0af2700a', + 1 => + array ( + 0 => 'sebastianbergmann\\globalstate\\snapshot', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\globalstate\\__construct', + 1 => 'sebastianbergmann\\globalstate\\excludelist', + 2 => 'sebastianbergmann\\globalstate\\globalvariables', + 3 => 'sebastianbergmann\\globalstate\\superglobalvariables', + 4 => 'sebastianbergmann\\globalstate\\superglobalarrays', + 5 => 'sebastianbergmann\\globalstate\\staticproperties', + 6 => 'sebastianbergmann\\globalstate\\inisettings', + 7 => 'sebastianbergmann\\globalstate\\includedfiles', + 8 => 'sebastianbergmann\\globalstate\\constants', + 9 => 'sebastianbergmann\\globalstate\\functions', + 10 => 'sebastianbergmann\\globalstate\\interfaces', + 11 => 'sebastianbergmann\\globalstate\\classes', + 12 => 'sebastianbergmann\\globalstate\\traits', + 13 => 'sebastianbergmann\\globalstate\\snapshotconstants', + 14 => 'sebastianbergmann\\globalstate\\snapshotfunctions', + 15 => 'sebastianbergmann\\globalstate\\snapshotclasses', + 16 => 'sebastianbergmann\\globalstate\\snapshotinterfaces', + 17 => 'sebastianbergmann\\globalstate\\snapshotglobals', + 18 => 'sebastianbergmann\\globalstate\\snapshotsuperglobalarray', + 19 => 'sebastianbergmann\\globalstate\\snapshotstaticproperties', + 20 => 'sebastianbergmann\\globalstate\\setupsuperglobalarrays', + 21 => 'sebastianbergmann\\globalstate\\canbeserialized', + 22 => 'sebastianbergmann\\globalstate\\enumerateobjectsandresources', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/global-state/src/exceptions/RuntimeException.php' => + array ( + 0 => '688710ae08d1ee8e1de9b900c6418ae878999bf7', + 1 => + array ( + 0 => 'sebastianbergmann\\globalstate\\runtimeexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/global-state/src/exceptions/Exception.php' => + array ( + 0 => '80cb1c5ab4f8b552d57291de5ee3703590355cd5', + 1 => + array ( + 0 => 'sebastianbergmann\\globalstate\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/global-state/src/ExcludeList.php' => + array ( + 0 => 'df9b8f92253be6d2cf498d52a3754cf529b18e93', + 1 => + array ( + 0 => 'sebastianbergmann\\globalstate\\excludelist', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\globalstate\\addglobalvariable', + 1 => 'sebastianbergmann\\globalstate\\addclass', + 2 => 'sebastianbergmann\\globalstate\\addsubclassesof', + 3 => 'sebastianbergmann\\globalstate\\addimplementorsof', + 4 => 'sebastianbergmann\\globalstate\\addclassnameprefix', + 5 => 'sebastianbergmann\\globalstate\\addstaticproperty', + 6 => 'sebastianbergmann\\globalstate\\isglobalvariableexcluded', + 7 => 'sebastianbergmann\\globalstate\\isstaticpropertyexcluded', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/20/4b/204b85b32bd37f3981e57c0d38866dc31ca65a05.php b/build/phpstan/cache/PHPStan/20/4b/204b85b32bd37f3981e57c0d38866dc31ca65a05.php new file mode 100644 index 0000000..4b9ebce --- /dev/null +++ b/build/phpstan/cache/PHPStan/20/4b/204b85b32bd37f3981e57c0d38866dc31ca65a05.php @@ -0,0 +1,24 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/object-enumerator/src/Enumerator.php' => + array ( + 0 => '8f1227966e30cf1ce59bd996992e90642fa84018', + 1 => + array ( + 0 => 'sebastianbergmann\\objectenumerator\\enumerator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\objectenumerator\\enumerate', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/21/1e/211e106cd61310448624f0d8befed9daade6f051.php b/build/phpstan/cache/PHPStan/21/1e/211e106cd61310448624f0d8befed9daade6f051.php new file mode 100644 index 0000000..7e0ab8e --- /dev/null +++ b/build/phpstan/cache/PHPStan/21/1e/211e106cd61310448624f0d8befed9daade6f051.php @@ -0,0 +1,1602 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/CodeCoverage.php' => + array ( + 0 => 'c27f420b867660f15ee3d52280cb74905062b2a6', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\codecoverage', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\getreport', + 2 => 'sebastianbergmann\\codecoverage\\clear', + 3 => 'sebastianbergmann\\codecoverage\\clearcache', + 4 => 'sebastianbergmann\\codecoverage\\filter', + 5 => 'sebastianbergmann\\codecoverage\\getdata', + 6 => 'sebastianbergmann\\codecoverage\\setdata', + 7 => 'sebastianbergmann\\codecoverage\\gettests', + 8 => 'sebastianbergmann\\codecoverage\\settests', + 9 => 'sebastianbergmann\\codecoverage\\start', + 10 => 'sebastianbergmann\\codecoverage\\stop', + 11 => 'sebastianbergmann\\codecoverage\\append', + 12 => 'sebastianbergmann\\codecoverage\\merge', + 13 => 'sebastianbergmann\\codecoverage\\enablecheckforunintentionallycoveredcode', + 14 => 'sebastianbergmann\\codecoverage\\disablecheckforunintentionallycoveredcode', + 15 => 'sebastianbergmann\\codecoverage\\includeuncoveredfiles', + 16 => 'sebastianbergmann\\codecoverage\\excludeuncoveredfiles', + 17 => 'sebastianbergmann\\codecoverage\\enableannotationsforignoringcode', + 18 => 'sebastianbergmann\\codecoverage\\disableannotationsforignoringcode', + 19 => 'sebastianbergmann\\codecoverage\\ignoredeprecatedcode', + 20 => 'sebastianbergmann\\codecoverage\\donotignoredeprecatedcode', + 21 => 'sebastianbergmann\\codecoverage\\cachesstaticanalysis', + 22 => 'sebastianbergmann\\codecoverage\\cachestaticanalysis', + 23 => 'sebastianbergmann\\codecoverage\\donotcachestaticanalysis', + 24 => 'sebastianbergmann\\codecoverage\\cachedirectory', + 25 => 'sebastianbergmann\\codecoverage\\excludesubclassesofthisclassfromunintentionallycoveredcodecheck', + 26 => 'sebastianbergmann\\codecoverage\\enablebranchandpathcoverage', + 27 => 'sebastianbergmann\\codecoverage\\disablebranchandpathcoverage', + 28 => 'sebastianbergmann\\codecoverage\\collectsbranchandpathcoverage', + 29 => 'sebastianbergmann\\codecoverage\\detectsdeadcode', + 30 => 'sebastianbergmann\\codecoverage\\applycoversandusesfilter', + 31 => 'sebastianbergmann\\codecoverage\\applyfilter', + 32 => 'sebastianbergmann\\codecoverage\\applyexecutablelinesfilter', + 33 => 'sebastianbergmann\\codecoverage\\applyignoredlinesfilter', + 34 => 'sebastianbergmann\\codecoverage\\adduncoveredfilesfromfilter', + 35 => 'sebastianbergmann\\codecoverage\\performunintentionallycoveredcodecheck', + 36 => 'sebastianbergmann\\codecoverage\\getallowedlines', + 37 => 'sebastianbergmann\\codecoverage\\processunintentionallycoveredunits', + 38 => 'sebastianbergmann\\codecoverage\\analyser', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestSize/Unknown.php' => + array ( + 0 => '026e0b9147080769c65623af0568e9141e5d3e48', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\unknown', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\isunknown', + 1 => 'sebastianbergmann\\codecoverage\\test\\testsize\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestSize/Medium.php' => + array ( + 0 => 'a3ade72345c6523c6cc727b481754b1431bfcf51', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\medium', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\ismedium', + 1 => 'sebastianbergmann\\codecoverage\\test\\testsize\\isgreaterthan', + 2 => 'sebastianbergmann\\codecoverage\\test\\testsize\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestSize/Known.php' => + array ( + 0 => '322c583263fa7eff1f2a0780f7a6887e48934d4d', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\known', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\isknown', + 1 => 'sebastianbergmann\\codecoverage\\test\\testsize\\isgreaterthan', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestSize/Large.php' => + array ( + 0 => 'a58b20173b22188467b722db37895683033bf00c', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\large', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\islarge', + 1 => 'sebastianbergmann\\codecoverage\\test\\testsize\\isgreaterthan', + 2 => 'sebastianbergmann\\codecoverage\\test\\testsize\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestSize/TestSize.php' => + array ( + 0 => '9a93d48899d90bd73f62e5dc5500ffb59f13d4da', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\testsize', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\unknown', + 1 => 'sebastianbergmann\\codecoverage\\test\\testsize\\small', + 2 => 'sebastianbergmann\\codecoverage\\test\\testsize\\medium', + 3 => 'sebastianbergmann\\codecoverage\\test\\testsize\\large', + 4 => 'sebastianbergmann\\codecoverage\\test\\testsize\\isknown', + 5 => 'sebastianbergmann\\codecoverage\\test\\testsize\\isunknown', + 6 => 'sebastianbergmann\\codecoverage\\test\\testsize\\issmall', + 7 => 'sebastianbergmann\\codecoverage\\test\\testsize\\ismedium', + 8 => 'sebastianbergmann\\codecoverage\\test\\testsize\\islarge', + 9 => 'sebastianbergmann\\codecoverage\\test\\testsize\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestSize/Small.php' => + array ( + 0 => '8605e68b109490785f152628bcdc67cb4129155e', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\small', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\issmall', + 1 => 'sebastianbergmann\\codecoverage\\test\\testsize\\isgreaterthan', + 2 => 'sebastianbergmann\\codecoverage\\test\\testsize\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Util/Percentage.php' => + array ( + 0 => '71a3f15bc19a04500562170ac90698a100b6ca75', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\util\\percentage', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\util\\fromfractionandtotal', + 1 => 'sebastianbergmann\\codecoverage\\util\\__construct', + 2 => 'sebastianbergmann\\codecoverage\\util\\asfloat', + 3 => 'sebastianbergmann\\codecoverage\\util\\asstring', + 4 => 'sebastianbergmann\\codecoverage\\util\\asfixedwidthstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Util/Filesystem.php' => + array ( + 0 => 'f68fd8db638f50702a8b3639b3d6cfabaf80b427', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\util\\filesystem', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\util\\createdirectory', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestStatus/Unknown.php' => + array ( + 0 => 'aa95d56243dbba5c9edfdd5950a2ff555c87235f', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\unknown', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\isunknown', + 1 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestStatus/Known.php' => + array ( + 0 => '413db170cd78681759bfbc7ddf0713913c3ad930', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\known', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\isknown', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestStatus/Success.php' => + array ( + 0 => '08482a3d9be9bc31d9199c7caafb17b48fdcb404', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\success', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\issuccess', + 1 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestStatus/Failure.php' => + array ( + 0 => 'd56fea72c30916c2a830908fe998ff378ca6045f', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\failure', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\isfailure', + 1 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestStatus/TestStatus.php' => + array ( + 0 => '15becf16e8270de063fa3a051c4adbc08032a001', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\teststatus', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\unknown', + 1 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\success', + 2 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\failure', + 3 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\isknown', + 4 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\isunknown', + 5 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\issuccess', + 6 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\isfailure', + 7 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Driver/Selector.php' => + array ( + 0 => '5968005462c3ef1d39a704b6322617718417fb6d', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\selector', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\forlinecoverage', + 1 => 'sebastianbergmann\\codecoverage\\driver\\forlineandpathcoverage', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Driver/PcovDriver.php' => + array ( + 0 => '76decfa12ff33c17185db747e3599a332476a1d8', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\', + 1 => 'sebastianbergmann\\codecoverage\\driver\\pcovdriver', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\driver\\start', + 2 => 'sebastianbergmann\\codecoverage\\driver\\stop', + 3 => 'sebastianbergmann\\codecoverage\\driver\\nameandversion', + 4 => 'sebastianbergmann\\codecoverage\\driver\\ensurepcovisavailable', + ), + 3 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\pcov', + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Driver/Driver.php' => + array ( + 0 => 'c39fd75f019750d4d54aeb74afd1b74b20572582', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\driver', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\cancollectbranchandpathcoverage', + 1 => 'sebastianbergmann\\codecoverage\\driver\\collectsbranchandpathcoverage', + 2 => 'sebastianbergmann\\codecoverage\\driver\\enablebranchandpathcoverage', + 3 => 'sebastianbergmann\\codecoverage\\driver\\disablebranchandpathcoverage', + 4 => 'sebastianbergmann\\codecoverage\\driver\\candetectdeadcode', + 5 => 'sebastianbergmann\\codecoverage\\driver\\detectsdeadcode', + 6 => 'sebastianbergmann\\codecoverage\\driver\\enabledeadcodedetection', + 7 => 'sebastianbergmann\\codecoverage\\driver\\disabledeadcodedetection', + 8 => 'sebastianbergmann\\codecoverage\\driver\\nameandversion', + 9 => 'sebastianbergmann\\codecoverage\\driver\\start', + 10 => 'sebastianbergmann\\codecoverage\\driver\\stop', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Driver/XdebugDriver.php' => + array ( + 0 => 'a320fa572871f59e0a45d30512b09060ac2a998e', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\xdebugdriver', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\driver\\cancollectbranchandpathcoverage', + 2 => 'sebastianbergmann\\codecoverage\\driver\\candetectdeadcode', + 3 => 'sebastianbergmann\\codecoverage\\driver\\start', + 4 => 'sebastianbergmann\\codecoverage\\driver\\stop', + 5 => 'sebastianbergmann\\codecoverage\\driver\\nameandversion', + 6 => 'sebastianbergmann\\codecoverage\\driver\\ensurexdebugisavailable', + 7 => 'sebastianbergmann\\codecoverage\\driver\\ensurexdebugcodecoveragefeatureisenabled', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Version.php' => + array ( + 0 => '3dcaa045aaa18a4e81f789cc1cb0cffa6e14aa66', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\version', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\id', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Filter.php' => + array ( + 0 => 'dc164d14cbc3fa708c796c18e83f8bec30dfed3c', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\filter', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\includefiles', + 1 => 'sebastianbergmann\\codecoverage\\includefile', + 2 => 'sebastianbergmann\\codecoverage\\isfile', + 3 => 'sebastianbergmann\\codecoverage\\isexcluded', + 4 => 'sebastianbergmann\\codecoverage\\files', + 5 => 'sebastianbergmann\\codecoverage\\isempty', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/StaticAnalysis/CodeUnitFindingVisitor.php' => + array ( + 0 => 'e3311d2bc5202197da4ace866c383b8aa92593da', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\codeunitfindingvisitor', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\enternode', + 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\classes', + 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\traits', + 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\functions', + 4 => 'sebastianbergmann\\codecoverage\\staticanalysis\\cyclomaticcomplexity', + 5 => 'sebastianbergmann\\codecoverage\\staticanalysis\\signature', + 6 => 'sebastianbergmann\\codecoverage\\staticanalysis\\type', + 7 => 'sebastianbergmann\\codecoverage\\staticanalysis\\visibility', + 8 => 'sebastianbergmann\\codecoverage\\staticanalysis\\processclass', + 9 => 'sebastianbergmann\\codecoverage\\staticanalysis\\processtrait', + 10 => 'sebastianbergmann\\codecoverage\\staticanalysis\\processmethod', + 11 => 'sebastianbergmann\\codecoverage\\staticanalysis\\processfunction', + 12 => 'sebastianbergmann\\codecoverage\\staticanalysis\\namespace', + 13 => 'sebastianbergmann\\codecoverage\\staticanalysis\\uniontypeasstring', + 14 => 'sebastianbergmann\\codecoverage\\staticanalysis\\intersectiontypeasstring', + 15 => 'sebastianbergmann\\codecoverage\\staticanalysis\\typeasstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/StaticAnalysis/FileAnalyser.php' => + array ( + 0 => '3aa59bd9df6ce6076fbc5c34672b877ab2f56db4', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\fileanalyser', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\classesin', + 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\traitsin', + 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\functionsin', + 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\linesofcodefor', + 4 => 'sebastianbergmann\\codecoverage\\staticanalysis\\executablelinesin', + 5 => 'sebastianbergmann\\codecoverage\\staticanalysis\\ignoredlinesfor', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/StaticAnalysis/CachingFileAnalyser.php' => + array ( + 0 => '19988dcff491cf41ed9305cfdc638f0864bf70d0', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\cachingfileanalyser', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\classesin', + 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\traitsin', + 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\functionsin', + 4 => 'sebastianbergmann\\codecoverage\\staticanalysis\\linesofcodefor', + 5 => 'sebastianbergmann\\codecoverage\\staticanalysis\\executablelinesin', + 6 => 'sebastianbergmann\\codecoverage\\staticanalysis\\ignoredlinesfor', + 7 => 'sebastianbergmann\\codecoverage\\staticanalysis\\process', + 8 => 'sebastianbergmann\\codecoverage\\staticanalysis\\read', + 9 => 'sebastianbergmann\\codecoverage\\staticanalysis\\write', + 10 => 'sebastianbergmann\\codecoverage\\staticanalysis\\cachefile', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/StaticAnalysis/CacheWarmer.php' => + array ( + 0 => 'e65da10e0658a3efed33d2c536c42e87629a1dc6', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\cachewarmer', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\warmcache', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/StaticAnalysis/ExecutableLinesFindingVisitor.php' => + array ( + 0 => '1d17ab8519f4d3959bd77ae7de1756e32228baf4', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\executablelinesfindingvisitor', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\enternode', + 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\aftertraverse', + 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\executablelinesgroupedbybranch', + 4 => 'sebastianbergmann\\codecoverage\\staticanalysis\\setlinebranch', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/StaticAnalysis/IgnoredLinesFindingVisitor.php' => + array ( + 0 => '779d5dd16e78106759bdbc25d7ef7cbf820eca9b', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\ignoredlinesfindingvisitor', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\enternode', + 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\ignoredlines', + 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\processdoccomment', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/StaticAnalysis/ParsingFileAnalyser.php' => + array ( + 0 => 'a1c5036d401217718c74f36365d3af91ed1fb740', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\parsingfileanalyser', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\classesin', + 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\traitsin', + 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\functionsin', + 4 => 'sebastianbergmann\\codecoverage\\staticanalysis\\linesofcodefor', + 5 => 'sebastianbergmann\\codecoverage\\staticanalysis\\executablelinesin', + 6 => 'sebastianbergmann\\codecoverage\\staticanalysis\\ignoredlinesfor', + 7 => 'sebastianbergmann\\codecoverage\\staticanalysis\\analyse', + 8 => 'sebastianbergmann\\codecoverage\\staticanalysis\\findlinesignoredbylinebasedannotations', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Cobertura.php' => + array ( + 0 => '7eccec298f335d5765056e1a8cef97f821a79d62', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\cobertura', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\process', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Clover.php' => + array ( + 0 => '600fff84c40b0ff7bc69e0df6e9f3caf2d82d511', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\clover', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\process', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php' => + array ( + 0 => '4f63fd04b992f7581587a4c452ae3f27e17b573f', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\html\\dashboard', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\html\\render', + 1 => 'sebastianbergmann\\codecoverage\\report\\html\\activebreadcrumb', + 2 => 'sebastianbergmann\\codecoverage\\report\\html\\complexity', + 3 => 'sebastianbergmann\\codecoverage\\report\\html\\coveragedistribution', + 4 => 'sebastianbergmann\\codecoverage\\report\\html\\insufficientcoverage', + 5 => 'sebastianbergmann\\codecoverage\\report\\html\\projectrisks', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php' => + array ( + 0 => '80e70639fde678f98d7244d5842ad65181ee2352', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\html\\file', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\html\\render', + 1 => 'sebastianbergmann\\codecoverage\\report\\html\\renderitems', + 2 => 'sebastianbergmann\\codecoverage\\report\\html\\rendertraitorclassitems', + 3 => 'sebastianbergmann\\codecoverage\\report\\html\\renderfunctionitems', + 4 => 'sebastianbergmann\\codecoverage\\report\\html\\renderfunctionormethoditem', + 5 => 'sebastianbergmann\\codecoverage\\report\\html\\rendersourcewithlinecoverage', + 6 => 'sebastianbergmann\\codecoverage\\report\\html\\rendersourcewithbranchcoverage', + 7 => 'sebastianbergmann\\codecoverage\\report\\html\\rendersourcewithpathcoverage', + 8 => 'sebastianbergmann\\codecoverage\\report\\html\\renderbranchstructure', + 9 => 'sebastianbergmann\\codecoverage\\report\\html\\renderbranchlines', + 10 => 'sebastianbergmann\\codecoverage\\report\\html\\renderpathstructure', + 11 => 'sebastianbergmann\\codecoverage\\report\\html\\renderpathlines', + 12 => 'sebastianbergmann\\codecoverage\\report\\html\\renderline', + 13 => 'sebastianbergmann\\codecoverage\\report\\html\\loadfile', + 14 => 'sebastianbergmann\\codecoverage\\report\\html\\abbreviateclassname', + 15 => 'sebastianbergmann\\codecoverage\\report\\html\\abbreviatemethodname', + 16 => 'sebastianbergmann\\codecoverage\\report\\html\\createpopovercontentfortest', + 17 => 'sebastianbergmann\\codecoverage\\report\\html\\iscomment', + 18 => 'sebastianbergmann\\codecoverage\\report\\html\\isinlinehtml', + 19 => 'sebastianbergmann\\codecoverage\\report\\html\\iskeyword', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php' => + array ( + 0 => 'cfdf48c6e903b184956fd34142dff260e5ec3e2a', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\html\\directory', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\html\\render', + 1 => 'sebastianbergmann\\codecoverage\\report\\html\\renderitem', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Html/Colors.php' => + array ( + 0 => 'd1c1f96319862f1cf530322c1d89375b69922a49', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\html\\colors', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\html\\default', + 1 => 'sebastianbergmann\\codecoverage\\report\\html\\from', + 2 => 'sebastianbergmann\\codecoverage\\report\\html\\__construct', + 3 => 'sebastianbergmann\\codecoverage\\report\\html\\successlow', + 4 => 'sebastianbergmann\\codecoverage\\report\\html\\successmedium', + 5 => 'sebastianbergmann\\codecoverage\\report\\html\\successhigh', + 6 => 'sebastianbergmann\\codecoverage\\report\\html\\warning', + 7 => 'sebastianbergmann\\codecoverage\\report\\html\\danger', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer.php' => + array ( + 0 => 'f9745384572a91895e79784853bcfba9987b527d', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\html\\renderer', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\html\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\report\\html\\renderitemtemplate', + 2 => 'sebastianbergmann\\codecoverage\\report\\html\\setcommontemplatevariables', + 3 => 'sebastianbergmann\\codecoverage\\report\\html\\breadcrumbs', + 4 => 'sebastianbergmann\\codecoverage\\report\\html\\activebreadcrumb', + 5 => 'sebastianbergmann\\codecoverage\\report\\html\\inactivebreadcrumb', + 6 => 'sebastianbergmann\\codecoverage\\report\\html\\pathtoroot', + 7 => 'sebastianbergmann\\codecoverage\\report\\html\\coveragebar', + 8 => 'sebastianbergmann\\codecoverage\\report\\html\\colorlevel', + 9 => 'sebastianbergmann\\codecoverage\\report\\html\\runtimestring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Html/CustomCssFile.php' => + array ( + 0 => '8ca667c71c3c8163c86f1b88d3ea5cdecb9bb967', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\html\\customcssfile', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\html\\default', + 1 => 'sebastianbergmann\\codecoverage\\report\\html\\from', + 2 => 'sebastianbergmann\\codecoverage\\report\\html\\__construct', + 3 => 'sebastianbergmann\\codecoverage\\report\\html\\path', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Html/Facade.php' => + array ( + 0 => '232e9fb6aa784f28acbe801da7bcd795efd5c06e', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\html\\facade', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\html\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\report\\html\\process', + 2 => 'sebastianbergmann\\codecoverage\\report\\html\\copyfiles', + 3 => 'sebastianbergmann\\codecoverage\\report\\html\\rendercss', + 4 => 'sebastianbergmann\\codecoverage\\report\\html\\directory', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Totals.php' => + array ( + 0 => 'd3bf0f55cba3634c37a37febdf2ff74a054533f8', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\totals', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\container', + 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\setnumlines', + 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\setnumclasses', + 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\setnumtraits', + 5 => 'sebastianbergmann\\codecoverage\\report\\xml\\setnummethods', + 6 => 'sebastianbergmann\\codecoverage\\report\\xml\\setnumfunctions', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/File.php' => + array ( + 0 => '47b770394d0c53d6a7baabb2179907c9d67e790e', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\file', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\totals', + 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\linecoverage', + 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\contextnode', + 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\dom', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Method.php' => + array ( + 0 => '7380f989600946f13cacf1551cafc6a879aa2be5', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\method', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\setsignature', + 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\setlines', + 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\settotals', + 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\setcrap', + 5 => 'sebastianbergmann\\codecoverage\\report\\xml\\setname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Unit.php' => + array ( + 0 => '39c8a91c0667a6178d155cf6858b3d01f7505652', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\unit', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\setlines', + 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\setcrap', + 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\setnamespace', + 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\addmethod', + 5 => 'sebastianbergmann\\codecoverage\\report\\xml\\setname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Tests.php' => + array ( + 0 => '6473070738d9d95c5642849bfa1dac084534bd20', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\tests', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\addtest', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Project.php' => + array ( + 0 => 'a02d2c58b6f879fa445e34486724fd37eb0eacb8', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\project', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\projectsourcedirectory', + 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\buildinformation', + 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\tests', + 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\asdom', + 5 => 'sebastianbergmann\\codecoverage\\report\\xml\\init', + 6 => 'sebastianbergmann\\codecoverage\\report\\xml\\setprojectsourcedirectory', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Node.php' => + array ( + 0 => 'fedaedc48ccbeb8ed32dab09acab3b4e7a671d1a', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\node', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\dom', + 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\totals', + 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\adddirectory', + 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\addfile', + 5 => 'sebastianbergmann\\codecoverage\\report\\xml\\setcontextnode', + 6 => 'sebastianbergmann\\codecoverage\\report\\xml\\contextnode', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Directory.php' => + array ( + 0 => 'ed3111b4cff6aef5708d13fdddacb1b17fc045d6', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\directory', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Coverage.php' => + array ( + 0 => 'ee31fbb57c5d73f08b1e93901a09c76cd51477b2', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\coverage', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\addtest', + 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\finalize', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Source.php' => + array ( + 0 => '96e456c73f12c9396afe9faff8c3ebe847a55e7c', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\source', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\setsourcecode', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php' => + array ( + 0 => '817777653c6ed484207aa709d003bf2be0b7e10d', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\buildinformation', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\setruntimeinformation', + 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\setbuildtime', + 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\setgeneratorversions', + 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\nodebyname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Report.php' => + array ( + 0 => '7e808cf82125b32b363a37a84bef844501d3cace', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\report', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\asdom', + 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\functionobject', + 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\classobject', + 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\traitobject', + 5 => 'sebastianbergmann\\codecoverage\\report\\xml\\source', + 6 => 'sebastianbergmann\\codecoverage\\report\\xml\\setname', + 7 => 'sebastianbergmann\\codecoverage\\report\\xml\\unitobject', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Facade.php' => + array ( + 0 => '019cd02bf53cb658eba8999949f1eb3ba2d5d31c', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\facade', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\process', + 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\setbuildinformation', + 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\inittargetdirectory', + 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\processdirectory', + 5 => 'sebastianbergmann\\codecoverage\\report\\xml\\processfile', + 6 => 'sebastianbergmann\\codecoverage\\report\\xml\\processunit', + 7 => 'sebastianbergmann\\codecoverage\\report\\xml\\processfunction', + 8 => 'sebastianbergmann\\codecoverage\\report\\xml\\processtests', + 9 => 'sebastianbergmann\\codecoverage\\report\\xml\\settotals', + 10 => 'sebastianbergmann\\codecoverage\\report\\xml\\targetdirectory', + 11 => 'sebastianbergmann\\codecoverage\\report\\xml\\savedocument', + 12 => 'sebastianbergmann\\codecoverage\\report\\xml\\documentasstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Thresholds.php' => + array ( + 0 => '2e4775fec45cd34ef3d111b5e4163a346471833a', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\thresholds', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\default', + 1 => 'sebastianbergmann\\codecoverage\\report\\from', + 2 => 'sebastianbergmann\\codecoverage\\report\\__construct', + 3 => 'sebastianbergmann\\codecoverage\\report\\lowupperbound', + 4 => 'sebastianbergmann\\codecoverage\\report\\highlowerbound', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/PHP.php' => + array ( + 0 => 'cff6093a91ddd56e6f4cb51cb2354a98cb388d24', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\php', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\process', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Text.php' => + array ( + 0 => 'dbbb9c124cf7fffaaa7c8fbfeed4ee86824d69a9', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\text', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\report\\process', + 2 => 'sebastianbergmann\\codecoverage\\report\\coveragecolor', + 3 => 'sebastianbergmann\\codecoverage\\report\\printcoveragecounts', + 4 => 'sebastianbergmann\\codecoverage\\report\\format', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Crap4j.php' => + array ( + 0 => '712ca25a5b74ba3850385bdf771005bcbcd50c56', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\crap4j', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\report\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\report\\process', + 2 => 'sebastianbergmann\\codecoverage\\report\\crapload', + 3 => 'sebastianbergmann\\codecoverage\\report\\roundvalue', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Node/File.php' => + array ( + 0 => '5c71bf72edd80d2589620d5620ca95f419dc82b0', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\node\\file', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\node\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\node\\count', + 2 => 'sebastianbergmann\\codecoverage\\node\\linecoveragedata', + 3 => 'sebastianbergmann\\codecoverage\\node\\functioncoveragedata', + 4 => 'sebastianbergmann\\codecoverage\\node\\testdata', + 5 => 'sebastianbergmann\\codecoverage\\node\\classes', + 6 => 'sebastianbergmann\\codecoverage\\node\\traits', + 7 => 'sebastianbergmann\\codecoverage\\node\\functions', + 8 => 'sebastianbergmann\\codecoverage\\node\\linesofcode', + 9 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablelines', + 10 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedlines', + 11 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablebranches', + 12 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedbranches', + 13 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablepaths', + 14 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedpaths', + 15 => 'sebastianbergmann\\codecoverage\\node\\numberofclasses', + 16 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedclasses', + 17 => 'sebastianbergmann\\codecoverage\\node\\numberoftraits', + 18 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedtraits', + 19 => 'sebastianbergmann\\codecoverage\\node\\numberofmethods', + 20 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedmethods', + 21 => 'sebastianbergmann\\codecoverage\\node\\numberoffunctions', + 22 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedfunctions', + 23 => 'sebastianbergmann\\codecoverage\\node\\calculatestatistics', + 24 => 'sebastianbergmann\\codecoverage\\node\\processclasses', + 25 => 'sebastianbergmann\\codecoverage\\node\\processtraits', + 26 => 'sebastianbergmann\\codecoverage\\node\\processfunctions', + 27 => 'sebastianbergmann\\codecoverage\\node\\newmethod', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Node/CrapIndex.php' => + array ( + 0 => 'b9449ac3869e6b9da3d46e180b0e1c298dbc2272', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\node\\crapindex', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\node\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\node\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Node/Builder.php' => + array ( + 0 => '0ab35dca585944129a6bf614d58e46f4f7d6bf30', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\node\\builder', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\node\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\node\\build', + 2 => 'sebastianbergmann\\codecoverage\\node\\additems', + 3 => 'sebastianbergmann\\codecoverage\\node\\builddirectorystructure', + 4 => 'sebastianbergmann\\codecoverage\\node\\reducepaths', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Node/AbstractNode.php' => + array ( + 0 => 'f9f357b11bca33f034da7f4a574393730656b216', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\node\\abstractnode', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\node\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\node\\name', + 2 => 'sebastianbergmann\\codecoverage\\node\\id', + 3 => 'sebastianbergmann\\codecoverage\\node\\pathasstring', + 4 => 'sebastianbergmann\\codecoverage\\node\\pathasarray', + 5 => 'sebastianbergmann\\codecoverage\\node\\parent', + 6 => 'sebastianbergmann\\codecoverage\\node\\percentageoftestedclasses', + 7 => 'sebastianbergmann\\codecoverage\\node\\percentageoftestedtraits', + 8 => 'sebastianbergmann\\codecoverage\\node\\percentageoftestedclassesandtraits', + 9 => 'sebastianbergmann\\codecoverage\\node\\percentageoftestedfunctions', + 10 => 'sebastianbergmann\\codecoverage\\node\\percentageoftestedmethods', + 11 => 'sebastianbergmann\\codecoverage\\node\\percentageoftestedfunctionsandmethods', + 12 => 'sebastianbergmann\\codecoverage\\node\\percentageofexecutedlines', + 13 => 'sebastianbergmann\\codecoverage\\node\\percentageofexecutedbranches', + 14 => 'sebastianbergmann\\codecoverage\\node\\percentageofexecutedpaths', + 15 => 'sebastianbergmann\\codecoverage\\node\\numberofclassesandtraits', + 16 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedclassesandtraits', + 17 => 'sebastianbergmann\\codecoverage\\node\\classesandtraits', + 18 => 'sebastianbergmann\\codecoverage\\node\\numberoffunctionsandmethods', + 19 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedfunctionsandmethods', + 20 => 'sebastianbergmann\\codecoverage\\node\\classes', + 21 => 'sebastianbergmann\\codecoverage\\node\\traits', + 22 => 'sebastianbergmann\\codecoverage\\node\\functions', + 23 => 'sebastianbergmann\\codecoverage\\node\\linesofcode', + 24 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablelines', + 25 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedlines', + 26 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablebranches', + 27 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedbranches', + 28 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablepaths', + 29 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedpaths', + 30 => 'sebastianbergmann\\codecoverage\\node\\numberofclasses', + 31 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedclasses', + 32 => 'sebastianbergmann\\codecoverage\\node\\numberoftraits', + 33 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedtraits', + 34 => 'sebastianbergmann\\codecoverage\\node\\numberofmethods', + 35 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedmethods', + 36 => 'sebastianbergmann\\codecoverage\\node\\numberoffunctions', + 37 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedfunctions', + 38 => 'sebastianbergmann\\codecoverage\\node\\processid', + 39 => 'sebastianbergmann\\codecoverage\\node\\processpath', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Node/Directory.php' => + array ( + 0 => 'eadde902ea7c3d199c4a7e9f902cd1d35ffd1cb6', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\node\\directory', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\node\\count', + 1 => 'sebastianbergmann\\codecoverage\\node\\getiterator', + 2 => 'sebastianbergmann\\codecoverage\\node\\adddirectory', + 3 => 'sebastianbergmann\\codecoverage\\node\\addfile', + 4 => 'sebastianbergmann\\codecoverage\\node\\directories', + 5 => 'sebastianbergmann\\codecoverage\\node\\files', + 6 => 'sebastianbergmann\\codecoverage\\node\\children', + 7 => 'sebastianbergmann\\codecoverage\\node\\classes', + 8 => 'sebastianbergmann\\codecoverage\\node\\traits', + 9 => 'sebastianbergmann\\codecoverage\\node\\functions', + 10 => 'sebastianbergmann\\codecoverage\\node\\linesofcode', + 11 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablelines', + 12 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedlines', + 13 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablebranches', + 14 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedbranches', + 15 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablepaths', + 16 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedpaths', + 17 => 'sebastianbergmann\\codecoverage\\node\\numberofclasses', + 18 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedclasses', + 19 => 'sebastianbergmann\\codecoverage\\node\\numberoftraits', + 20 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedtraits', + 21 => 'sebastianbergmann\\codecoverage\\node\\numberofmethods', + 22 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedmethods', + 23 => 'sebastianbergmann\\codecoverage\\node\\numberoffunctions', + 24 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedfunctions', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Node/Iterator.php' => + array ( + 0 => '071c579cb533f21b84e400b952eb0eb90fe6e004', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\node\\iterator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\node\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\node\\rewind', + 2 => 'sebastianbergmann\\codecoverage\\node\\valid', + 3 => 'sebastianbergmann\\codecoverage\\node\\key', + 4 => 'sebastianbergmann\\codecoverage\\node\\current', + 5 => 'sebastianbergmann\\codecoverage\\node\\next', + 6 => 'sebastianbergmann\\codecoverage\\node\\getchildren', + 7 => 'sebastianbergmann\\codecoverage\\node\\haschildren', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Data/RawCodeCoverageData.php' => + array ( + 0 => 'abfafb4924d78317578a45129821aa5068d70b86', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\data\\rawcodecoveragedata', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\data\\fromxdebugwithoutpathcoverage', + 1 => 'sebastianbergmann\\codecoverage\\data\\fromxdebugwithpathcoverage', + 2 => 'sebastianbergmann\\codecoverage\\data\\fromuncoveredfile', + 3 => 'sebastianbergmann\\codecoverage\\data\\__construct', + 4 => 'sebastianbergmann\\codecoverage\\data\\clear', + 5 => 'sebastianbergmann\\codecoverage\\data\\linecoverage', + 6 => 'sebastianbergmann\\codecoverage\\data\\functioncoverage', + 7 => 'sebastianbergmann\\codecoverage\\data\\removecoveragedataforfile', + 8 => 'sebastianbergmann\\codecoverage\\data\\keeplinecoveragedataonlyforlines', + 9 => 'sebastianbergmann\\codecoverage\\data\\markexecutablelinebybranch', + 10 => 'sebastianbergmann\\codecoverage\\data\\keepfunctioncoveragedataonlyforlines', + 11 => 'sebastianbergmann\\codecoverage\\data\\removecoveragedataforlines', + 12 => 'sebastianbergmann\\codecoverage\\data\\skipemptylines', + 13 => 'sebastianbergmann\\codecoverage\\data\\getemptylinesforfile', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Data/ProcessedCodeCoverageData.php' => + array ( + 0 => 'd00e801e275a710c217debcdb5bb3abe8b022b74', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\data\\processedcodecoveragedata', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\data\\initializeunseendata', + 1 => 'sebastianbergmann\\codecoverage\\data\\markcodeasexecutedbytestcase', + 2 => 'sebastianbergmann\\codecoverage\\data\\setlinecoverage', + 3 => 'sebastianbergmann\\codecoverage\\data\\linecoverage', + 4 => 'sebastianbergmann\\codecoverage\\data\\setfunctioncoverage', + 5 => 'sebastianbergmann\\codecoverage\\data\\functioncoverage', + 6 => 'sebastianbergmann\\codecoverage\\data\\coveredfiles', + 7 => 'sebastianbergmann\\codecoverage\\data\\renamefile', + 8 => 'sebastianbergmann\\codecoverage\\data\\merge', + 9 => 'sebastianbergmann\\codecoverage\\data\\priorityforline', + 10 => 'sebastianbergmann\\codecoverage\\data\\initpreviouslyunseenfunction', + 11 => 'sebastianbergmann\\codecoverage\\data\\initpreviouslyseenfunction', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/StaticAnalysisCacheNotConfiguredException.php' => + array ( + 0 => '5171f525858d3dc95c7ab369aea8255cbade747a', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\staticanalysiscachenotconfiguredexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php' => + array ( + 0 => '55774564373c60030059c7788c468bde7fc6e27e', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\unintentionallycoveredcodeexception', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\__construct', + 1 => 'sebastianbergmann\\codecoverage\\getunintentionallycoveredunits', + 2 => 'sebastianbergmann\\codecoverage\\tostring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/DirectoryCouldNotBeCreatedException.php' => + array ( + 0 => 'a8ee1d68bf7129412dc749bd67956f89029e9b86', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\util\\directorycouldnotbecreatedexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/ParserException.php' => + array ( + 0 => 'c26409359c3a33b442a381458cca03082850892e', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\parserexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/BranchAndPathCoverageNotSupportedException.php' => + array ( + 0 => '4d97113dfd5fc7061a8d54e823f595a0dd4e825d', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\branchandpathcoveragenotsupportedexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/ReflectionException.php' => + array ( + 0 => '8ffed9167ee166b937f865ade7c9544115b4701b', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\reflectionexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/XdebugNotAvailableException.php' => + array ( + 0 => '48ee4e143fa309d2b686d3e92d96bd1c7e9e3c3e', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\xdebugnotavailableexception', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/TestIdMissingException.php' => + array ( + 0 => 'e24c96b30884f04c17fd4a478b6f8da047e60fad', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\testidmissingexception', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php' => + array ( + 0 => '1f35323a933ced85755776e02a74b178e9f34353', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\nocodecoveragedriverwithpathcoveragesupportavailableexception', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/FileCouldNotBeWrittenException.php' => + array ( + 0 => '4b4f39d716f64078053d6dcff5803023fffc5426', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\filecouldnotbewrittenexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/XmlException.php' => + array ( + 0 => 'db4673016c1cd94a038419baa0712f8ff4dfb569', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\xmlexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/ReportAlreadyFinalizedException.php' => + array ( + 0 => 'eac90a88393de8c209c1fdae8f62f66429a184f7', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\reportalreadyfinalizedexception', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/WriteOperationFailedException.php' => + array ( + 0 => 'f75d4cfd0e5e25c128cb3a5e431b2252275dcf0d', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\writeoperationfailedexception', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php' => + array ( + 0 => '24d0d9939b7c3a3d540fd65bf97c771c1b25a0f9', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\invalidargumentexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/XdebugNotEnabledException.php' => + array ( + 0 => 'b16b47b5de097d7439410dc17c8ad43327365377', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\xdebugnotenabledexception', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/DeadCodeDetectionNotSupportedException.php' => + array ( + 0 => '916187a17ea1a17a88e2ba80a54f4a00201b8d48', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\deadcodedetectionnotsupportedexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/PathExistsButIsNotDirectoryException.php' => + array ( + 0 => 'bc3390322c06aa30d185234a321730977dc556c9', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\pathexistsbutisnotdirectoryexception', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/NoCodeCoverageDriverAvailableException.php' => + array ( + 0 => '946bfaaf140311811ff97aeced7161ec41f0f1f9', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\nocodecoveragedriveravailableexception', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/Exception.php' => + array ( + 0 => '0b964ff4c340596e66d278d1f225f966e2fb1dbd', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/PcovNotAvailableException.php' => + array ( + 0 => '4a2134aaa2570864e87b0264ed0d2a26136d1f03', + 1 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\pcovnotavailableexception', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codecoverage\\driver\\__construct', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/22/24/2224d829a91e793e9dfde9a72a1495f5c87a1770.php b/build/phpstan/cache/PHPStan/22/24/2224d829a91e793e9dfde9a72a1495f5c87a1770.php new file mode 100644 index 0000000..7cd69e7 --- /dev/null +++ b/build/phpstan/cache/PHPStan/22/24/2224d829a91e793e9dfde9a72a1495f5c87a1770.php @@ -0,0 +1,28 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit-reverse-lookup/src/Wizard.php' => + array ( + 0 => '00c83b4dc0986fd9de1bb0438188f6444caabe1c', + 1 => + array ( + 0 => 'sebastianbergmann\\codeunitreverselookup\\wizard', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\codeunitreverselookup\\lookup', + 1 => 'sebastianbergmann\\codeunitreverselookup\\updatelookuptable', + 2 => 'sebastianbergmann\\codeunitreverselookup\\processclassesandtraits', + 3 => 'sebastianbergmann\\codeunitreverselookup\\processfunctions', + 4 => 'sebastianbergmann\\codeunitreverselookup\\processfunctionormethod', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/29/e1/29e19bc71f3867ee7c4eb2c9fc2adf1a249bb080.php b/build/phpstan/cache/PHPStan/29/e1/29e19bc71f3867ee7c4eb2c9fc2adf1a249bb080.php new file mode 100644 index 0000000..9ae989c --- /dev/null +++ b/build/phpstan/cache/PHPStan/29/e1/29e19bc71f3867ee7c4eb2c9fc2adf1a249bb080.php @@ -0,0 +1,260 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Expect.php' => + array ( + 0 => '8055b66c2364b901934ef6b57c27f1d7b1496ed8', + 1 => + array ( + 0 => 'nette\\schema\\expect', + ), + 2 => + array ( + 0 => 'nette\\schema\\__callstatic', + 1 => 'nette\\schema\\type', + 2 => 'nette\\schema\\anyof', + 3 => 'nette\\schema\\structure', + 4 => 'nette\\schema\\from', + 5 => 'nette\\schema\\array', + 6 => 'nette\\schema\\arrayof', + 7 => 'nette\\schema\\listof', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/DynamicParameter.php' => + array ( + 0 => '4192e262c5c981d77aad158604c245d054f83e90', + 1 => + array ( + 0 => 'nette\\schema\\dynamicparameter', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/ValidationException.php' => + array ( + 0 => 'debe8d841f9dc68cc92527f0d6fb30ddc884d39a', + 1 => + array ( + 0 => 'nette\\schema\\validationexception', + ), + 2 => + array ( + 0 => 'nette\\schema\\__construct', + 1 => 'nette\\schema\\getmessages', + 2 => 'nette\\schema\\getmessageobjects', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Elements/Type.php' => + array ( + 0 => 'ce314fdc4a731e5d3d5999c86954ee5c2b9776ac', + 1 => + array ( + 0 => 'nette\\schema\\elements\\type', + ), + 2 => + array ( + 0 => 'nette\\schema\\elements\\__construct', + 1 => 'nette\\schema\\elements\\nullable', + 2 => 'nette\\schema\\elements\\mergedefaults', + 3 => 'nette\\schema\\elements\\dynamic', + 4 => 'nette\\schema\\elements\\min', + 5 => 'nette\\schema\\elements\\max', + 6 => 'nette\\schema\\elements\\items', + 7 => 'nette\\schema\\elements\\pattern', + 8 => 'nette\\schema\\elements\\normalize', + 9 => 'nette\\schema\\elements\\merge', + 10 => 'nette\\schema\\elements\\complete', + 11 => 'nette\\schema\\elements\\validateitems', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Elements/Structure.php' => + array ( + 0 => '0c281fc9427ca572c25a47af46579c29b1474e6e', + 1 => + array ( + 0 => 'nette\\schema\\elements\\structure', + ), + 2 => + array ( + 0 => 'nette\\schema\\elements\\__construct', + 1 => 'nette\\schema\\elements\\default', + 2 => 'nette\\schema\\elements\\min', + 3 => 'nette\\schema\\elements\\max', + 4 => 'nette\\schema\\elements\\otheritems', + 5 => 'nette\\schema\\elements\\skipdefaults', + 6 => 'nette\\schema\\elements\\extend', + 7 => 'nette\\schema\\elements\\getshape', + 8 => 'nette\\schema\\elements\\normalize', + 9 => 'nette\\schema\\elements\\merge', + 10 => 'nette\\schema\\elements\\complete', + 11 => 'nette\\schema\\elements\\validateitems', + 12 => 'nette\\schema\\elements\\completedefault', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Elements/Base.php' => + array ( + 0 => '5f17f0632b72113e75e11c4a3320bcf02efe9703', + 1 => + array ( + 0 => 'nette\\schema\\elements\\base', + ), + 2 => + array ( + 0 => 'nette\\schema\\elements\\default', + 1 => 'nette\\schema\\elements\\required', + 2 => 'nette\\schema\\elements\\before', + 3 => 'nette\\schema\\elements\\castto', + 4 => 'nette\\schema\\elements\\transform', + 5 => 'nette\\schema\\elements\\assert', + 6 => 'nette\\schema\\elements\\deprecated', + 7 => 'nette\\schema\\elements\\completedefault', + 8 => 'nette\\schema\\elements\\donormalize', + 9 => 'nette\\schema\\elements\\dodeprecation', + 10 => 'nette\\schema\\elements\\dotransform', + 11 => 'nette\\schema\\elements\\dovalidate', + 12 => 'nette\\schema\\elements\\dovalidaterange', + 13 => 'nette\\schema\\elements\\dofinalize', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Elements/AnyOf.php' => + array ( + 0 => '414710a9e3262ad6d561e713773c3e268f34b44f', + 1 => + array ( + 0 => 'nette\\schema\\elements\\anyof', + ), + 2 => + array ( + 0 => 'nette\\schema\\elements\\__construct', + 1 => 'nette\\schema\\elements\\firstisdefault', + 2 => 'nette\\schema\\elements\\nullable', + 3 => 'nette\\schema\\elements\\dynamic', + 4 => 'nette\\schema\\elements\\normalize', + 5 => 'nette\\schema\\elements\\merge', + 6 => 'nette\\schema\\elements\\complete', + 7 => 'nette\\schema\\elements\\findalternative', + 8 => 'nette\\schema\\elements\\completedefault', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Context.php' => + array ( + 0 => 'a1f0b34eac134ead52282f3747a21b7d735c11d9', + 1 => + array ( + 0 => 'nette\\schema\\context', + ), + 2 => + array ( + 0 => 'nette\\schema\\adderror', + 1 => 'nette\\schema\\addwarning', + 2 => 'nette\\schema\\createchecker', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Processor.php' => + array ( + 0 => 'efa684244f9e6f22300316afa634a0102d8973ad', + 1 => + array ( + 0 => 'nette\\schema\\processor', + ), + 2 => + array ( + 0 => 'nette\\schema\\skipdefaults', + 1 => 'nette\\schema\\process', + 2 => 'nette\\schema\\processmultiple', + 3 => 'nette\\schema\\getwarnings', + 4 => 'nette\\schema\\throwserrors', + 5 => 'nette\\schema\\createcontext', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Schema.php' => + array ( + 0 => '24a8422581be56a210c0a4c610af3aeaaeca779a', + 1 => + array ( + 0 => 'nette\\schema\\schema', + ), + 2 => + array ( + 0 => 'nette\\schema\\normalize', + 1 => 'nette\\schema\\merge', + 2 => 'nette\\schema\\complete', + 3 => 'nette\\schema\\completedefault', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Helpers.php' => + array ( + 0 => '0f8d327f5a4b38e63b15474096cdda91292bb20e', + 1 => + array ( + 0 => 'nette\\schema\\helpers', + ), + 2 => + array ( + 0 => 'nette\\schema\\merge', + 1 => 'nette\\schema\\getpropertytype', + 2 => 'nette\\schema\\parseannotation', + 3 => 'nette\\schema\\formatvalue', + 4 => 'nette\\schema\\validatetype', + 5 => 'nette\\schema\\validaterange', + 6 => 'nette\\schema\\isinrange', + 7 => 'nette\\schema\\validatepattern', + 8 => 'nette\\schema\\getcaststrategy', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Message.php' => + array ( + 0 => '2525526ec0028931fc3d2ca20207a9060c564059', + 1 => + array ( + 0 => 'nette\\schema\\message', + ), + 2 => + array ( + 0 => 'nette\\schema\\__construct', + 1 => 'nette\\schema\\tostring', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/2a/0d/2a0d87dd02dee5a170322f7126827cc830ffb674.php b/build/phpstan/cache/PHPStan/2a/0d/2a0d87dd02dee5a170322f7126827cc830ffb674.php new file mode 100644 index 0000000..d4d054b --- /dev/null +++ b/build/phpstan/cache/PHPStan/2a/0d/2a0d87dd02dee5a170322f7126827cc830ffb674.php @@ -0,0 +1,164 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/SQLite3Exception.php' => + array ( + 0 => '1bb73b922ce93a9ac9fe50baccccf014c0a47a15', + 1 => + array ( + 0 => 'sqlite3exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/DateError.php' => + array ( + 0 => '507d40e4c8120159602a96ad7f79f2747c075832', + 1 => + array ( + 0 => 'dateerror', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/Override.php' => + array ( + 0 => 'ea5a9d50cfb4d187336cf7aecac4ba7268777a20', + 1 => + array ( + 0 => 'override', + ), + 2 => + array ( + 0 => '__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/DateException.php' => + array ( + 0 => 'af1baabcbe518784f6f8cec728df655e5f7d26a9', + 1 => + array ( + 0 => 'dateexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/DateInvalidOperationException.php' => + array ( + 0 => 'c514a879a3544566510c2c0a91b1b1a082f1e59e', + 1 => + array ( + 0 => 'dateinvalidoperationexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/DateObjectError.php' => + array ( + 0 => '5ecda63e0c1a1d420422a90b060c5b9a82b3b856', + 1 => + array ( + 0 => 'dateobjecterror', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedPeriodStringException.php' => + array ( + 0 => 'c8a6e7796fbec0c3b1a6db401a897ddc128f133b', + 1 => + array ( + 0 => 'datemalformedperiodstringexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedStringException.php' => + array ( + 0 => '5a2b12bd3f5b10658acf4d9f0c8c9581218a099a', + 1 => + array ( + 0 => 'datemalformedstringexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/DateRangeError.php' => + array ( + 0 => '95434544bd2764aa084667729cc6a9c5b10db9e3', + 1 => + array ( + 0 => 'daterangeerror', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/DateInvalidTimeZoneException.php' => + array ( + 0 => '9dd3725abd945fff1eecdccda915e4fe5e13f4fe', + 1 => + array ( + 0 => 'dateinvalidtimezoneexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedIntervalStringException.php' => + array ( + 0 => 'dbd4ce64cc4cb83a81cacb01dc9a7e2e02beaea5', + 1 => + array ( + 0 => 'datemalformedintervalstringexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/39/7e/397e1a2bbf979b2bcce48b710df4522487bdb71d.php b/build/phpstan/cache/PHPStan/39/7e/397e1a2bbf979b2bcce48b710df4522487bdb71d.php new file mode 100644 index 0000000..8c5a048 --- /dev/null +++ b/build/phpstan/cache/PHPStan/39/7e/397e1a2bbf979b2bcce48b710df4522487bdb71d.php @@ -0,0 +1,106 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-timer/src/ResourceUsageFormatter.php' => + array ( + 0 => 'c89198c7ee4a06fb1337ba8af9ed1440d3a45a4a', + 1 => + array ( + 0 => 'sebastianbergmann\\timer\\resourceusageformatter', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\timer\\resourceusage', + 1 => 'sebastianbergmann\\timer\\resourceusagesincestartofrequest', + 2 => 'sebastianbergmann\\timer\\bytestostring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-timer/src/exceptions/NoActiveTimerException.php' => + array ( + 0 => '83b14a0d942e084460fc373c896ecf868ea4b7b7', + 1 => + array ( + 0 => 'sebastianbergmann\\timer\\noactivetimerexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-timer/src/exceptions/TimeSinceStartOfRequestNotAvailableException.php' => + array ( + 0 => '31c00ec28beba93d9853845c77887597821c9ee6', + 1 => + array ( + 0 => 'sebastianbergmann\\timer\\timesincestartofrequestnotavailableexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-timer/src/exceptions/Exception.php' => + array ( + 0 => '585b1208820c28f65d4ccebe577ca93444b2364c', + 1 => + array ( + 0 => 'sebastianbergmann\\timer\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-timer/src/Timer.php' => + array ( + 0 => '98c58a0323a73d447c560c257e7015e26e5d7bdd', + 1 => + array ( + 0 => 'sebastianbergmann\\timer\\timer', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\timer\\start', + 1 => 'sebastianbergmann\\timer\\stop', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-timer/src/Duration.php' => + array ( + 0 => '0fe375970a9fb84e9ac087e528852dc16adc5774', + 1 => + array ( + 0 => 'sebastianbergmann\\timer\\duration', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\timer\\frommicroseconds', + 1 => 'sebastianbergmann\\timer\\fromnanoseconds', + 2 => 'sebastianbergmann\\timer\\__construct', + 3 => 'sebastianbergmann\\timer\\asnanoseconds', + 4 => 'sebastianbergmann\\timer\\asmicroseconds', + 5 => 'sebastianbergmann\\timer\\asmilliseconds', + 6 => 'sebastianbergmann\\timer\\asseconds', + 7 => 'sebastianbergmann\\timer\\asstring', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/3b/cf/3bcfb0e52ab56e79b0cc84a8c34dd2fce9305585.php b/build/phpstan/cache/PHPStan/3b/cf/3bcfb0e52ab56e79b0cc84a8c34dd2fce9305585.php new file mode 100644 index 0000000..606a968 --- /dev/null +++ b/build/phpstan/cache/PHPStan/3b/cf/3bcfb0e52ab56e79b0cc84a8c34dd2fce9305585.php @@ -0,0 +1,22 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/config/twilio_verify.php' => + array ( + 0 => 'a8f5ea7aad80874a9906da3b90cfb199a560f422', + 1 => + array ( + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/49/43/4943bcb54a2a84c6cb812a7bf78fc212b6bb9b96.php b/build/phpstan/cache/PHPStan/49/43/4943bcb54a2a84c6cb812a7bf78fc212b6bb9b96.php new file mode 100644 index 0000000..cbca291 --- /dev/null +++ b/build/phpstan/cache/PHPStan/49/43/4943bcb54a2a84c6cb812a7bf78fc212b6bb9b96.php @@ -0,0 +1,120 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/lines-of-code/src/LineCountingVisitor.php' => + array ( + 0 => '9da2fbce123885e666c8f040a3b005b4d9585ffe', + 1 => + array ( + 0 => 'sebastianbergmann\\linesofcode\\linecountingvisitor', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\linesofcode\\__construct', + 1 => 'sebastianbergmann\\linesofcode\\enternode', + 2 => 'sebastianbergmann\\linesofcode\\result', + 3 => 'sebastianbergmann\\linesofcode\\comments', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/lines-of-code/src/LinesOfCode.php' => + array ( + 0 => '5cc86f125be2fe1b73cd0d956190ae29437a7b2e', + 1 => + array ( + 0 => 'sebastianbergmann\\linesofcode\\linesofcode', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\linesofcode\\__construct', + 1 => 'sebastianbergmann\\linesofcode\\linesofcode', + 2 => 'sebastianbergmann\\linesofcode\\commentlinesofcode', + 3 => 'sebastianbergmann\\linesofcode\\noncommentlinesofcode', + 4 => 'sebastianbergmann\\linesofcode\\logicallinesofcode', + 5 => 'sebastianbergmann\\linesofcode\\plus', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/lines-of-code/src/Counter.php' => + array ( + 0 => '8dd8bef677e9ae4201d75eb7eddcd6a2cc8b62b7', + 1 => + array ( + 0 => 'sebastianbergmann\\linesofcode\\counter', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\linesofcode\\countinsourcefile', + 1 => 'sebastianbergmann\\linesofcode\\countinsourcestring', + 2 => 'sebastianbergmann\\linesofcode\\countinabstractsyntaxtree', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/lines-of-code/src/Exception/RuntimeException.php' => + array ( + 0 => '846eefcf2a00c4b39378c358f9f9fdf591fa14c6', + 1 => + array ( + 0 => 'sebastianbergmann\\linesofcode\\runtimeexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/lines-of-code/src/Exception/NegativeValueException.php' => + array ( + 0 => '2a5c2802c7e7237357d1f01eb112bb9e745e5f1b', + 1 => + array ( + 0 => 'sebastianbergmann\\linesofcode\\negativevalueexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/lines-of-code/src/Exception/IllogicalValuesException.php' => + array ( + 0 => 'f6aa84e6523cf722c342e5354720cef59f133e23', + 1 => + array ( + 0 => 'sebastianbergmann\\linesofcode\\illogicalvaluesexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/lines-of-code/src/Exception/Exception.php' => + array ( + 0 => '8f85e6aa5c47b0c642b4d0e38955cc8e25ad58e5', + 1 => + array ( + 0 => 'sebastianbergmann\\linesofcode\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/59/4f/594f1d5b5de228c969a5f59ae27f4c8618ada4ed.php b/build/phpstan/cache/PHPStan/59/4f/594f1d5b5de228c969a5f59ae27f4c8618ada4ed.php new file mode 100644 index 0000000..b5b2de6 --- /dev/null +++ b/build/phpstan/cache/PHPStan/59/4f/594f1d5b5de228c969a5f59ae27f4c8618ada4ed.php @@ -0,0 +1,145 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/theseer/tokenizer/src/Token.php' => + array ( + 0 => '72dfc3764b5904229fffdbd455692c1f6f453e03', + 1 => + array ( + 0 => 'theseer\\tokenizer\\token', + ), + 2 => + array ( + 0 => 'theseer\\tokenizer\\__construct', + 1 => 'theseer\\tokenizer\\getline', + 2 => 'theseer\\tokenizer\\getname', + 3 => 'theseer\\tokenizer\\getvalue', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/theseer/tokenizer/src/NamespaceUriException.php' => + array ( + 0 => 'eb0118a14b93df2a4b029d40f6b8acbf110999d6', + 1 => + array ( + 0 => 'theseer\\tokenizer\\namespaceuriexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/theseer/tokenizer/src/TokenCollectionException.php' => + array ( + 0 => '9c4af3c1624653bf11e5a5291e3c1f447a147c39', + 1 => + array ( + 0 => 'theseer\\tokenizer\\tokencollectionexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/theseer/tokenizer/src/TokenCollection.php' => + array ( + 0 => 'f50292c8fae48d972b5cad5d871bfe7d783cf876', + 1 => + array ( + 0 => 'theseer\\tokenizer\\tokencollection', + ), + 2 => + array ( + 0 => 'theseer\\tokenizer\\addtoken', + 1 => 'theseer\\tokenizer\\current', + 2 => 'theseer\\tokenizer\\key', + 3 => 'theseer\\tokenizer\\next', + 4 => 'theseer\\tokenizer\\valid', + 5 => 'theseer\\tokenizer\\rewind', + 6 => 'theseer\\tokenizer\\count', + 7 => 'theseer\\tokenizer\\offsetexists', + 8 => 'theseer\\tokenizer\\offsetget', + 9 => 'theseer\\tokenizer\\offsetset', + 10 => 'theseer\\tokenizer\\offsetunset', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/theseer/tokenizer/src/Tokenizer.php' => + array ( + 0 => 'c917fe54262f1eff4e50e00a4cb3c436dffa88d8', + 1 => + array ( + 0 => 'theseer\\tokenizer\\tokenizer', + ), + 2 => + array ( + 0 => 'theseer\\tokenizer\\parse', + 1 => 'theseer\\tokenizer\\fillblanks', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/theseer/tokenizer/src/XMLSerializer.php' => + array ( + 0 => 'c244e71221bcdc26b37e6007934d8d5a12c96e67', + 1 => + array ( + 0 => 'theseer\\tokenizer\\xmlserializer', + ), + 2 => + array ( + 0 => 'theseer\\tokenizer\\__construct', + 1 => 'theseer\\tokenizer\\todom', + 2 => 'theseer\\tokenizer\\toxml', + 3 => 'theseer\\tokenizer\\addtoken', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/theseer/tokenizer/src/NamespaceUri.php' => + array ( + 0 => 'befc3004af28f6a2154c9b9b1203ef18e16a49f2', + 1 => + array ( + 0 => 'theseer\\tokenizer\\namespaceuri', + ), + 2 => + array ( + 0 => 'theseer\\tokenizer\\__construct', + 1 => 'theseer\\tokenizer\\asstring', + 2 => 'theseer\\tokenizer\\ensurevaliduri', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/theseer/tokenizer/src/Exception.php' => + array ( + 0 => 'f1984821ed73363a5ede6d1cd570898e01148c23', + 1 => + array ( + 0 => 'theseer\\tokenizer\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/5a/af/5aaf6a97372b42bc88398afdadbfa84cb31d2592.php b/build/phpstan/cache/PHPStan/5a/af/5aaf6a97372b42bc88398afdadbfa84cb31d2592.php new file mode 100644 index 0000000..222135b --- /dev/null +++ b/build/phpstan/cache/PHPStan/5a/af/5aaf6a97372b42bc88398afdadbfa84cb31d2592.php @@ -0,0 +1,154 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/complexity/src/Complexity/Complexity.php' => + array ( + 0 => 'c4b52cb9a20b7d380b9212c05cfa18baa1f8639b', + 1 => + array ( + 0 => 'sebastianbergmann\\complexity\\complexity', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\complexity\\__construct', + 1 => 'sebastianbergmann\\complexity\\name', + 2 => 'sebastianbergmann\\complexity\\cyclomaticcomplexity', + 3 => 'sebastianbergmann\\complexity\\isfunction', + 4 => 'sebastianbergmann\\complexity\\ismethod', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/complexity/src/Complexity/ComplexityCollectionIterator.php' => + array ( + 0 => 'f2f1c366dfca1f2d6747ce4a0046baaae4e09ce0', + 1 => + array ( + 0 => 'sebastianbergmann\\complexity\\complexitycollectioniterator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\complexity\\__construct', + 1 => 'sebastianbergmann\\complexity\\rewind', + 2 => 'sebastianbergmann\\complexity\\valid', + 3 => 'sebastianbergmann\\complexity\\key', + 4 => 'sebastianbergmann\\complexity\\current', + 5 => 'sebastianbergmann\\complexity\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/complexity/src/Complexity/ComplexityCollection.php' => + array ( + 0 => '6d6bfd6d40dec3ab1b0307fa7b6c97ef7725e8d9', + 1 => + array ( + 0 => 'sebastianbergmann\\complexity\\complexitycollection', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\complexity\\fromlist', + 1 => 'sebastianbergmann\\complexity\\__construct', + 2 => 'sebastianbergmann\\complexity\\asarray', + 3 => 'sebastianbergmann\\complexity\\getiterator', + 4 => 'sebastianbergmann\\complexity\\count', + 5 => 'sebastianbergmann\\complexity\\isempty', + 6 => 'sebastianbergmann\\complexity\\cyclomaticcomplexity', + 7 => 'sebastianbergmann\\complexity\\isfunction', + 8 => 'sebastianbergmann\\complexity\\ismethod', + 9 => 'sebastianbergmann\\complexity\\mergewith', + 10 => 'sebastianbergmann\\complexity\\sortbydescendingcyclomaticcomplexity', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/complexity/src/Calculator.php' => + array ( + 0 => 'b8042bf3f7eda0cb1441c6eda42151454e189174', + 1 => + array ( + 0 => 'sebastianbergmann\\complexity\\calculator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\complexity\\calculateforsourcefile', + 1 => 'sebastianbergmann\\complexity\\calculateforsourcestring', + 2 => 'sebastianbergmann\\complexity\\calculateforabstractsyntaxtree', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/complexity/src/Visitor/CyclomaticComplexityCalculatingVisitor.php' => + array ( + 0 => '1672f2af02daf3bf9f9f5618245efd0c50b03afa', + 1 => + array ( + 0 => 'sebastianbergmann\\complexity\\cyclomaticcomplexitycalculatingvisitor', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\complexity\\enternode', + 1 => 'sebastianbergmann\\complexity\\cyclomaticcomplexity', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/complexity/src/Visitor/ComplexityCalculatingVisitor.php' => + array ( + 0 => 'c746502b1b404069bde9066c3a11d9cb927520c8', + 1 => + array ( + 0 => 'sebastianbergmann\\complexity\\complexitycalculatingvisitor', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\complexity\\__construct', + 1 => 'sebastianbergmann\\complexity\\enternode', + 2 => 'sebastianbergmann\\complexity\\result', + 3 => 'sebastianbergmann\\complexity\\cyclomaticcomplexity', + 4 => 'sebastianbergmann\\complexity\\classmethodname', + 5 => 'sebastianbergmann\\complexity\\functionname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/complexity/src/Exception/RuntimeException.php' => + array ( + 0 => 'e8ff0c097319875f50b1ff0a4a184747bbf724ac', + 1 => + array ( + 0 => 'sebastianbergmann\\complexity\\runtimeexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/complexity/src/Exception/Exception.php' => + array ( + 0 => '022209ac794d1b2cef438ba5ac0dc80e1e84f66c', + 1 => + array ( + 0 => 'sebastianbergmann\\complexity\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/5b/39/5b39a2491b73c999e4428ad8f42774bd706e8563.php b/build/phpstan/cache/PHPStan/5b/39/5b39a2491b73c999e4428ad8f42774bd706e8563.php new file mode 100644 index 0000000..e6d1ee5 --- /dev/null +++ b/build/phpstan/cache/PHPStan/5b/39/5b39a2491b73c999e4428ad8f42774bd706e8563.php @@ -0,0 +1,27 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/version/src/Version.php' => + array ( + 0 => '3cc851321f987fa548ad171836abc846c2b73810', + 1 => + array ( + 0 => 'sebastianbergmann\\version', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\__construct', + 1 => 'sebastianbergmann\\asstring', + 2 => 'sebastianbergmann\\generate', + 3 => 'sebastianbergmann\\getgitinformation', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/5c/60/5c60e8ebac70223ee4fc1afa54484297f3327f43.php b/build/phpstan/cache/PHPStan/5c/60/5c60e8ebac70223ee4fc1afa54484297f3327f43.php new file mode 100644 index 0000000..58c8227 --- /dev/null +++ b/build/phpstan/cache/PHPStan/5c/60/5c60e8ebac70223ee4fc1afa54484297f3327f43.php @@ -0,0 +1,60 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/environment/src/Runtime.php' => + array ( + 0 => '692bd98de23847dfab973a08267448975c0d9565', + 1 => + array ( + 0 => 'sebastianbergmann\\environment\\runtime', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\environment\\cancollectcodecoverage', + 1 => 'sebastianbergmann\\environment\\discardscomments', + 2 => 'sebastianbergmann\\environment\\performsjustintimecompilation', + 3 => 'sebastianbergmann\\environment\\getrawbinary', + 4 => 'sebastianbergmann\\environment\\getbinary', + 5 => 'sebastianbergmann\\environment\\getnamewithversion', + 6 => 'sebastianbergmann\\environment\\getnamewithversionandcodecoveragedriver', + 7 => 'sebastianbergmann\\environment\\getname', + 8 => 'sebastianbergmann\\environment\\getvendorurl', + 9 => 'sebastianbergmann\\environment\\getversion', + 10 => 'sebastianbergmann\\environment\\hasxdebug', + 11 => 'sebastianbergmann\\environment\\isphp', + 12 => 'sebastianbergmann\\environment\\isphpdbg', + 13 => 'sebastianbergmann\\environment\\hasphpdbgcodecoverage', + 14 => 'sebastianbergmann\\environment\\haspcov', + 15 => 'sebastianbergmann\\environment\\getcurrentsettings', + 16 => 'sebastianbergmann\\environment\\isopcacheactive', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/environment/src/Console.php' => + array ( + 0 => '1ab1138f7b3619619292f9b657fa68872fae6046', + 1 => + array ( + 0 => 'sebastianbergmann\\environment\\console', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\environment\\hascolorsupport', + 1 => 'sebastianbergmann\\environment\\getnumberofcolumns', + 2 => 'sebastianbergmann\\environment\\isinteractive', + 3 => 'sebastianbergmann\\environment\\iswindows', + 4 => 'sebastianbergmann\\environment\\getnumberofcolumnsinteractive', + 5 => 'sebastianbergmann\\environment\\getnumberofcolumnswindows', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/65/c9/65c93509bed6d8a6b0d49b45753619d3f899cbe5.php b/build/phpstan/cache/PHPStan/65/c9/65c93509bed6d8a6b0d49b45753619d3f899cbe5.php new file mode 100644 index 0000000..a892fc6 --- /dev/null +++ b/build/phpstan/cache/PHPStan/65/c9/65c93509bed6d8a6b0d49b45753619d3f899cbe5.php @@ -0,0 +1,70 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-text-template/src/exceptions/RuntimeException.php' => + array ( + 0 => '7a19b120a8deaa8f0f3271cf2385276fbc4461ec', + 1 => + array ( + 0 => 'sebastianbergmann\\template\\runtimeexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-text-template/src/exceptions/InvalidArgumentException.php' => + array ( + 0 => '02fc5bf6252c6d418dcaee916fce2f3690251349', + 1 => + array ( + 0 => 'sebastianbergmann\\template\\invalidargumentexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-text-template/src/exceptions/Exception.php' => + array ( + 0 => '0a38bd1cb58cb6ab0f43b58f95608743ae360bfa', + 1 => + array ( + 0 => 'sebastianbergmann\\template\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-text-template/src/Template.php' => + array ( + 0 => 'f94bbe8dc3e30fba039d7952edf29e8ad1d17387', + 1 => + array ( + 0 => 'sebastianbergmann\\template\\template', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\template\\__construct', + 1 => 'sebastianbergmann\\template\\setvar', + 2 => 'sebastianbergmann\\template\\render', + 3 => 'sebastianbergmann\\template\\renderto', + 4 => 'sebastianbergmann\\template\\loadtemplatefile', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/77/33/77335fdf6ec7ec7dc6f397cfeaa3b474122be1ea.php b/build/phpstan/cache/PHPStan/77/33/77335fdf6ec7ec7dc6f397cfeaa3b474122be1ea.php new file mode 100644 index 0000000..673e7b4 --- /dev/null +++ b/build/phpstan/cache/PHPStan/77/33/77335fdf6ec7ec7dc6f397cfeaa3b474122be1ea.php @@ -0,0 +1,23 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php' => + array ( + 0 => 'b44d72072bdc49d6c62ab0216e925fa0146c7a74', + 1 => + array ( + 0 => 'normalizer', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/7e/da/7eda7f716177026b79ab4149c9fc4e9a79b136aa.php b/build/phpstan/cache/PHPStan/7e/da/7eda7f716177026b79ab4149c9fc4e9a79b136aa.php new file mode 100644 index 0000000..e645f36 --- /dev/null +++ b/build/phpstan/cache/PHPStan/7e/da/7eda7f716177026b79ab4149c9fc4e9a79b136aa.php @@ -0,0 +1,315 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/ArrayComparator.php' => + array ( + 0 => '0762c0b8f0283f3a12eba475e68bb7e18136f2dd', + 1 => + array ( + 0 => 'sebastianbergmann\\comparator\\arraycomparator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\comparator\\accepts', + 1 => 'sebastianbergmann\\comparator\\assertequals', + 2 => 'sebastianbergmann\\comparator\\indent', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/TypeComparator.php' => + array ( + 0 => '03c9915bfa9ebe20e06941c7920660985fc92f4f', + 1 => + array ( + 0 => 'sebastianbergmann\\comparator\\typecomparator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\comparator\\accepts', + 1 => 'sebastianbergmann\\comparator\\assertequals', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/NumberComparator.php' => + array ( + 0 => '4fe968b48b5ec6f58911f7bacc643d3083545c66', + 1 => + array ( + 0 => 'sebastianbergmann\\comparator\\numbercomparator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\comparator\\accepts', + 1 => 'sebastianbergmann\\comparator\\assertequals', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/Factory.php' => + array ( + 0 => '9b6254ffac6ddd1c9173d0ae37f852de3d9bbda1', + 1 => + array ( + 0 => 'sebastianbergmann\\comparator\\factory', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\comparator\\getinstance', + 1 => 'sebastianbergmann\\comparator\\__construct', + 2 => 'sebastianbergmann\\comparator\\getcomparatorfor', + 3 => 'sebastianbergmann\\comparator\\register', + 4 => 'sebastianbergmann\\comparator\\unregister', + 5 => 'sebastianbergmann\\comparator\\reset', + 6 => 'sebastianbergmann\\comparator\\registerdefaultcomparators', + 7 => 'sebastianbergmann\\comparator\\registerdefaultcomparator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/EnumerationComparator.php' => + array ( + 0 => '8bf8b606dbe97642f5335b7eaabe7ce2a25abf70', + 1 => + array ( + 0 => 'sebastianbergmann\\comparator\\enumerationcomparator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\comparator\\accepts', + 1 => 'sebastianbergmann\\comparator\\assertequals', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/ResourceComparator.php' => + array ( + 0 => '0481704c620be00d69ac3c88436c0e94a34d7f11', + 1 => + array ( + 0 => 'sebastianbergmann\\comparator\\resourcecomparator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\comparator\\accepts', + 1 => 'sebastianbergmann\\comparator\\assertequals', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/MockObjectComparator.php' => + array ( + 0 => 'a2456a9ee515f4a6addd8dc6fd039b4990797cb9', + 1 => + array ( + 0 => 'sebastianbergmann\\comparator\\mockobjectcomparator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\comparator\\accepts', + 1 => 'sebastianbergmann\\comparator\\toarray', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/ObjectComparator.php' => + array ( + 0 => 'b4afaa81066faf1196f2a31bc54440c2274266b1', + 1 => + array ( + 0 => 'sebastianbergmann\\comparator\\objectcomparator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\comparator\\accepts', + 1 => 'sebastianbergmann\\comparator\\assertequals', + 2 => 'sebastianbergmann\\comparator\\toarray', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/NumericComparator.php' => + array ( + 0 => '7a690849336b304a0fad6156efb1786386676947', + 1 => + array ( + 0 => 'sebastianbergmann\\comparator\\numericcomparator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\comparator\\accepts', + 1 => 'sebastianbergmann\\comparator\\assertequals', + 2 => 'sebastianbergmann\\comparator\\isinfinite', + 3 => 'sebastianbergmann\\comparator\\isnan', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/exceptions/RuntimeException.php' => + array ( + 0 => 'd003040d7e1f41055e36d6ffc4386fa5b69a0657', + 1 => + array ( + 0 => 'sebastianbergmann\\comparator\\runtimeexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/exceptions/Exception.php' => + array ( + 0 => 'f1e8aa746d62e8f73b40edc650b39bac4bb05e66', + 1 => + array ( + 0 => 'sebastianbergmann\\comparator\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/DateTimeComparator.php' => + array ( + 0 => '3242d8422b096e75ff332c4964dbe8819b5c58c5', + 1 => + array ( + 0 => 'sebastianbergmann\\comparator\\datetimecomparator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\comparator\\accepts', + 1 => 'sebastianbergmann\\comparator\\assertequals', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/ScalarComparator.php' => + array ( + 0 => '4054db6501f1d8ca4633838feac034d01af1a2f3', + 1 => + array ( + 0 => 'sebastianbergmann\\comparator\\scalarcomparator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\comparator\\accepts', + 1 => 'sebastianbergmann\\comparator\\assertequals', + 2 => 'sebastianbergmann\\comparator\\removeoverlongcommonprefix', + 3 => 'sebastianbergmann\\comparator\\findcommonprefix', + 4 => 'sebastianbergmann\\comparator\\removeoverlongcommonsuffix', + 5 => 'sebastianbergmann\\comparator\\findcommonsuffix', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/ExceptionComparator.php' => + array ( + 0 => '6903f3314181ea2f25478c45a8d694fe57d54e3e', + 1 => + array ( + 0 => 'sebastianbergmann\\comparator\\exceptioncomparator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\comparator\\accepts', + 1 => 'sebastianbergmann\\comparator\\toarray', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/Comparator.php' => + array ( + 0 => '65a17773ecbc26b7210cc14269d734eb46732767', + 1 => + array ( + 0 => 'sebastianbergmann\\comparator\\comparator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\comparator\\setfactory', + 1 => 'sebastianbergmann\\comparator\\accepts', + 2 => 'sebastianbergmann\\comparator\\assertequals', + 3 => 'sebastianbergmann\\comparator\\factory', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/DOMNodeComparator.php' => + array ( + 0 => '59f3cbd6cd783a70863941e3b09ca2112d6c8511', + 1 => + array ( + 0 => 'sebastianbergmann\\comparator\\domnodecomparator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\comparator\\accepts', + 1 => 'sebastianbergmann\\comparator\\assertequals', + 2 => 'sebastianbergmann\\comparator\\nodetotext', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/ComparisonFailure.php' => + array ( + 0 => '7f7b6a0bf1f828dc2476d76c7b024ddf2eb96a35', + 1 => + array ( + 0 => 'sebastianbergmann\\comparator\\comparisonfailure', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\comparator\\__construct', + 1 => 'sebastianbergmann\\comparator\\getactual', + 2 => 'sebastianbergmann\\comparator\\getexpected', + 3 => 'sebastianbergmann\\comparator\\getactualasstring', + 4 => 'sebastianbergmann\\comparator\\getexpectedasstring', + 5 => 'sebastianbergmann\\comparator\\getdiff', + 6 => 'sebastianbergmann\\comparator\\tostring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/SplObjectStorageComparator.php' => + array ( + 0 => '6e0c145073b555753c9408146a1c7299eba60176', + 1 => + array ( + 0 => 'sebastianbergmann\\comparator\\splobjectstoragecomparator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\comparator\\accepts', + 1 => 'sebastianbergmann\\comparator\\assertequals', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/81/a1/81a1fa3b4156ce369a2fd146a9dc25f914a32e26.php b/build/phpstan/cache/PHPStan/81/a1/81a1fa3b4156ce369a2fd146a9dc25f914a32e26.php new file mode 100644 index 0000000..bed7cd9 --- /dev/null +++ b/build/phpstan/cache/PHPStan/81/a1/81a1fa3b4156ce369a2fd146a9dc25f914a32e26.php @@ -0,0 +1,874 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/Email.php' => + array ( + 0 => '63d916ed4e74bd595a1d493d48dc4f2f371ed19d', + 1 => + array ( + 0 => 'phario\\manifest\\email', + ), + 2 => + array ( + 0 => 'phario\\manifest\\__construct', + 1 => 'phario\\manifest\\asstring', + 2 => 'phario\\manifest\\ensureemailisvalid', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/PhpVersionRequirement.php' => + array ( + 0 => '589b4bcdfff40e61638ecd681ac2e0fdcdd80793', + 1 => + array ( + 0 => 'phario\\manifest\\phpversionrequirement', + ), + 2 => + array ( + 0 => 'phario\\manifest\\__construct', + 1 => 'phario\\manifest\\getversionconstraint', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/Application.php' => + array ( + 0 => '06447031ef7ac0849754e58edae536dd1e629e81', + 1 => + array ( + 0 => 'phario\\manifest\\application', + ), + 2 => + array ( + 0 => 'phario\\manifest\\isapplication', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/RequirementCollectionIterator.php' => + array ( + 0 => '56b68dd6378f3921dcc067749c42085822cdecc1', + 1 => + array ( + 0 => 'phario\\manifest\\requirementcollectioniterator', + ), + 2 => + array ( + 0 => 'phario\\manifest\\__construct', + 1 => 'phario\\manifest\\rewind', + 2 => 'phario\\manifest\\valid', + 3 => 'phario\\manifest\\key', + 4 => 'phario\\manifest\\current', + 5 => 'phario\\manifest\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/AuthorCollectionIterator.php' => + array ( + 0 => 'd680e39a6304af6327d9f88ff5cfb27ea13156a3', + 1 => + array ( + 0 => 'phario\\manifest\\authorcollectioniterator', + ), + 2 => + array ( + 0 => 'phario\\manifest\\__construct', + 1 => 'phario\\manifest\\rewind', + 2 => 'phario\\manifest\\valid', + 3 => 'phario\\manifest\\key', + 4 => 'phario\\manifest\\current', + 5 => 'phario\\manifest\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/Type.php' => + array ( + 0 => 'ebd205ced6e357993f7aafbcd4a106f5dee20cd4', + 1 => + array ( + 0 => 'phario\\manifest\\type', + ), + 2 => + array ( + 0 => 'phario\\manifest\\application', + 1 => 'phario\\manifest\\library', + 2 => 'phario\\manifest\\extension', + 3 => 'phario\\manifest\\isapplication', + 4 => 'phario\\manifest\\islibrary', + 5 => 'phario\\manifest\\isextension', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/Library.php' => + array ( + 0 => 'b9f514f0833c69bfd34defce801dfe621e30ee7b', + 1 => + array ( + 0 => 'phario\\manifest\\library', + ), + 2 => + array ( + 0 => 'phario\\manifest\\islibrary', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/ApplicationName.php' => + array ( + 0 => '3bb7ab1a774c4f98cf64c98f1a48efdbd7160bef', + 1 => + array ( + 0 => 'phario\\manifest\\applicationname', + ), + 2 => + array ( + 0 => 'phario\\manifest\\__construct', + 1 => 'phario\\manifest\\asstring', + 2 => 'phario\\manifest\\isequal', + 3 => 'phario\\manifest\\ensurevalidformat', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/PhpExtensionRequirement.php' => + array ( + 0 => '812db9b82bf3018271075af363b374a5f16dc5e4', + 1 => + array ( + 0 => 'phario\\manifest\\phpextensionrequirement', + ), + 2 => + array ( + 0 => 'phario\\manifest\\__construct', + 1 => 'phario\\manifest\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/Manifest.php' => + array ( + 0 => 'fbc0777620ac7a7a6c9b4dff739977917282c625', + 1 => + array ( + 0 => 'phario\\manifest\\manifest', + ), + 2 => + array ( + 0 => 'phario\\manifest\\__construct', + 1 => 'phario\\manifest\\getname', + 2 => 'phario\\manifest\\getversion', + 3 => 'phario\\manifest\\gettype', + 4 => 'phario\\manifest\\getcopyrightinformation', + 5 => 'phario\\manifest\\getrequirements', + 6 => 'phario\\manifest\\getbundledcomponents', + 7 => 'phario\\manifest\\isapplication', + 8 => 'phario\\manifest\\islibrary', + 9 => 'phario\\manifest\\isextension', + 10 => 'phario\\manifest\\isextensionfor', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/Url.php' => + array ( + 0 => 'e4f2e6c67098ec7ba62102cffc7e049c57e1c10c', + 1 => + array ( + 0 => 'phario\\manifest\\url', + ), + 2 => + array ( + 0 => 'phario\\manifest\\__construct', + 1 => 'phario\\manifest\\asstring', + 2 => 'phario\\manifest\\ensureurlisvalid', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/RequirementCollection.php' => + array ( + 0 => '793303ae56df80a464fa91209faf5aff6ba94182', + 1 => + array ( + 0 => 'phario\\manifest\\requirementcollection', + ), + 2 => + array ( + 0 => 'phario\\manifest\\add', + 1 => 'phario\\manifest\\getrequirements', + 2 => 'phario\\manifest\\count', + 3 => 'phario\\manifest\\getiterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/License.php' => + array ( + 0 => '40e4c6c32047d7ebebeb5c797aef3616787b6fed', + 1 => + array ( + 0 => 'phario\\manifest\\license', + ), + 2 => + array ( + 0 => 'phario\\manifest\\__construct', + 1 => 'phario\\manifest\\getname', + 2 => 'phario\\manifest\\geturl', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/AuthorCollection.php' => + array ( + 0 => '96fb640e67cac90da0d73666c57af789918e3e0c', + 1 => + array ( + 0 => 'phario\\manifest\\authorcollection', + ), + 2 => + array ( + 0 => 'phario\\manifest\\add', + 1 => 'phario\\manifest\\getauthors', + 2 => 'phario\\manifest\\count', + 3 => 'phario\\manifest\\getiterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/BundledComponent.php' => + array ( + 0 => '38199fce4165b953005fd3d84994e8959a6c6a64', + 1 => + array ( + 0 => 'phario\\manifest\\bundledcomponent', + ), + 2 => + array ( + 0 => 'phario\\manifest\\__construct', + 1 => 'phario\\manifest\\getname', + 2 => 'phario\\manifest\\getversion', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/Extension.php' => + array ( + 0 => '4a74ef0f6e6f4775c4c5e36dd08211b3e974f754', + 1 => + array ( + 0 => 'phario\\manifest\\extension', + ), + 2 => + array ( + 0 => 'phario\\manifest\\__construct', + 1 => 'phario\\manifest\\getapplicationname', + 2 => 'phario\\manifest\\getversionconstraint', + 3 => 'phario\\manifest\\isextension', + 4 => 'phario\\manifest\\isextensionfor', + 5 => 'phario\\manifest\\iscompatiblewith', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/BundledComponentCollectionIterator.php' => + array ( + 0 => 'dac56785e130b4a51b2bc06ac1eab11ae6c27d7f', + 1 => + array ( + 0 => 'phario\\manifest\\bundledcomponentcollectioniterator', + ), + 2 => + array ( + 0 => 'phario\\manifest\\__construct', + 1 => 'phario\\manifest\\rewind', + 2 => 'phario\\manifest\\valid', + 3 => 'phario\\manifest\\key', + 4 => 'phario\\manifest\\current', + 5 => 'phario\\manifest\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/CopyrightInformation.php' => + array ( + 0 => '148cf8cd44a6e765c14b98c82a985aa442d32234', + 1 => + array ( + 0 => 'phario\\manifest\\copyrightinformation', + ), + 2 => + array ( + 0 => 'phario\\manifest\\__construct', + 1 => 'phario\\manifest\\getauthors', + 2 => 'phario\\manifest\\getlicense', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/Author.php' => + array ( + 0 => '55a18f897867cce128f41864b9664cc32271b15f', + 1 => + array ( + 0 => 'phario\\manifest\\author', + ), + 2 => + array ( + 0 => 'phario\\manifest\\__construct', + 1 => 'phario\\manifest\\asstring', + 2 => 'phario\\manifest\\getname', + 3 => 'phario\\manifest\\hasemail', + 4 => 'phario\\manifest\\getemail', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/Requirement.php' => + array ( + 0 => '49a53487001667fdb73eb8a08d61276ab60d5463', + 1 => + array ( + 0 => 'phario\\manifest\\requirement', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/BundledComponentCollection.php' => + array ( + 0 => 'f17eb75212ef6057872535b531de6d5b1717cc5c', + 1 => + array ( + 0 => 'phario\\manifest\\bundledcomponentcollection', + ), + 2 => + array ( + 0 => 'phario\\manifest\\add', + 1 => 'phario\\manifest\\getbundledcomponents', + 2 => 'phario\\manifest\\count', + 3 => 'phario\\manifest\\getiterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/ManifestLoaderException.php' => + array ( + 0 => '280709d0018d8c65f0ab2a76b50200e1297dfea6', + 1 => + array ( + 0 => 'phario\\manifest\\manifestloaderexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/NoEmailAddressException.php' => + array ( + 0 => 'a4f08c6ae9c1c46d47199c389944cc087503596a', + 1 => + array ( + 0 => 'phario\\manifest\\noemailaddressexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/ManifestDocumentException.php' => + array ( + 0 => 'f0a9a3c6d1a4e1a2fe17b15b458098fec19a7649', + 1 => + array ( + 0 => 'phario\\manifest\\manifestdocumentexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php' => + array ( + 0 => '87d442f19a4229e9425b13cc22438fa5fa828db2', + 1 => + array ( + 0 => 'phario\\manifest\\invalidapplicationnameexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php' => + array ( + 0 => '4eaff5364c264e932616a528b12152514d4476a4', + 1 => + array ( + 0 => 'phario\\manifest\\manifestdocumentmapperexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/ManifestElementException.php' => + array ( + 0 => 'a478db1db4a8f6883219a443eb000a0546500876', + 1 => + array ( + 0 => 'phario\\manifest\\manifestelementexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/InvalidEmailException.php' => + array ( + 0 => '19dda893ff582f4a491394e6ba428286414a800d', + 1 => + array ( + 0 => 'phario\\manifest\\invalidemailexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/InvalidUrlException.php' => + array ( + 0 => '5f3829973998ee02f339bfc2dc2b0b3b12c8b306', + 1 => + array ( + 0 => 'phario\\manifest\\invalidurlexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/ManifestDocumentLoadingException.php' => + array ( + 0 => '67f23286df445a69a821f28df8049899e7c5a190', + 1 => + array ( + 0 => 'phario\\manifest\\manifestdocumentloadingexception', + ), + 2 => + array ( + 0 => 'phario\\manifest\\__construct', + 1 => 'phario\\manifest\\getlibxmlerrors', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/Exception.php' => + array ( + 0 => '456e70315a2bf3c9cdbbe707cb915b49c34562ca', + 1 => + array ( + 0 => 'phario\\manifest\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/ElementCollectionException.php' => + array ( + 0 => '56abfecae7166f594af97d8c2fb992986df0fa66', + 1 => + array ( + 0 => 'phario\\manifest\\elementcollectionexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/ContainsElement.php' => + array ( + 0 => 'fbc43ebcfa6562929a2d1dbed387fc466f5709de', + 1 => + array ( + 0 => 'phario\\manifest\\containselement', + ), + 2 => + array ( + 0 => 'phario\\manifest\\getname', + 1 => 'phario\\manifest\\getversion', + 2 => 'phario\\manifest\\gettype', + 3 => 'phario\\manifest\\getextensionelement', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/LicenseElement.php' => + array ( + 0 => '83fa93aca916c05e9ac53ffb94580fe7cd887cf5', + 1 => + array ( + 0 => 'phario\\manifest\\licenseelement', + ), + 2 => + array ( + 0 => 'phario\\manifest\\gettype', + 1 => 'phario\\manifest\\geturl', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/ComponentElement.php' => + array ( + 0 => 'edc677abdbecd27c31ec0586cfcccef9a8b60f24', + 1 => + array ( + 0 => 'phario\\manifest\\componentelement', + ), + 2 => + array ( + 0 => 'phario\\manifest\\getname', + 1 => 'phario\\manifest\\getversion', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/PhpElement.php' => + array ( + 0 => '792e281bfea9b182f000984ba4524eeaef4845bb', + 1 => + array ( + 0 => 'phario\\manifest\\phpelement', + ), + 2 => + array ( + 0 => 'phario\\manifest\\getversion', + 1 => 'phario\\manifest\\hasextelements', + 2 => 'phario\\manifest\\getextelements', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/ExtElementCollection.php' => + array ( + 0 => '92122645f5c18247b6820b0e1c082c3afe792fca', + 1 => + array ( + 0 => 'phario\\manifest\\extelementcollection', + ), + 2 => + array ( + 0 => 'phario\\manifest\\current', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/AuthorElement.php' => + array ( + 0 => '6e82b49f997b391f824a2106f7424de070be806a', + 1 => + array ( + 0 => 'phario\\manifest\\authorelement', + ), + 2 => + array ( + 0 => 'phario\\manifest\\getname', + 1 => 'phario\\manifest\\getemail', + 2 => 'phario\\manifest\\hasemail', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/ElementCollection.php' => + array ( + 0 => '4c9d3243758e99f4320ed518542b8b43ea61be6e', + 1 => + array ( + 0 => 'phario\\manifest\\elementcollection', + ), + 2 => + array ( + 0 => 'phario\\manifest\\__construct', + 1 => 'phario\\manifest\\current', + 2 => 'phario\\manifest\\next', + 3 => 'phario\\manifest\\key', + 4 => 'phario\\manifest\\valid', + 5 => 'phario\\manifest\\rewind', + 6 => 'phario\\manifest\\getcurrentelement', + 7 => 'phario\\manifest\\importnodes', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/ManifestDocument.php' => + array ( + 0 => 'e44d0e1be939cd8877d80c915cfadf21f8461644', + 1 => + array ( + 0 => 'phario\\manifest\\manifestdocument', + ), + 2 => + array ( + 0 => 'phario\\manifest\\fromfile', + 1 => 'phario\\manifest\\fromstring', + 2 => 'phario\\manifest\\__construct', + 3 => 'phario\\manifest\\getcontainselement', + 4 => 'phario\\manifest\\getcopyrightelement', + 5 => 'phario\\manifest\\getrequireselement', + 6 => 'phario\\manifest\\hasbundleselement', + 7 => 'phario\\manifest\\getbundleselement', + 8 => 'phario\\manifest\\ensurecorrectdocumenttype', + 9 => 'phario\\manifest\\fetchelementbyname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/BundlesElement.php' => + array ( + 0 => '465e2d00393cca9f7a403b6cb29c6c9ac5220b7d', + 1 => + array ( + 0 => 'phario\\manifest\\bundleselement', + ), + 2 => + array ( + 0 => 'phario\\manifest\\getcomponentelements', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/AuthorElementCollection.php' => + array ( + 0 => '1ff26f3fa73beb5afe705b5bab7dcd8ec62206e2', + 1 => + array ( + 0 => 'phario\\manifest\\authorelementcollection', + ), + 2 => + array ( + 0 => 'phario\\manifest\\current', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/ComponentElementCollection.php' => + array ( + 0 => '6e2aacb95068e468a753fae0e362eef6f6fb21ad', + 1 => + array ( + 0 => 'phario\\manifest\\componentelementcollection', + ), + 2 => + array ( + 0 => 'phario\\manifest\\current', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/CopyrightElement.php' => + array ( + 0 => 'd01043027c0e7b5fd73596813a568446c913f620', + 1 => + array ( + 0 => 'phario\\manifest\\copyrightelement', + ), + 2 => + array ( + 0 => 'phario\\manifest\\getauthorelements', + 1 => 'phario\\manifest\\getlicenseelement', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/ExtElement.php' => + array ( + 0 => '7ea8e93026621771fe55c348f70ea489166ee528', + 1 => + array ( + 0 => 'phario\\manifest\\extelement', + ), + 2 => + array ( + 0 => 'phario\\manifest\\getname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/RequiresElement.php' => + array ( + 0 => 'b73126f1c54b58214ce5042e46a89069a85f0bc6', + 1 => + array ( + 0 => 'phario\\manifest\\requireselement', + ), + 2 => + array ( + 0 => 'phario\\manifest\\getphpelement', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/ExtensionElement.php' => + array ( + 0 => '58a7c3f2631789f243661cde8c034a118c3248fa', + 1 => + array ( + 0 => 'phario\\manifest\\extensionelement', + ), + 2 => + array ( + 0 => 'phario\\manifest\\getfor', + 1 => 'phario\\manifest\\getcompatible', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/ManifestElement.php' => + array ( + 0 => 'b25bc3045bdfc4e0fc33860ee1321bdef0a3aa63', + 1 => + array ( + 0 => 'phario\\manifest\\manifestelement', + ), + 2 => + array ( + 0 => 'phario\\manifest\\__construct', + 1 => 'phario\\manifest\\getattributevalue', + 2 => 'phario\\manifest\\hasattribute', + 3 => 'phario\\manifest\\getchildbyname', + 4 => 'phario\\manifest\\getchildrenbyname', + 5 => 'phario\\manifest\\haschild', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/ManifestSerializer.php' => + array ( + 0 => '2b5e0c2dfa9dd7e05f7c722f232b586b1e11cd54', + 1 => + array ( + 0 => 'phario\\manifest\\manifestserializer', + ), + 2 => + array ( + 0 => 'phario\\manifest\\serializetofile', + 1 => 'phario\\manifest\\serializetostring', + 2 => 'phario\\manifest\\startdocument', + 3 => 'phario\\manifest\\finishdocument', + 4 => 'phario\\manifest\\addcontains', + 5 => 'phario\\manifest\\addcopyright', + 6 => 'phario\\manifest\\addrequirements', + 7 => 'phario\\manifest\\addbundles', + 8 => 'phario\\manifest\\addextension', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/ManifestLoader.php' => + array ( + 0 => '49b9e9105ef820ed5441756d35d5c94c4d4588bb', + 1 => + array ( + 0 => 'phario\\manifest\\manifestloader', + ), + 2 => + array ( + 0 => 'phario\\manifest\\fromfile', + 1 => 'phario\\manifest\\fromphar', + 2 => 'phario\\manifest\\fromstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/ManifestDocumentMapper.php' => + array ( + 0 => '1bc21e8d302c08b4af060481b9ccd627445f480a', + 1 => + array ( + 0 => 'phario\\manifest\\manifestdocumentmapper', + ), + 2 => + array ( + 0 => 'phario\\manifest\\map', + 1 => 'phario\\manifest\\maptype', + 2 => 'phario\\manifest\\mapcopyright', + 3 => 'phario\\manifest\\maprequirements', + 4 => 'phario\\manifest\\mapbundledcomponents', + 5 => 'phario\\manifest\\mapextension', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/81/b7/81b79638cf7a7e2a79c39a16100dc9c8f6c789aa.php b/build/phpstan/cache/PHPStan/81/b7/81b79638cf7a7e2a79c39a16100dc9c8f6c789aa.php new file mode 100644 index 0000000..3854b0f --- /dev/null +++ b/build/phpstan/cache/PHPStan/81/b7/81b79638cf7a7e2a79c39a16100dc9c8f6c789aa.php @@ -0,0 +1,17309 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Application.php' => + array ( + 0 => 'f12414e2f75785979bf8a505c6487b6ac0826c0d', + 1 => + array ( + 0 => 'phpunit\\textui\\application', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\run', + 1 => 'phpunit\\textui\\execute', + 2 => 'phpunit\\textui\\loadbootstrapscript', + 3 => 'phpunit\\textui\\buildcliconfiguration', + 4 => 'phpunit\\textui\\loadxmlconfiguration', + 5 => 'phpunit\\textui\\buildtestsuite', + 6 => 'phpunit\\textui\\bootstrapextensions', + 7 => 'phpunit\\textui\\executecommandsthatonlyrequirecliconfiguration', + 8 => 'phpunit\\textui\\executecommandsthatdonotrequirethetestsuite', + 9 => 'phpunit\\textui\\executecommandsthatrequirethetestsuite', + 10 => 'phpunit\\textui\\writeruntimeinformation', + 11 => 'phpunit\\textui\\writepharextensioninformation', + 12 => 'phpunit\\textui\\writemessage', + 13 => 'phpunit\\textui\\writerandomseedinformation', + 14 => 'phpunit\\textui\\registerlogfilewriters', + 15 => 'phpunit\\textui\\testdoxresultcollector', + 16 => 'phpunit\\textui\\initializetestresultcache', + 17 => 'phpunit\\textui\\configurebaseline', + 18 => 'phpunit\\textui\\exitwithcrashmessage', + 19 => 'phpunit\\textui\\exitwitherrormessage', + 20 => 'phpunit\\textui\\filteredtests', + 21 => 'phpunit\\textui\\configuredeprecationtriggers', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/PhpHandler.php' => + array ( + 0 => 'e06de6a74018558d42d5b3b6299ab1f78eb460a6', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\phphandler', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\handle', + 1 => 'phpunit\\textui\\configuration\\handleincludepaths', + 2 => 'phpunit\\textui\\configuration\\handleinisettings', + 3 => 'phpunit\\textui\\configuration\\handleconstants', + 4 => 'phpunit\\textui\\configuration\\handleglobalvariables', + 5 => 'phpunit\\textui\\configuration\\handleservervariables', + 6 => 'phpunit\\textui\\configuration\\handlevariables', + 7 => 'phpunit\\textui\\configuration\\handleenvvariables', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/CodeCoverageFilterRegistry.php' => + array ( + 0 => '93e494814ef4f462a533465fc89142ebe2b51b96', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\codecoveragefilterregistry', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\instance', + 1 => 'phpunit\\textui\\configuration\\get', + 2 => 'phpunit\\textui\\configuration\\init', + 3 => 'phpunit\\textui\\configuration\\configured', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Registry.php' => + array ( + 0 => '59dd42001af798bd1a9de14b29d0b796661ce693', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\registry', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\saveto', + 1 => 'phpunit\\textui\\configuration\\loadfrom', + 2 => 'phpunit\\textui\\configuration\\get', + 3 => 'phpunit\\textui\\configuration\\init', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Builder.php' => + array ( + 0 => '7b8638a72aee54034af7b958552d735f8f9a9986', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\builder', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\build', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/Constant.php' => + array ( + 0 => '9cc606f015d2cd973f5a36d87256ed50bc4f00a2', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\constant', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\name', + 2 => 'phpunit\\textui\\configuration\\value', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/Variable.php' => + array ( + 0 => 'c2184468e3c326c7bd917f146703a6c598e2c611', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\variable', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\name', + 2 => 'phpunit\\textui\\configuration\\value', + 3 => 'phpunit\\textui\\configuration\\force', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/TestFileCollectionIterator.php' => + array ( + 0 => '9a2ce55c9f481055c59f1913dd8de414912f91e5', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\testfilecollectioniterator', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\rewind', + 2 => 'phpunit\\textui\\configuration\\valid', + 3 => 'phpunit\\textui\\configuration\\key', + 4 => 'phpunit\\textui\\configuration\\current', + 5 => 'phpunit\\textui\\configuration\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/TestSuiteCollection.php' => + array ( + 0 => '22c73257f16c4f5d873ebb3e1acee7b12c685d3f', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\testsuitecollection', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\fromarray', + 1 => 'phpunit\\textui\\configuration\\__construct', + 2 => 'phpunit\\textui\\configuration\\asarray', + 3 => 'phpunit\\textui\\configuration\\count', + 4 => 'phpunit\\textui\\configuration\\getiterator', + 5 => 'phpunit\\textui\\configuration\\isempty', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/TestFileCollection.php' => + array ( + 0 => '009ed5e4363a618110a7ce666baaf27df9d49742', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\testfilecollection', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\fromarray', + 1 => 'phpunit\\textui\\configuration\\__construct', + 2 => 'phpunit\\textui\\configuration\\asarray', + 3 => 'phpunit\\textui\\configuration\\count', + 4 => 'phpunit\\textui\\configuration\\getiterator', + 5 => 'phpunit\\textui\\configuration\\isempty', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/Group.php' => + array ( + 0 => 'b1376174bb0da1799824deff3ed84caa1974d96f', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\group', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\name', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/FilterDirectoryCollection.php' => + array ( + 0 => '07eab09e62aecf17494e9035a85f81c97bc6f38f', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\filterdirectorycollection', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\fromarray', + 1 => 'phpunit\\textui\\configuration\\__construct', + 2 => 'phpunit\\textui\\configuration\\asarray', + 3 => 'phpunit\\textui\\configuration\\count', + 4 => 'phpunit\\textui\\configuration\\notempty', + 5 => 'phpunit\\textui\\configuration\\getiterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/TestSuite.php' => + array ( + 0 => '6a01914c5ae742ab5f3dfc00e306a08b0fccb0b5', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\testsuite', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\name', + 2 => 'phpunit\\textui\\configuration\\directories', + 3 => 'phpunit\\textui\\configuration\\files', + 4 => 'phpunit\\textui\\configuration\\exclude', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/TestDirectory.php' => + array ( + 0 => '1b8ab8d24f07cb43773767bf912a247b847e85a7', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\testdirectory', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\path', + 2 => 'phpunit\\textui\\configuration\\prefix', + 3 => 'phpunit\\textui\\configuration\\suffix', + 4 => 'phpunit\\textui\\configuration\\phpversion', + 5 => 'phpunit\\textui\\configuration\\phpversionoperator', + 6 => 'phpunit\\textui\\configuration\\groups', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/VariableCollection.php' => + array ( + 0 => '25997ecadee0a9e5d5d9a6120179c72ae27cc82c', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\variablecollection', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\fromarray', + 1 => 'phpunit\\textui\\configuration\\__construct', + 2 => 'phpunit\\textui\\configuration\\asarray', + 3 => 'phpunit\\textui\\configuration\\count', + 4 => 'phpunit\\textui\\configuration\\getiterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/File.php' => + array ( + 0 => 'a7755bee2f358f907d5449360db45a52b5c267b8', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\file', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\path', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/TestSuiteCollectionIterator.php' => + array ( + 0 => 'e02748f7d3dddd8aaed82ec7d4213d3ebd053774', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\testsuitecollectioniterator', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\rewind', + 2 => 'phpunit\\textui\\configuration\\valid', + 3 => 'phpunit\\textui\\configuration\\key', + 4 => 'phpunit\\textui\\configuration\\current', + 5 => 'phpunit\\textui\\configuration\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/GroupCollectionIterator.php' => + array ( + 0 => 'd6b221d0ab441117c66dbf3d5f11347c18f5de66', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\groupcollectioniterator', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\rewind', + 2 => 'phpunit\\textui\\configuration\\valid', + 3 => 'phpunit\\textui\\configuration\\key', + 4 => 'phpunit\\textui\\configuration\\current', + 5 => 'phpunit\\textui\\configuration\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/ExtensionBootstrapCollection.php' => + array ( + 0 => '8a1df02e5bc593e011e63946b3bb085477a41358', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\extensionbootstrapcollection', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\fromarray', + 1 => 'phpunit\\textui\\configuration\\__construct', + 2 => 'phpunit\\textui\\configuration\\asarray', + 3 => 'phpunit\\textui\\configuration\\getiterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/ExtensionBootstrap.php' => + array ( + 0 => '0fc9a32009757074b70bb6263c3ddd557ef01526', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\extensionbootstrap', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\classname', + 2 => 'phpunit\\textui\\configuration\\parameters', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/GroupCollection.php' => + array ( + 0 => '08239fff9ec1956d3374dcdc91c3e634905d227c', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\groupcollection', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\fromarray', + 1 => 'phpunit\\textui\\configuration\\__construct', + 2 => 'phpunit\\textui\\configuration\\asarray', + 3 => 'phpunit\\textui\\configuration\\asarrayofstrings', + 4 => 'phpunit\\textui\\configuration\\isempty', + 5 => 'phpunit\\textui\\configuration\\getiterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/ExtensionBootstrapCollectionIterator.php' => + array ( + 0 => 'c78ea934393d6e38baeb1992339e761c9dd2ba62', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\extensionbootstrapcollectioniterator', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\rewind', + 2 => 'phpunit\\textui\\configuration\\valid', + 3 => 'phpunit\\textui\\configuration\\key', + 4 => 'phpunit\\textui\\configuration\\current', + 5 => 'phpunit\\textui\\configuration\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/VariableCollectionIterator.php' => + array ( + 0 => '0adfeed9903d96171a1dd9bc2d685d3003bb4d99', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\variablecollectioniterator', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\rewind', + 2 => 'phpunit\\textui\\configuration\\valid', + 3 => 'phpunit\\textui\\configuration\\key', + 4 => 'phpunit\\textui\\configuration\\current', + 5 => 'phpunit\\textui\\configuration\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/ConstantCollection.php' => + array ( + 0 => 'df374d843abbbc31f9921a6520cde8f749e4241b', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\constantcollection', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\fromarray', + 1 => 'phpunit\\textui\\configuration\\__construct', + 2 => 'phpunit\\textui\\configuration\\asarray', + 3 => 'phpunit\\textui\\configuration\\count', + 4 => 'phpunit\\textui\\configuration\\getiterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/TestFile.php' => + array ( + 0 => '8bcc367d25e7881cb657375f2dea360c413cf783', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\testfile', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\path', + 2 => 'phpunit\\textui\\configuration\\phpversion', + 3 => 'phpunit\\textui\\configuration\\phpversionoperator', + 4 => 'phpunit\\textui\\configuration\\groups', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/IniSettingCollection.php' => + array ( + 0 => '7190d16a952a4be882bdd22d2bdd8dd82eb6f48e', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\inisettingcollection', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\fromarray', + 1 => 'phpunit\\textui\\configuration\\__construct', + 2 => 'phpunit\\textui\\configuration\\asarray', + 3 => 'phpunit\\textui\\configuration\\count', + 4 => 'phpunit\\textui\\configuration\\getiterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/TestDirectoryCollectionIterator.php' => + array ( + 0 => '52533fb3a7cdd893455b4d110d024f9404966f70', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\testdirectorycollectioniterator', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\rewind', + 2 => 'phpunit\\textui\\configuration\\valid', + 3 => 'phpunit\\textui\\configuration\\key', + 4 => 'phpunit\\textui\\configuration\\current', + 5 => 'phpunit\\textui\\configuration\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/Directory.php' => + array ( + 0 => '6ef620ede069e553116135b0a43f71864049ee9c', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\directory', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\path', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/FileCollectionIterator.php' => + array ( + 0 => '2cd00cd64e20067edec47210a829b23e1df4437c', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\filecollectioniterator', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\rewind', + 2 => 'phpunit\\textui\\configuration\\valid', + 3 => 'phpunit\\textui\\configuration\\key', + 4 => 'phpunit\\textui\\configuration\\current', + 5 => 'phpunit\\textui\\configuration\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/TestDirectoryCollection.php' => + array ( + 0 => 'cc075651717d9afbb4401bc9734cf0f634a74df0', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\testdirectorycollection', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\fromarray', + 1 => 'phpunit\\textui\\configuration\\__construct', + 2 => 'phpunit\\textui\\configuration\\asarray', + 3 => 'phpunit\\textui\\configuration\\count', + 4 => 'phpunit\\textui\\configuration\\getiterator', + 5 => 'phpunit\\textui\\configuration\\isempty', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/FilterDirectoryCollectionIterator.php' => + array ( + 0 => '49581f2be618a3b5f2e3d139e2866692ababbb90', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\filterdirectorycollectioniterator', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\rewind', + 2 => 'phpunit\\textui\\configuration\\valid', + 3 => 'phpunit\\textui\\configuration\\key', + 4 => 'phpunit\\textui\\configuration\\current', + 5 => 'phpunit\\textui\\configuration\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/ConstantCollectionIterator.php' => + array ( + 0 => 'bc849ee37f0ae336c2048f2148e1dbe1a73d44e6', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\constantcollectioniterator', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\rewind', + 2 => 'phpunit\\textui\\configuration\\valid', + 3 => 'phpunit\\textui\\configuration\\key', + 4 => 'phpunit\\textui\\configuration\\current', + 5 => 'phpunit\\textui\\configuration\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/Source.php' => + array ( + 0 => 'a25aef7324b76b7aee27a98a91965e8c0af0166a', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\source', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\usebaseline', + 2 => 'phpunit\\textui\\configuration\\hasbaseline', + 3 => 'phpunit\\textui\\configuration\\baseline', + 4 => 'phpunit\\textui\\configuration\\includedirectories', + 5 => 'phpunit\\textui\\configuration\\includefiles', + 6 => 'phpunit\\textui\\configuration\\excludedirectories', + 7 => 'phpunit\\textui\\configuration\\excludefiles', + 8 => 'phpunit\\textui\\configuration\\notempty', + 9 => 'phpunit\\textui\\configuration\\restrictdeprecations', + 10 => 'phpunit\\textui\\configuration\\restrictnotices', + 11 => 'phpunit\\textui\\configuration\\restrictwarnings', + 12 => 'phpunit\\textui\\configuration\\ignoresuppressionofdeprecations', + 13 => 'phpunit\\textui\\configuration\\ignoresuppressionofphpdeprecations', + 14 => 'phpunit\\textui\\configuration\\ignoresuppressionoferrors', + 15 => 'phpunit\\textui\\configuration\\ignoresuppressionofnotices', + 16 => 'phpunit\\textui\\configuration\\ignoresuppressionofphpnotices', + 17 => 'phpunit\\textui\\configuration\\ignoresuppressionofwarnings', + 18 => 'phpunit\\textui\\configuration\\ignoresuppressionofphpwarnings', + 19 => 'phpunit\\textui\\configuration\\deprecationtriggers', + 20 => 'phpunit\\textui\\configuration\\ignoreselfdeprecations', + 21 => 'phpunit\\textui\\configuration\\ignoredirectdeprecations', + 22 => 'phpunit\\textui\\configuration\\ignoreindirectdeprecations', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/FileCollection.php' => + array ( + 0 => 'c856dddb3db92c14f58cfae3f8f1e3576e41da3d', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\filecollection', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\fromarray', + 1 => 'phpunit\\textui\\configuration\\__construct', + 2 => 'phpunit\\textui\\configuration\\asarray', + 3 => 'phpunit\\textui\\configuration\\count', + 4 => 'phpunit\\textui\\configuration\\notempty', + 5 => 'phpunit\\textui\\configuration\\getiterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/FilterDirectory.php' => + array ( + 0 => 'db0d0c12690ebc028fab6e094fd1bcb5407d0db1', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\filterdirectory', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\path', + 2 => 'phpunit\\textui\\configuration\\prefix', + 3 => 'phpunit\\textui\\configuration\\suffix', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/DirectoryCollectionIterator.php' => + array ( + 0 => '786c41c55aa5f27463f57aa8e11b3f0fbdecc270', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\directorycollectioniterator', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\rewind', + 2 => 'phpunit\\textui\\configuration\\valid', + 3 => 'phpunit\\textui\\configuration\\key', + 4 => 'phpunit\\textui\\configuration\\current', + 5 => 'phpunit\\textui\\configuration\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/Php.php' => + array ( + 0 => '54fe56ff63282e61955428bdb9b56866f5b26017', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\php', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\includepaths', + 2 => 'phpunit\\textui\\configuration\\inisettings', + 3 => 'phpunit\\textui\\configuration\\constants', + 4 => 'phpunit\\textui\\configuration\\globalvariables', + 5 => 'phpunit\\textui\\configuration\\envvariables', + 6 => 'phpunit\\textui\\configuration\\postvariables', + 7 => 'phpunit\\textui\\configuration\\getvariables', + 8 => 'phpunit\\textui\\configuration\\cookievariables', + 9 => 'phpunit\\textui\\configuration\\servervariables', + 10 => 'phpunit\\textui\\configuration\\filesvariables', + 11 => 'phpunit\\textui\\configuration\\requestvariables', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/IniSetting.php' => + array ( + 0 => '5cc4ce4ff91dd9439a9e1ccefc6b45e74dcaa5f9', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\inisetting', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\name', + 2 => 'phpunit\\textui\\configuration\\value', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/DirectoryCollection.php' => + array ( + 0 => '2d002f2b1de33a49486cdc80ed8ca871d8ec1d3c', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\directorycollection', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\fromarray', + 1 => 'phpunit\\textui\\configuration\\__construct', + 2 => 'phpunit\\textui\\configuration\\asarray', + 3 => 'phpunit\\textui\\configuration\\count', + 4 => 'phpunit\\textui\\configuration\\getiterator', + 5 => 'phpunit\\textui\\configuration\\isempty', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/IniSettingCollectionIterator.php' => + array ( + 0 => '111aff9c4f78fbdc6328acd21ede032970f9454b', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\inisettingcollectioniterator', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\rewind', + 2 => 'phpunit\\textui\\configuration\\valid', + 3 => 'phpunit\\textui\\configuration\\key', + 4 => 'phpunit\\textui\\configuration\\current', + 5 => 'phpunit\\textui\\configuration\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Configuration.php' => + array ( + 0 => '7cd839fe7bce66b251c52f7c89cf30960a989549', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\configuration', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\__construct', + 1 => 'phpunit\\textui\\configuration\\hascliarguments', + 2 => 'phpunit\\textui\\configuration\\cliarguments', + 3 => 'phpunit\\textui\\configuration\\hasconfigurationfile', + 4 => 'phpunit\\textui\\configuration\\configurationfile', + 5 => 'phpunit\\textui\\configuration\\hasbootstrap', + 6 => 'phpunit\\textui\\configuration\\bootstrap', + 7 => 'phpunit\\textui\\configuration\\cacheresult', + 8 => 'phpunit\\textui\\configuration\\hascachedirectory', + 9 => 'phpunit\\textui\\configuration\\cachedirectory', + 10 => 'phpunit\\textui\\configuration\\hascoveragecachedirectory', + 11 => 'phpunit\\textui\\configuration\\coveragecachedirectory', + 12 => 'phpunit\\textui\\configuration\\source', + 13 => 'phpunit\\textui\\configuration\\testresultcachefile', + 14 => 'phpunit\\textui\\configuration\\ignoredeprecatedcodeunitsfromcodecoverage', + 15 => 'phpunit\\textui\\configuration\\disablecodecoverageignore', + 16 => 'phpunit\\textui\\configuration\\pathcoverage', + 17 => 'phpunit\\textui\\configuration\\hascoveragereport', + 18 => 'phpunit\\textui\\configuration\\hascoverageclover', + 19 => 'phpunit\\textui\\configuration\\coverageclover', + 20 => 'phpunit\\textui\\configuration\\hascoveragecobertura', + 21 => 'phpunit\\textui\\configuration\\coveragecobertura', + 22 => 'phpunit\\textui\\configuration\\hascoveragecrap4j', + 23 => 'phpunit\\textui\\configuration\\coveragecrap4j', + 24 => 'phpunit\\textui\\configuration\\coveragecrap4jthreshold', + 25 => 'phpunit\\textui\\configuration\\hascoveragehtml', + 26 => 'phpunit\\textui\\configuration\\coveragehtml', + 27 => 'phpunit\\textui\\configuration\\coveragehtmllowupperbound', + 28 => 'phpunit\\textui\\configuration\\coveragehtmlhighlowerbound', + 29 => 'phpunit\\textui\\configuration\\coveragehtmlcolorsuccesslow', + 30 => 'phpunit\\textui\\configuration\\coveragehtmlcolorsuccessmedium', + 31 => 'phpunit\\textui\\configuration\\coveragehtmlcolorsuccesshigh', + 32 => 'phpunit\\textui\\configuration\\coveragehtmlcolorwarning', + 33 => 'phpunit\\textui\\configuration\\coveragehtmlcolordanger', + 34 => 'phpunit\\textui\\configuration\\hascoveragehtmlcustomcssfile', + 35 => 'phpunit\\textui\\configuration\\coveragehtmlcustomcssfile', + 36 => 'phpunit\\textui\\configuration\\hascoveragephp', + 37 => 'phpunit\\textui\\configuration\\coveragephp', + 38 => 'phpunit\\textui\\configuration\\hascoveragetext', + 39 => 'phpunit\\textui\\configuration\\coveragetext', + 40 => 'phpunit\\textui\\configuration\\coveragetextshowuncoveredfiles', + 41 => 'phpunit\\textui\\configuration\\coveragetextshowonlysummary', + 42 => 'phpunit\\textui\\configuration\\hascoveragexml', + 43 => 'phpunit\\textui\\configuration\\coveragexml', + 44 => 'phpunit\\textui\\configuration\\failondeprecation', + 45 => 'phpunit\\textui\\configuration\\failonphpunitdeprecation', + 46 => 'phpunit\\textui\\configuration\\failonemptytestsuite', + 47 => 'phpunit\\textui\\configuration\\failonincomplete', + 48 => 'phpunit\\textui\\configuration\\failonnotice', + 49 => 'phpunit\\textui\\configuration\\failonrisky', + 50 => 'phpunit\\textui\\configuration\\failonskipped', + 51 => 'phpunit\\textui\\configuration\\failonwarning', + 52 => 'phpunit\\textui\\configuration\\stopondefect', + 53 => 'phpunit\\textui\\configuration\\stopondeprecation', + 54 => 'phpunit\\textui\\configuration\\hasspecificdeprecationtostopon', + 55 => 'phpunit\\textui\\configuration\\specificdeprecationtostopon', + 56 => 'phpunit\\textui\\configuration\\stoponerror', + 57 => 'phpunit\\textui\\configuration\\stoponfailure', + 58 => 'phpunit\\textui\\configuration\\stoponincomplete', + 59 => 'phpunit\\textui\\configuration\\stoponnotice', + 60 => 'phpunit\\textui\\configuration\\stoponrisky', + 61 => 'phpunit\\textui\\configuration\\stoponskipped', + 62 => 'phpunit\\textui\\configuration\\stoponwarning', + 63 => 'phpunit\\textui\\configuration\\outputtostandarderrorstream', + 64 => 'phpunit\\textui\\configuration\\columns', + 65 => 'phpunit\\textui\\configuration\\noextensions', + 66 => 'phpunit\\textui\\configuration\\haspharextensiondirectory', + 67 => 'phpunit\\textui\\configuration\\pharextensiondirectory', + 68 => 'phpunit\\textui\\configuration\\extensionbootstrappers', + 69 => 'phpunit\\textui\\configuration\\backupglobals', + 70 => 'phpunit\\textui\\configuration\\backupstaticproperties', + 71 => 'phpunit\\textui\\configuration\\bestrictaboutchangestoglobalstate', + 72 => 'phpunit\\textui\\configuration\\colors', + 73 => 'phpunit\\textui\\configuration\\processisolation', + 74 => 'phpunit\\textui\\configuration\\enforcetimelimit', + 75 => 'phpunit\\textui\\configuration\\defaulttimelimit', + 76 => 'phpunit\\textui\\configuration\\timeoutforsmalltests', + 77 => 'phpunit\\textui\\configuration\\timeoutformediumtests', + 78 => 'phpunit\\textui\\configuration\\timeoutforlargetests', + 79 => 'phpunit\\textui\\configuration\\reportuselesstests', + 80 => 'phpunit\\textui\\configuration\\strictcoverage', + 81 => 'phpunit\\textui\\configuration\\disallowtestoutput', + 82 => 'phpunit\\textui\\configuration\\displaydetailsonincompletetests', + 83 => 'phpunit\\textui\\configuration\\displaydetailsonskippedtests', + 84 => 'phpunit\\textui\\configuration\\displaydetailsonteststhattriggerdeprecations', + 85 => 'phpunit\\textui\\configuration\\displaydetailsonphpunitdeprecations', + 86 => 'phpunit\\textui\\configuration\\displaydetailsonteststhattriggererrors', + 87 => 'phpunit\\textui\\configuration\\displaydetailsonteststhattriggernotices', + 88 => 'phpunit\\textui\\configuration\\displaydetailsonteststhattriggerwarnings', + 89 => 'phpunit\\textui\\configuration\\reversedefectlist', + 90 => 'phpunit\\textui\\configuration\\requirecoveragemetadata', + 91 => 'phpunit\\textui\\configuration\\noprogress', + 92 => 'phpunit\\textui\\configuration\\noresults', + 93 => 'phpunit\\textui\\configuration\\nooutput', + 94 => 'phpunit\\textui\\configuration\\executionorder', + 95 => 'phpunit\\textui\\configuration\\executionorderdefects', + 96 => 'phpunit\\textui\\configuration\\resolvedependencies', + 97 => 'phpunit\\textui\\configuration\\haslogfileteamcity', + 98 => 'phpunit\\textui\\configuration\\logfileteamcity', + 99 => 'phpunit\\textui\\configuration\\haslogfilejunit', + 100 => 'phpunit\\textui\\configuration\\logfilejunit', + 101 => 'phpunit\\textui\\configuration\\haslogfiletestdoxhtml', + 102 => 'phpunit\\textui\\configuration\\logfiletestdoxhtml', + 103 => 'phpunit\\textui\\configuration\\haslogfiletestdoxtext', + 104 => 'phpunit\\textui\\configuration\\logfiletestdoxtext', + 105 => 'phpunit\\textui\\configuration\\haslogeventstext', + 106 => 'phpunit\\textui\\configuration\\logeventstext', + 107 => 'phpunit\\textui\\configuration\\haslogeventsverbosetext', + 108 => 'phpunit\\textui\\configuration\\logeventsverbosetext', + 109 => 'phpunit\\textui\\configuration\\outputisteamcity', + 110 => 'phpunit\\textui\\configuration\\outputistestdox', + 111 => 'phpunit\\textui\\configuration\\testdoxoutputwithsummary', + 112 => 'phpunit\\textui\\configuration\\hastestscovering', + 113 => 'phpunit\\textui\\configuration\\testscovering', + 114 => 'phpunit\\textui\\configuration\\hastestsusing', + 115 => 'phpunit\\textui\\configuration\\testsusing', + 116 => 'phpunit\\textui\\configuration\\hastestsrequiringphpextension', + 117 => 'phpunit\\textui\\configuration\\testsrequiringphpextension', + 118 => 'phpunit\\textui\\configuration\\hasfilter', + 119 => 'phpunit\\textui\\configuration\\filter', + 120 => 'phpunit\\textui\\configuration\\hasexcludefilter', + 121 => 'phpunit\\textui\\configuration\\excludefilter', + 122 => 'phpunit\\textui\\configuration\\hasgroups', + 123 => 'phpunit\\textui\\configuration\\groups', + 124 => 'phpunit\\textui\\configuration\\hasexcludegroups', + 125 => 'phpunit\\textui\\configuration\\excludegroups', + 126 => 'phpunit\\textui\\configuration\\randomorderseed', + 127 => 'phpunit\\textui\\configuration\\includeuncoveredfiles', + 128 => 'phpunit\\textui\\configuration\\testsuite', + 129 => 'phpunit\\textui\\configuration\\includetestsuite', + 130 => 'phpunit\\textui\\configuration\\excludetestsuite', + 131 => 'phpunit\\textui\\configuration\\hasdefaulttestsuite', + 132 => 'phpunit\\textui\\configuration\\defaulttestsuite', + 133 => 'phpunit\\textui\\configuration\\testsuffixes', + 134 => 'phpunit\\textui\\configuration\\php', + 135 => 'phpunit\\textui\\configuration\\controlgarbagecollector', + 136 => 'phpunit\\textui\\configuration\\numberoftestsbeforegarbagecollection', + 137 => 'phpunit\\textui\\configuration\\hasgeneratebaseline', + 138 => 'phpunit\\textui\\configuration\\generatebaseline', + 139 => 'phpunit\\textui\\configuration\\debug', + 140 => 'phpunit\\textui\\configuration\\shortenarraysforexportthreshold', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Cli/Builder.php' => + array ( + 0 => '299d1c598668b0ea5ed4622ca3fcfbb3dcca9357', + 1 => + array ( + 0 => 'phpunit\\textui\\cliarguments\\builder', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\cliarguments\\fromparameters', + 1 => 'phpunit\\textui\\cliarguments\\markprocessed', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Cli/Configuration.php' => + array ( + 0 => '4390757920a44f504441e433391d0dacfb894f15', + 1 => + array ( + 0 => 'phpunit\\textui\\cliarguments\\configuration', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\cliarguments\\__construct', + 1 => 'phpunit\\textui\\cliarguments\\arguments', + 2 => 'phpunit\\textui\\cliarguments\\hasatleastversion', + 3 => 'phpunit\\textui\\cliarguments\\atleastversion', + 4 => 'phpunit\\textui\\cliarguments\\hasbackupglobals', + 5 => 'phpunit\\textui\\cliarguments\\backupglobals', + 6 => 'phpunit\\textui\\cliarguments\\hasbackupstaticproperties', + 7 => 'phpunit\\textui\\cliarguments\\backupstaticproperties', + 8 => 'phpunit\\textui\\cliarguments\\hasbestrictaboutchangestoglobalstate', + 9 => 'phpunit\\textui\\cliarguments\\bestrictaboutchangestoglobalstate', + 10 => 'phpunit\\textui\\cliarguments\\hasbootstrap', + 11 => 'phpunit\\textui\\cliarguments\\bootstrap', + 12 => 'phpunit\\textui\\cliarguments\\hascachedirectory', + 13 => 'phpunit\\textui\\cliarguments\\cachedirectory', + 14 => 'phpunit\\textui\\cliarguments\\hascacheresult', + 15 => 'phpunit\\textui\\cliarguments\\cacheresult', + 16 => 'phpunit\\textui\\cliarguments\\checkversion', + 17 => 'phpunit\\textui\\cliarguments\\hascolors', + 18 => 'phpunit\\textui\\cliarguments\\colors', + 19 => 'phpunit\\textui\\cliarguments\\hascolumns', + 20 => 'phpunit\\textui\\cliarguments\\columns', + 21 => 'phpunit\\textui\\cliarguments\\hasconfigurationfile', + 22 => 'phpunit\\textui\\cliarguments\\configurationfile', + 23 => 'phpunit\\textui\\cliarguments\\hascoveragefilter', + 24 => 'phpunit\\textui\\cliarguments\\coveragefilter', + 25 => 'phpunit\\textui\\cliarguments\\hascoverageclover', + 26 => 'phpunit\\textui\\cliarguments\\coverageclover', + 27 => 'phpunit\\textui\\cliarguments\\hascoveragecobertura', + 28 => 'phpunit\\textui\\cliarguments\\coveragecobertura', + 29 => 'phpunit\\textui\\cliarguments\\hascoveragecrap4j', + 30 => 'phpunit\\textui\\cliarguments\\coveragecrap4j', + 31 => 'phpunit\\textui\\cliarguments\\hascoveragehtml', + 32 => 'phpunit\\textui\\cliarguments\\coveragehtml', + 33 => 'phpunit\\textui\\cliarguments\\hascoveragephp', + 34 => 'phpunit\\textui\\cliarguments\\coveragephp', + 35 => 'phpunit\\textui\\cliarguments\\hascoveragetext', + 36 => 'phpunit\\textui\\cliarguments\\coveragetext', + 37 => 'phpunit\\textui\\cliarguments\\hascoveragetextshowuncoveredfiles', + 38 => 'phpunit\\textui\\cliarguments\\coveragetextshowuncoveredfiles', + 39 => 'phpunit\\textui\\cliarguments\\hascoveragetextshowonlysummary', + 40 => 'phpunit\\textui\\cliarguments\\coveragetextshowonlysummary', + 41 => 'phpunit\\textui\\cliarguments\\hascoveragexml', + 42 => 'phpunit\\textui\\cliarguments\\coveragexml', + 43 => 'phpunit\\textui\\cliarguments\\haspathcoverage', + 44 => 'phpunit\\textui\\cliarguments\\pathcoverage', + 45 => 'phpunit\\textui\\cliarguments\\warmcoveragecache', + 46 => 'phpunit\\textui\\cliarguments\\hasdefaulttimelimit', + 47 => 'phpunit\\textui\\cliarguments\\defaulttimelimit', + 48 => 'phpunit\\textui\\cliarguments\\hasdisablecodecoverageignore', + 49 => 'phpunit\\textui\\cliarguments\\disablecodecoverageignore', + 50 => 'phpunit\\textui\\cliarguments\\hasdisallowtestoutput', + 51 => 'phpunit\\textui\\cliarguments\\disallowtestoutput', + 52 => 'phpunit\\textui\\cliarguments\\hasenforcetimelimit', + 53 => 'phpunit\\textui\\cliarguments\\enforcetimelimit', + 54 => 'phpunit\\textui\\cliarguments\\hasexcludegroups', + 55 => 'phpunit\\textui\\cliarguments\\excludegroups', + 56 => 'phpunit\\textui\\cliarguments\\hasexecutionorder', + 57 => 'phpunit\\textui\\cliarguments\\executionorder', + 58 => 'phpunit\\textui\\cliarguments\\hasexecutionorderdefects', + 59 => 'phpunit\\textui\\cliarguments\\executionorderdefects', + 60 => 'phpunit\\textui\\cliarguments\\hasfailondeprecation', + 61 => 'phpunit\\textui\\cliarguments\\failondeprecation', + 62 => 'phpunit\\textui\\cliarguments\\hasfailonphpunitdeprecation', + 63 => 'phpunit\\textui\\cliarguments\\failonphpunitdeprecation', + 64 => 'phpunit\\textui\\cliarguments\\hasfailonemptytestsuite', + 65 => 'phpunit\\textui\\cliarguments\\failonemptytestsuite', + 66 => 'phpunit\\textui\\cliarguments\\hasfailonincomplete', + 67 => 'phpunit\\textui\\cliarguments\\failonincomplete', + 68 => 'phpunit\\textui\\cliarguments\\hasfailonnotice', + 69 => 'phpunit\\textui\\cliarguments\\failonnotice', + 70 => 'phpunit\\textui\\cliarguments\\hasfailonrisky', + 71 => 'phpunit\\textui\\cliarguments\\failonrisky', + 72 => 'phpunit\\textui\\cliarguments\\hasfailonskipped', + 73 => 'phpunit\\textui\\cliarguments\\failonskipped', + 74 => 'phpunit\\textui\\cliarguments\\hasfailonwarning', + 75 => 'phpunit\\textui\\cliarguments\\failonwarning', + 76 => 'phpunit\\textui\\cliarguments\\hasstopondefect', + 77 => 'phpunit\\textui\\cliarguments\\stopondefect', + 78 => 'phpunit\\textui\\cliarguments\\hasstopondeprecation', + 79 => 'phpunit\\textui\\cliarguments\\stopondeprecation', + 80 => 'phpunit\\textui\\cliarguments\\hasspecificdeprecationtostopon', + 81 => 'phpunit\\textui\\cliarguments\\specificdeprecationtostopon', + 82 => 'phpunit\\textui\\cliarguments\\hasstoponerror', + 83 => 'phpunit\\textui\\cliarguments\\stoponerror', + 84 => 'phpunit\\textui\\cliarguments\\hasstoponfailure', + 85 => 'phpunit\\textui\\cliarguments\\stoponfailure', + 86 => 'phpunit\\textui\\cliarguments\\hasstoponincomplete', + 87 => 'phpunit\\textui\\cliarguments\\stoponincomplete', + 88 => 'phpunit\\textui\\cliarguments\\hasstoponnotice', + 89 => 'phpunit\\textui\\cliarguments\\stoponnotice', + 90 => 'phpunit\\textui\\cliarguments\\hasstoponrisky', + 91 => 'phpunit\\textui\\cliarguments\\stoponrisky', + 92 => 'phpunit\\textui\\cliarguments\\hasstoponskipped', + 93 => 'phpunit\\textui\\cliarguments\\stoponskipped', + 94 => 'phpunit\\textui\\cliarguments\\hasstoponwarning', + 95 => 'phpunit\\textui\\cliarguments\\stoponwarning', + 96 => 'phpunit\\textui\\cliarguments\\hasexcludefilter', + 97 => 'phpunit\\textui\\cliarguments\\excludefilter', + 98 => 'phpunit\\textui\\cliarguments\\hasfilter', + 99 => 'phpunit\\textui\\cliarguments\\filter', + 100 => 'phpunit\\textui\\cliarguments\\hasgeneratebaseline', + 101 => 'phpunit\\textui\\cliarguments\\generatebaseline', + 102 => 'phpunit\\textui\\cliarguments\\hasusebaseline', + 103 => 'phpunit\\textui\\cliarguments\\usebaseline', + 104 => 'phpunit\\textui\\cliarguments\\ignorebaseline', + 105 => 'phpunit\\textui\\cliarguments\\generateconfiguration', + 106 => 'phpunit\\textui\\cliarguments\\migrateconfiguration', + 107 => 'phpunit\\textui\\cliarguments\\hasgroups', + 108 => 'phpunit\\textui\\cliarguments\\groups', + 109 => 'phpunit\\textui\\cliarguments\\hastestscovering', + 110 => 'phpunit\\textui\\cliarguments\\testscovering', + 111 => 'phpunit\\textui\\cliarguments\\hastestsusing', + 112 => 'phpunit\\textui\\cliarguments\\testsusing', + 113 => 'phpunit\\textui\\cliarguments\\hastestsrequiringphpextension', + 114 => 'phpunit\\textui\\cliarguments\\testsrequiringphpextension', + 115 => 'phpunit\\textui\\cliarguments\\help', + 116 => 'phpunit\\textui\\cliarguments\\hasincludepath', + 117 => 'phpunit\\textui\\cliarguments\\includepath', + 118 => 'phpunit\\textui\\cliarguments\\hasinisettings', + 119 => 'phpunit\\textui\\cliarguments\\inisettings', + 120 => 'phpunit\\textui\\cliarguments\\hasjunitlogfile', + 121 => 'phpunit\\textui\\cliarguments\\junitlogfile', + 122 => 'phpunit\\textui\\cliarguments\\listgroups', + 123 => 'phpunit\\textui\\cliarguments\\listsuites', + 124 => 'phpunit\\textui\\cliarguments\\listtestfiles', + 125 => 'phpunit\\textui\\cliarguments\\listtests', + 126 => 'phpunit\\textui\\cliarguments\\haslisttestsxml', + 127 => 'phpunit\\textui\\cliarguments\\listtestsxml', + 128 => 'phpunit\\textui\\cliarguments\\hasnocoverage', + 129 => 'phpunit\\textui\\cliarguments\\nocoverage', + 130 => 'phpunit\\textui\\cliarguments\\hasnoextensions', + 131 => 'phpunit\\textui\\cliarguments\\noextensions', + 132 => 'phpunit\\textui\\cliarguments\\hasnooutput', + 133 => 'phpunit\\textui\\cliarguments\\nooutput', + 134 => 'phpunit\\textui\\cliarguments\\hasnoprogress', + 135 => 'phpunit\\textui\\cliarguments\\noprogress', + 136 => 'phpunit\\textui\\cliarguments\\hasnoresults', + 137 => 'phpunit\\textui\\cliarguments\\noresults', + 138 => 'phpunit\\textui\\cliarguments\\hasnologging', + 139 => 'phpunit\\textui\\cliarguments\\nologging', + 140 => 'phpunit\\textui\\cliarguments\\hasprocessisolation', + 141 => 'phpunit\\textui\\cliarguments\\processisolation', + 142 => 'phpunit\\textui\\cliarguments\\hasrandomorderseed', + 143 => 'phpunit\\textui\\cliarguments\\randomorderseed', + 144 => 'phpunit\\textui\\cliarguments\\hasreportuselesstests', + 145 => 'phpunit\\textui\\cliarguments\\reportuselesstests', + 146 => 'phpunit\\textui\\cliarguments\\hasresolvedependencies', + 147 => 'phpunit\\textui\\cliarguments\\resolvedependencies', + 148 => 'phpunit\\textui\\cliarguments\\hasreverselist', + 149 => 'phpunit\\textui\\cliarguments\\reverselist', + 150 => 'phpunit\\textui\\cliarguments\\hasstderr', + 151 => 'phpunit\\textui\\cliarguments\\stderr', + 152 => 'phpunit\\textui\\cliarguments\\hasstrictcoverage', + 153 => 'phpunit\\textui\\cliarguments\\strictcoverage', + 154 => 'phpunit\\textui\\cliarguments\\hasteamcitylogfile', + 155 => 'phpunit\\textui\\cliarguments\\teamcitylogfile', + 156 => 'phpunit\\textui\\cliarguments\\hasteamcityprinter', + 157 => 'phpunit\\textui\\cliarguments\\teamcityprinter', + 158 => 'phpunit\\textui\\cliarguments\\hastestdoxhtmlfile', + 159 => 'phpunit\\textui\\cliarguments\\testdoxhtmlfile', + 160 => 'phpunit\\textui\\cliarguments\\hastestdoxtextfile', + 161 => 'phpunit\\textui\\cliarguments\\testdoxtextfile', + 162 => 'phpunit\\textui\\cliarguments\\hastestdoxprinter', + 163 => 'phpunit\\textui\\cliarguments\\testdoxprinter', + 164 => 'phpunit\\textui\\cliarguments\\hastestdoxprintersummary', + 165 => 'phpunit\\textui\\cliarguments\\testdoxprintersummary', + 166 => 'phpunit\\textui\\cliarguments\\hastestsuffixes', + 167 => 'phpunit\\textui\\cliarguments\\testsuffixes', + 168 => 'phpunit\\textui\\cliarguments\\hastestsuite', + 169 => 'phpunit\\textui\\cliarguments\\testsuite', + 170 => 'phpunit\\textui\\cliarguments\\hasexcludedtestsuite', + 171 => 'phpunit\\textui\\cliarguments\\excludedtestsuite', + 172 => 'phpunit\\textui\\cliarguments\\usedefaultconfiguration', + 173 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonincompletetests', + 174 => 'phpunit\\textui\\cliarguments\\displaydetailsonincompletetests', + 175 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonskippedtests', + 176 => 'phpunit\\textui\\cliarguments\\displaydetailsonskippedtests', + 177 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonteststhattriggerdeprecations', + 178 => 'phpunit\\textui\\cliarguments\\displaydetailsonteststhattriggerdeprecations', + 179 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonphpunitdeprecations', + 180 => 'phpunit\\textui\\cliarguments\\displaydetailsonphpunitdeprecations', + 181 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonteststhattriggererrors', + 182 => 'phpunit\\textui\\cliarguments\\displaydetailsonteststhattriggererrors', + 183 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonteststhattriggernotices', + 184 => 'phpunit\\textui\\cliarguments\\displaydetailsonteststhattriggernotices', + 185 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonteststhattriggerwarnings', + 186 => 'phpunit\\textui\\cliarguments\\displaydetailsonteststhattriggerwarnings', + 187 => 'phpunit\\textui\\cliarguments\\version', + 188 => 'phpunit\\textui\\cliarguments\\haslogeventstext', + 189 => 'phpunit\\textui\\cliarguments\\logeventstext', + 190 => 'phpunit\\textui\\cliarguments\\haslogeventsverbosetext', + 191 => 'phpunit\\textui\\cliarguments\\logeventsverbosetext', + 192 => 'phpunit\\textui\\cliarguments\\debug', + 193 => 'phpunit\\textui\\cliarguments\\hasextensions', + 194 => 'phpunit\\textui\\cliarguments\\extensions', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Cli/XmlConfigurationFileFinder.php' => + array ( + 0 => 'd04bf271e14eab55eba299dfb45375676b53bdeb', + 1 => + array ( + 0 => 'phpunit\\textui\\cliarguments\\xmlconfigurationfilefinder', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\cliarguments\\find', + 1 => 'phpunit\\textui\\cliarguments\\configurationfileindirectory', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Cli/Exception.php' => + array ( + 0 => '0f0be4b7788e246d7417668e94d0595c58c5d94c', + 1 => + array ( + 0 => 'phpunit\\textui\\cliarguments\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Loader.php' => + array ( + 0 => 'f83d5d2eb6dbd3fcca0e58821efec5cabca3d897', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\loader', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\load', + 1 => 'phpunit\\textui\\xmlconfiguration\\logging', + 2 => 'phpunit\\textui\\xmlconfiguration\\extensions', + 3 => 'phpunit\\textui\\xmlconfiguration\\toabsolutepath', + 4 => 'phpunit\\textui\\xmlconfiguration\\source', + 5 => 'phpunit\\textui\\xmlconfiguration\\codecoverage', + 6 => 'phpunit\\textui\\xmlconfiguration\\getboolean', + 7 => 'phpunit\\textui\\xmlconfiguration\\getvalue', + 8 => 'phpunit\\textui\\xmlconfiguration\\readfilterdirectories', + 9 => 'phpunit\\textui\\xmlconfiguration\\readfilterfiles', + 10 => 'phpunit\\textui\\xmlconfiguration\\groups', + 11 => 'phpunit\\textui\\xmlconfiguration\\getbooleanattribute', + 12 => 'phpunit\\textui\\xmlconfiguration\\getintegerattribute', + 13 => 'phpunit\\textui\\xmlconfiguration\\getstringattribute', + 14 => 'phpunit\\textui\\xmlconfiguration\\getstringattributewithdefault', + 15 => 'phpunit\\textui\\xmlconfiguration\\getinteger', + 16 => 'phpunit\\textui\\xmlconfiguration\\php', + 17 => 'phpunit\\textui\\xmlconfiguration\\phpunit', + 18 => 'phpunit\\textui\\xmlconfiguration\\getcolors', + 19 => 'phpunit\\textui\\xmlconfiguration\\getcolumns', + 20 => 'phpunit\\textui\\xmlconfiguration\\testsuite', + 21 => 'phpunit\\textui\\xmlconfiguration\\gettestsuiteelements', + 22 => 'phpunit\\textui\\xmlconfiguration\\element', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/PHPUnit.php' => + array ( + 0 => 'efb7383dafd872d4d733e4326dbe8372afddf3f1', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\phpunit', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\__construct', + 1 => 'phpunit\\textui\\xmlconfiguration\\hascachedirectory', + 2 => 'phpunit\\textui\\xmlconfiguration\\cachedirectory', + 3 => 'phpunit\\textui\\xmlconfiguration\\cacheresult', + 4 => 'phpunit\\textui\\xmlconfiguration\\columns', + 5 => 'phpunit\\textui\\xmlconfiguration\\colors', + 6 => 'phpunit\\textui\\xmlconfiguration\\stderr', + 7 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonincompletetests', + 8 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonskippedtests', + 9 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonteststhattriggerdeprecations', + 10 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonphpunitdeprecations', + 11 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonteststhattriggererrors', + 12 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonteststhattriggernotices', + 13 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonteststhattriggerwarnings', + 14 => 'phpunit\\textui\\xmlconfiguration\\reversedefectlist', + 15 => 'phpunit\\textui\\xmlconfiguration\\requirecoveragemetadata', + 16 => 'phpunit\\textui\\xmlconfiguration\\hasbootstrap', + 17 => 'phpunit\\textui\\xmlconfiguration\\bootstrap', + 18 => 'phpunit\\textui\\xmlconfiguration\\processisolation', + 19 => 'phpunit\\textui\\xmlconfiguration\\failondeprecation', + 20 => 'phpunit\\textui\\xmlconfiguration\\failonphpunitdeprecation', + 21 => 'phpunit\\textui\\xmlconfiguration\\failonemptytestsuite', + 22 => 'phpunit\\textui\\xmlconfiguration\\failonincomplete', + 23 => 'phpunit\\textui\\xmlconfiguration\\failonnotice', + 24 => 'phpunit\\textui\\xmlconfiguration\\failonrisky', + 25 => 'phpunit\\textui\\xmlconfiguration\\failonskipped', + 26 => 'phpunit\\textui\\xmlconfiguration\\failonwarning', + 27 => 'phpunit\\textui\\xmlconfiguration\\stopondefect', + 28 => 'phpunit\\textui\\xmlconfiguration\\stopondeprecation', + 29 => 'phpunit\\textui\\xmlconfiguration\\stoponerror', + 30 => 'phpunit\\textui\\xmlconfiguration\\stoponfailure', + 31 => 'phpunit\\textui\\xmlconfiguration\\stoponincomplete', + 32 => 'phpunit\\textui\\xmlconfiguration\\stoponnotice', + 33 => 'phpunit\\textui\\xmlconfiguration\\stoponrisky', + 34 => 'phpunit\\textui\\xmlconfiguration\\stoponskipped', + 35 => 'phpunit\\textui\\xmlconfiguration\\stoponwarning', + 36 => 'phpunit\\textui\\xmlconfiguration\\hasextensionsdirectory', + 37 => 'phpunit\\textui\\xmlconfiguration\\extensionsdirectory', + 38 => 'phpunit\\textui\\xmlconfiguration\\bestrictaboutchangestoglobalstate', + 39 => 'phpunit\\textui\\xmlconfiguration\\bestrictaboutoutputduringtests', + 40 => 'phpunit\\textui\\xmlconfiguration\\bestrictaboutteststhatdonottestanything', + 41 => 'phpunit\\textui\\xmlconfiguration\\bestrictaboutcoveragemetadata', + 42 => 'phpunit\\textui\\xmlconfiguration\\enforcetimelimit', + 43 => 'phpunit\\textui\\xmlconfiguration\\defaulttimelimit', + 44 => 'phpunit\\textui\\xmlconfiguration\\timeoutforsmalltests', + 45 => 'phpunit\\textui\\xmlconfiguration\\timeoutformediumtests', + 46 => 'phpunit\\textui\\xmlconfiguration\\timeoutforlargetests', + 47 => 'phpunit\\textui\\xmlconfiguration\\hasdefaulttestsuite', + 48 => 'phpunit\\textui\\xmlconfiguration\\defaulttestsuite', + 49 => 'phpunit\\textui\\xmlconfiguration\\executionorder', + 50 => 'phpunit\\textui\\xmlconfiguration\\resolvedependencies', + 51 => 'phpunit\\textui\\xmlconfiguration\\defectsfirst', + 52 => 'phpunit\\textui\\xmlconfiguration\\backupglobals', + 53 => 'phpunit\\textui\\xmlconfiguration\\backupstaticproperties', + 54 => 'phpunit\\textui\\xmlconfiguration\\testdoxprinter', + 55 => 'phpunit\\textui\\xmlconfiguration\\testdoxprintersummary', + 56 => 'phpunit\\textui\\xmlconfiguration\\controlgarbagecollector', + 57 => 'phpunit\\textui\\xmlconfiguration\\numberoftestsbeforegarbagecollection', + 58 => 'phpunit\\textui\\xmlconfiguration\\shortenarraysforexportthreshold', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Validator/Validator.php' => + array ( + 0 => 'cf59b897ce1e188d7480c7a611c92e8aa08f8951', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\validator', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\validate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Validator/ValidationResult.php' => + array ( + 0 => 'ca8ba3547411c6617c476f9a552dcf646fa8f34c', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\validationresult', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\fromarray', + 1 => 'phpunit\\textui\\xmlconfiguration\\__construct', + 2 => 'phpunit\\textui\\xmlconfiguration\\hasvalidationerrors', + 3 => 'phpunit\\textui\\xmlconfiguration\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/SchemaDetector/SchemaDetectionResult.php' => + array ( + 0 => '834d8fc9e53f60226a153f93a39ad1a0963af76d', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\schemadetectionresult', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\detected', + 1 => 'phpunit\\textui\\xmlconfiguration\\version', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/SchemaDetector/SuccessfulSchemaDetectionResult.php' => + array ( + 0 => '4efe689680dd617c3d92db45920e3c54fbc2e0f8', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\successfulschemadetectionresult', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\__construct', + 1 => 'phpunit\\textui\\xmlconfiguration\\detected', + 2 => 'phpunit\\textui\\xmlconfiguration\\version', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/SchemaDetector/FailedSchemaDetectionResult.php' => + array ( + 0 => '4dde584304e23427ca91367832750738e7045d75', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\failedschemadetectionresult', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/SchemaDetector/SchemaDetector.php' => + array ( + 0 => '4fa4e59e2320f12f86bbd59210afee8094312cdf', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\schemadetector', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\detect', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Configuration.php' => + array ( + 0 => '90da38f5aa90e837f738f5bc98daea546997cebb', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\configuration', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\__construct', + 1 => 'phpunit\\textui\\xmlconfiguration\\extensions', + 2 => 'phpunit\\textui\\xmlconfiguration\\source', + 3 => 'phpunit\\textui\\xmlconfiguration\\codecoverage', + 4 => 'phpunit\\textui\\xmlconfiguration\\groups', + 5 => 'phpunit\\textui\\xmlconfiguration\\logging', + 6 => 'phpunit\\textui\\xmlconfiguration\\php', + 7 => 'phpunit\\textui\\xmlconfiguration\\phpunit', + 8 => 'phpunit\\textui\\xmlconfiguration\\testsuite', + 9 => 'phpunit\\textui\\xmlconfiguration\\isdefault', + 10 => 'phpunit\\textui\\xmlconfiguration\\wasloadedfromfile', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/TestSuiteMapper.php' => + array ( + 0 => 'aad9d4aefc6912c778b1e5e81272e7ea703563d1', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\testsuitemapper', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\map', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/LoadedFromFileConfiguration.php' => + array ( + 0 => 'f5b2ebaa8fb0472243074b8bdccd4f54b965fa29', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\loadedfromfileconfiguration', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\__construct', + 1 => 'phpunit\\textui\\xmlconfiguration\\filename', + 2 => 'phpunit\\textui\\xmlconfiguration\\hasvalidationerrors', + 3 => 'phpunit\\textui\\xmlconfiguration\\validationerrors', + 4 => 'phpunit\\textui\\xmlconfiguration\\wasloadedfromfile', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/CodeCoverage.php' => + array ( + 0 => 'dcd51d74f859f14df917b4139b868670ddaeed70', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\codecoverage', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\__construct', + 1 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\pathcoverage', + 2 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\includeuncoveredfiles', + 3 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\ignoredeprecatedcodeunits', + 4 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\disablecodecoverageignore', + 5 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\hasclover', + 6 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\clover', + 7 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\hascobertura', + 8 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\cobertura', + 9 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\hascrap4j', + 10 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\crap4j', + 11 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\hashtml', + 12 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\html', + 13 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\hasphp', + 14 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\php', + 15 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\hastext', + 16 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\text', + 17 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\hasxml', + 18 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\xml', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/Report/Cobertura.php' => + array ( + 0 => 'e550f445d109879dec58b3505830f56e3e51c1b1', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\cobertura', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\__construct', + 1 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\target', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/Report/Clover.php' => + array ( + 0 => '44befd951fe503f6cd81eb9d3cb27c04cc121476', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\clover', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\__construct', + 1 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\target', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/Report/Xml.php' => + array ( + 0 => '6292b19a4aaeb678d1bff9d6fe229097f3f6ae8c', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\xml', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\__construct', + 1 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\target', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/Report/Html.php' => + array ( + 0 => '4768b4bf03962acb947a5c5708f81c479f804706', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\html', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\__construct', + 1 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\target', + 2 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\lowupperbound', + 3 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\highlowerbound', + 4 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\colorsuccesslow', + 5 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\colorsuccessmedium', + 6 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\colorsuccesshigh', + 7 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\colorwarning', + 8 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\colordanger', + 9 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\hascustomcssfile', + 10 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\customcssfile', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/Report/Php.php' => + array ( + 0 => '06bfeff154250e41ac10fa4a35b452a7c2b0fbcb', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\php', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\__construct', + 1 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\target', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/Report/Text.php' => + array ( + 0 => '94db27751965af21fb5da2f15d8e85d61a937116', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\text', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\__construct', + 1 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\target', + 2 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\showuncoveredfiles', + 3 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\showonlysummary', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/Report/Crap4j.php' => + array ( + 0 => 'dfd0a3d37e7994068451d71dfbdc67321f1922bb', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\crap4j', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\__construct', + 1 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\target', + 2 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\threshold', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/DefaultConfiguration.php' => + array ( + 0 => '55a65ff37a7e039c42594fa1552074295bbc8964', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\defaultconfiguration', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\create', + 1 => 'phpunit\\textui\\xmlconfiguration\\isdefault', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/SchemaFinder.php' => + array ( + 0 => 'a1fa4436902d64049e78e2df7985cfe4e7710ecf', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\schemafinder', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\available', + 1 => 'phpunit\\textui\\xmlconfiguration\\find', + 2 => 'phpunit\\textui\\xmlconfiguration\\path', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Groups.php' => + array ( + 0 => '689af841f2e52b7d6e86f092e73f98967228929f', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\groups', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\__construct', + 1 => 'phpunit\\textui\\xmlconfiguration\\hasinclude', + 2 => 'phpunit\\textui\\xmlconfiguration\\include', + 3 => 'phpunit\\textui\\xmlconfiguration\\hasexclude', + 4 => 'phpunit\\textui\\xmlconfiguration\\exclude', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Generator.php' => + array ( + 0 => 'af3a2facec6c0bef5b4615f5b3a3761a9e9b23b2', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\generator', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\generatedefaultconfiguration', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Exception.php' => + array ( + 0 => 'd4f0bbea8b6aa2ac2f3cfbb6a8a69ec3a8a5ec1e', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/MigrationException.php' => + array ( + 0 => 'a1f92ed8c45e70c41a7865cbe14a8eeba5cdd50a', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrationexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RenameForceCoversAnnotationAttribute.php' => + array ( + 0 => 'be4495f82dcc44f7c465677c8905754c8fc53374', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\renameforcecoversannotationattribute', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/CoverageCrap4jToReport.php' => + array ( + 0 => 'd4cf2bdddf7ea405fbff80849328521f902d7341', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\coveragecrap4jtoreport', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\fortype', + 1 => 'phpunit\\textui\\xmlconfiguration\\toreportformat', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveCoverageElementCacheDirectoryAttribute.php' => + array ( + 0 => 'a9a6c85541a2397cc69f385a4e7fc3517e6a0762', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\removecoverageelementcachedirectoryattribute', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RenameBackupStaticAttributesAttribute.php' => + array ( + 0 => '08cff37970bf82179e914c567d5edb4198e06728', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\renamebackupstaticattributesattribute', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveTestSuiteLoaderAttributes.php' => + array ( + 0 => 'aa6d8bbe0bbb0e23a85a25b672c7d4ec7eb64dc6', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\removetestsuiteloaderattributes', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveCacheResultFileAttribute.php' => + array ( + 0 => 'e5b6fd8db3e8cade458f5bf91201aaebad5da6ba', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\removecacheresultfileattribute', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveLoggingElements.php' => + array ( + 0 => 'c5561d0d72f128a09f69ef1665c17939be647a9a', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\removeloggingelements', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + 1 => 'phpunit\\textui\\xmlconfiguration\\removetestdoxelement', + 2 => 'phpunit\\textui\\xmlconfiguration\\removetextelement', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/ConvertLogTypes.php' => + array ( + 0 => '6d1624d925f3cb10fb46ad22daafd412c263c2cb', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\convertlogtypes', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveLogTypes.php' => + array ( + 0 => '00c8089e17f0bd76d41fc20197d8fe4958f46a28', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\removelogtypes', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveCoverageElementIncludeUncoveredFilesAttribute.php' => + array ( + 0 => 'c64db44c3f8781d6612042fc16c03b8063afc350', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\removecoverageelementincludeuncoveredfilesattribute', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/MoveAttributesFromFilterWhitelistToCoverage.php' => + array ( + 0 => '743fad0ada2d9ad0867ef6765508ea1a43537c93', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\moveattributesfromfilterwhitelisttocoverage', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/MoveWhitelistExcludesToCoverage.php' => + array ( + 0 => 'ac3fd88b8150a3232279b061b0cc9ac27af9fe5d', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\movewhitelistexcludestocoverage', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveVerboseAttribute.php' => + array ( + 0 => '11550794a068c05c46928cf78bd5ec9ec9157d5b', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\removeverboseattribute', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveRegisterMockObjectsFromTestArgumentsRecursivelyAttribute.php' => + array ( + 0 => '4c71a4f1bebd7d82e4431ecde406a8f632b5458b', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\removeregistermockobjectsfromtestargumentsrecursivelyattribute', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RenameBeStrictAboutCoversAnnotationAttribute.php' => + array ( + 0 => '451d9c1d5dcf7d3dcf7ab16490f4a2e3faaf62de', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\renamebestrictaboutcoversannotationattribute', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveCacheTokensAttribute.php' => + array ( + 0 => 'bdb747127d7ea254c1059cdece26452963974ad4', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\removecachetokensattribute', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemovePrinterAttributes.php' => + array ( + 0 => '71adbc8d37637fa63f831e4ef7f15b4c6186a338', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\removeprinterattributes', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/CoveragePhpToReport.php' => + array ( + 0 => '7dedf1b01279a5a1a89f55d2b9eb00219670f4b3', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\coveragephptoreport', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\fortype', + 1 => 'phpunit\\textui\\xmlconfiguration\\toreportformat', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/MoveWhitelistIncludesToCoverage.php' => + array ( + 0 => '164f00846d284c52f73acb69f88a4b404c15df76', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\movewhitelistincludestocoverage', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/UpdateSchemaLocation.php' => + array ( + 0 => 'ddfd17dd7ae1cdf38d11b2b441e99764aeb0e5e2', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\updateschemalocation', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveEmptyFilter.php' => + array ( + 0 => '7a12054f04d5f8aec3d109c8475ea9e3ce198827', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\removeemptyfilter', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + 1 => 'phpunit\\textui\\xmlconfiguration\\ensureempty', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveBeStrictAboutTodoAnnotatedTestsAttribute.php' => + array ( + 0 => '7f85c0987617d343e91b2e14e1d0aa90581dc3a7', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\removebestrictabouttodoannotatedtestsattribute', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/LogToReportMigration.php' => + array ( + 0 => 'bc7f494eb94b03c72083c00e109b1d13480a262e', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\logtoreportmigration', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + 1 => 'phpunit\\textui\\xmlconfiguration\\migrateattributes', + 2 => 'phpunit\\textui\\xmlconfiguration\\fortype', + 3 => 'phpunit\\textui\\xmlconfiguration\\toreportformat', + 4 => 'phpunit\\textui\\xmlconfiguration\\findlognode', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveCoverageElementProcessUncoveredFilesAttribute.php' => + array ( + 0 => 'c15b6868e4409b1d49158796fc133b3b07f2219a', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\removecoverageelementprocessuncoveredfilesattribute', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/MoveAttributesFromRootToCoverage.php' => + array ( + 0 => 'dd73b50ee2796c7e9924136bc73b2539e6c3f640', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\moveattributesfromroottocoverage', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/CoverageXmlToReport.php' => + array ( + 0 => '5922a0d76700a7e4f17e0602183139515e41d1e1', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\coveragexmltoreport', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\fortype', + 1 => 'phpunit\\textui\\xmlconfiguration\\toreportformat', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveTestDoxGroupsElement.php' => + array ( + 0 => '20468a91aa0a23e74add9039587c1d510c361d91', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\removetestdoxgroupselement', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/CoverageHtmlToReport.php' => + array ( + 0 => 'e09f046cd3e4790a8368c4b5d2f1973ed41c5db9', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\coveragehtmltoreport', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\fortype', + 1 => 'phpunit\\textui\\xmlconfiguration\\toreportformat', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/IntroduceCoverageElement.php' => + array ( + 0 => '7cb14b359dcc1ee3a875d0cfb205e4520aef0900', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\introducecoverageelement', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/CoverageTextToReport.php' => + array ( + 0 => '20906a9f6d9413eacbf9a719f0a6e96eef04a3a8', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\coveragetexttoreport', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\fortype', + 1 => 'phpunit\\textui\\xmlconfiguration\\toreportformat', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveNoInteractionAttribute.php' => + array ( + 0 => '5e77a3800fa56b0dff693889084d5856b5cefc21', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\removenointeractionattribute', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveBeStrictAboutResourceUsageDuringSmallTestsAttribute.php' => + array ( + 0 => 'ab8ba456cf0c9b339130e36d06e8acb45a550b46', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\removebestrictaboutresourceusageduringsmalltestsattribute', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/MoveCoverageDirectoriesToSource.php' => + array ( + 0 => '0ae01be883d239af2fae9b8ccbf834a2d270a1ef', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\movecoveragedirectoriestosource', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/CoverageCloverToReport.php' => + array ( + 0 => '567009c643d59e533dfc2689be74ddf0d1034fe7', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\coverageclovertoreport', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\fortype', + 1 => 'phpunit\\textui\\xmlconfiguration\\toreportformat', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/ReplaceRestrictDeprecationsWithIgnoreDeprecations.php' => + array ( + 0 => '9656c6ff526f0b82aaa186a438b5ae7eeb42c1c2', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\replacerestrictdeprecationswithignoredeprecations', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/Migration.php' => + array ( + 0 => '95d38bcdc92c05eb6ea00b9589def889d1b9beed', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migration', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveConversionToExceptionsAttributes.php' => + array ( + 0 => '8b8760a6534755cd14378a3bc2693b2180944efb', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\removeconversiontoexceptionsattributes', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/IntroduceCacheDirectoryAttribute.php' => + array ( + 0 => 'eebcd557466bdd8a0b72a5f2c770c2d0074f00c0', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\introducecachedirectoryattribute', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveListeners.php' => + array ( + 0 => 'e64501de941f341528686a89b595e176688fcb8f', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\removelisteners', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrator.php' => + array ( + 0 => '73a27473b48981ea58529cd66f81d71679022f2a', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrator', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/MigrationBuilder.php' => + array ( + 0 => '41d631dfcbc42965c72d348d4797cd51606d1cc1', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\migrationbuilder', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\build', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/SnapshotNodeList.php' => + array ( + 0 => '4265566a18c23668f84a0a85564069c78b867e84', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\snapshotnodelist', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\fromnodelist', + 1 => 'phpunit\\textui\\xmlconfiguration\\count', + 2 => 'phpunit\\textui\\xmlconfiguration\\getiterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Logging/TeamCity.php' => + array ( + 0 => '7f94b515899e284cb248575b3114264ef1cc08db', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\teamcity', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\__construct', + 1 => 'phpunit\\textui\\xmlconfiguration\\logging\\target', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Logging/TestDox/Html.php' => + array ( + 0 => '09f69118287742efa510639ffd85431061bab41e', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\testdox\\html', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\testdox\\__construct', + 1 => 'phpunit\\textui\\xmlconfiguration\\logging\\testdox\\target', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Logging/TestDox/Text.php' => + array ( + 0 => '5a1ba63aed7f28fbc0e89479cfd1904fe1b24093', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\testdox\\text', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\testdox\\__construct', + 1 => 'phpunit\\textui\\xmlconfiguration\\logging\\testdox\\target', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Logging/Junit.php' => + array ( + 0 => 'fa2648aa5cb6182071c3cf6c647a00473b094c23', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\junit', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\__construct', + 1 => 'phpunit\\textui\\xmlconfiguration\\logging\\target', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Logging/Logging.php' => + array ( + 0 => 'f1bfa478e9d0ebdd24e88a403eeeb62ad358f9dc', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\logging', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\__construct', + 1 => 'phpunit\\textui\\xmlconfiguration\\logging\\hasjunit', + 2 => 'phpunit\\textui\\xmlconfiguration\\logging\\junit', + 3 => 'phpunit\\textui\\xmlconfiguration\\logging\\hasteamcity', + 4 => 'phpunit\\textui\\xmlconfiguration\\logging\\teamcity', + 5 => 'phpunit\\textui\\xmlconfiguration\\logging\\hastestdoxhtml', + 6 => 'phpunit\\textui\\xmlconfiguration\\logging\\testdoxhtml', + 7 => 'phpunit\\textui\\xmlconfiguration\\logging\\hastestdoxtext', + 8 => 'phpunit\\textui\\xmlconfiguration\\logging\\testdoxtext', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/TestSuiteBuilder.php' => + array ( + 0 => '21198fdd03d3af66d29bf783d1503833df169cfa', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\testsuitebuilder', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\build', + 1 => 'phpunit\\textui\\configuration\\testsuitefrompath', + 2 => 'phpunit\\textui\\configuration\\testsuitefrompathlist', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/SourceFilter.php' => + array ( + 0 => 'b78678f05406d958e11ace7da5edfe774071dbb6', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\sourcefilter', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\includes', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/SourceMapper.php' => + array ( + 0 => '511e052b59d4f437b985f45bfee12e25964be4bd', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\sourcemapper', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\map', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Merger.php' => + array ( + 0 => 'c28507b3167d4736bcfe4f740aec9258904d556c', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\merger', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\configuration\\merge', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoBootstrapException.php' => + array ( + 0 => 'e89adbef462ec8b9712861cb5ad1da685fe90f24', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\nobootstrapexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoCustomCssFileException.php' => + array ( + 0 => 'df7740e41ea6f290a3e01a11d1106b57cac4f6b6', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\nocustomcssfileexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/ConfigurationCannotBeBuiltException.php' => + array ( + 0 => 'b7cf90f1fe62dd5f4c621e87e07a4a25d629594e', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\configurationcannotbebuiltexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/SpecificDeprecationToStopOnNotConfiguredException.php' => + array ( + 0 => 'f2eb264390144f664b6b821c30e6561ca13bc1f0', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\specificdeprecationtostoponnotconfiguredexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/CodeCoverageReportNotConfiguredException.php' => + array ( + 0 => '25ffffc57d9bc1aab7ef904d02b9fc5283be4f33', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\codecoveragereportnotconfiguredexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoPharExtensionDirectoryException.php' => + array ( + 0 => '3d437b5db4d3b4a7f0b40c1fa7d5e674dbb33990', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\nopharextensiondirectoryexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/FilterNotConfiguredException.php' => + array ( + 0 => '02ca5e8fa09bbf695be9ad90ac843b41a3decadc', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\filternotconfiguredexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoDefaultTestSuiteException.php' => + array ( + 0 => 'e76f5647d0dab86deaff96914a1c4cccc9fad5bc', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\nodefaulttestsuiteexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/CannotFindSchemaException.php' => + array ( + 0 => '65e55368a3291a3b4b771d235fcfa6b851aba3ca', + 1 => + array ( + 0 => 'phpunit\\textui\\xmlconfiguration\\cannotfindschemaexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/LoggingNotConfiguredException.php' => + array ( + 0 => '0588de36a3edfff413d678250b821d35dc8fd2d8', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\loggingnotconfiguredexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoCoverageCacheDirectoryException.php' => + array ( + 0 => 'ef44d47ec54dd79df1149eb6f7f4c47740b19577', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\nocoveragecachedirectoryexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoBaselineException.php' => + array ( + 0 => '5956aed529d178e1a27e6127481c9f968c185184', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\nobaselineexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoCacheDirectoryException.php' => + array ( + 0 => 'a3b9097eb983fb89b490551e2d2d6d6752ccdbb2', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\nocachedirectoryexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoConfigurationFileException.php' => + array ( + 0 => '29abe2e5b128e446f78ebe9fd63e36cbd4e962ee', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\noconfigurationfileexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/Exception.php' => + array ( + 0 => '651f39402a47ca1bb60aaefd362efc91ddb09f78', + 1 => + array ( + 0 => 'phpunit\\textui\\configuration\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Printer/NullPrinter.php' => + array ( + 0 => 'f3af88df335d0da2a40ca9ba37632f3927baa2a9', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\nullprinter', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\print', + 1 => 'phpunit\\textui\\output\\flush', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Printer/DefaultPrinter.php' => + array ( + 0 => '9ba361bb822891ae318580dae4e9ea5ec5d49a15', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\defaultprinter', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\from', + 1 => 'phpunit\\textui\\output\\standardoutput', + 2 => 'phpunit\\textui\\output\\standarderror', + 3 => 'phpunit\\textui\\output\\__construct', + 4 => 'phpunit\\textui\\output\\print', + 5 => 'phpunit\\textui\\output\\flush', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Printer/Printer.php' => + array ( + 0 => 'b59027b7fac3199d97fb6db2f6905aace22e8c6f', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\printer', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\print', + 1 => 'phpunit\\textui\\output\\flush', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/SummaryPrinter.php' => + array ( + 0 => '456278667ed14af9ad5e56133dc94c8bb2479fa3', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\summaryprinter', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\__construct', + 1 => 'phpunit\\textui\\output\\print', + 2 => 'phpunit\\textui\\output\\printcountstring', + 3 => 'phpunit\\textui\\output\\printwithcolor', + 4 => 'phpunit\\textui\\output\\printnumberofissuesignoredbybaseline', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ResultPrinter.php' => + array ( + 0 => '2f5d956284dd3324f56d7100f4f7cad2947f0052', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\resultprinter', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\__construct', + 1 => 'phpunit\\textui\\output\\default\\print', + 2 => 'phpunit\\textui\\output\\default\\printphpuniterrors', + 3 => 'phpunit\\textui\\output\\default\\printdetailsonteststhattriggeredphpunitdeprecations', + 4 => 'phpunit\\textui\\output\\default\\printtestrunnerwarnings', + 5 => 'phpunit\\textui\\output\\default\\printtestrunnerdeprecations', + 6 => 'phpunit\\textui\\output\\default\\printdetailsonteststhattriggeredphpunitwarnings', + 7 => 'phpunit\\textui\\output\\default\\printtestswitherrors', + 8 => 'phpunit\\textui\\output\\default\\printtestswithfailedassertions', + 9 => 'phpunit\\textui\\output\\default\\printriskytests', + 10 => 'phpunit\\textui\\output\\default\\printincompletetests', + 11 => 'phpunit\\textui\\output\\default\\printskippedtestsuites', + 12 => 'phpunit\\textui\\output\\default\\printskippedtests', + 13 => 'phpunit\\textui\\output\\default\\printissuelist', + 14 => 'phpunit\\textui\\output\\default\\printlistheaderwithnumberoftestsandnumberofissues', + 15 => 'phpunit\\textui\\output\\default\\printlistheaderwithnumber', + 16 => 'phpunit\\textui\\output\\default\\printlistheader', + 17 => 'phpunit\\textui\\output\\default\\printlist', + 18 => 'phpunit\\textui\\output\\default\\printlistelement', + 19 => 'phpunit\\textui\\output\\default\\printissuelistelement', + 20 => 'phpunit\\textui\\output\\default\\name', + 21 => 'phpunit\\textui\\output\\default\\maptestswithissueseventstoelements', + 22 => 'phpunit\\textui\\output\\default\\testlocation', + 23 => 'phpunit\\textui\\output\\default\\reasonmessage', + 24 => 'phpunit\\textui\\output\\default\\reasonlocation', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/UnexpectedOutputPrinter.php' => + array ( + 0 => '7186aeda6a72cbff8a47d9e2effcd881218870ce', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\unexpectedoutputprinter', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\__construct', + 1 => 'phpunit\\textui\\output\\default\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/ProgressPrinter.php' => + array ( + 0 => '66ca8e3c6bc4e09b36d7dd4dd8987427c97c1cc5', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\progressprinter', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\__construct', + 1 => 'phpunit\\textui\\output\\default\\progressprinter\\testrunnerexecutionstarted', + 2 => 'phpunit\\textui\\output\\default\\progressprinter\\beforetestclassmethoderrored', + 3 => 'phpunit\\textui\\output\\default\\progressprinter\\testprepared', + 4 => 'phpunit\\textui\\output\\default\\progressprinter\\testskipped', + 5 => 'phpunit\\textui\\output\\default\\progressprinter\\testmarkedincomplete', + 6 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggerednotice', + 7 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpnotice', + 8 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggereddeprecation', + 9 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpdeprecation', + 10 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpunitdeprecation', + 11 => 'phpunit\\textui\\output\\default\\progressprinter\\testconsideredrisky', + 12 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredwarning', + 13 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpwarning', + 14 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpunitwarning', + 15 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggerederror', + 16 => 'phpunit\\textui\\output\\default\\progressprinter\\testfailed', + 17 => 'phpunit\\textui\\output\\default\\progressprinter\\testerrored', + 18 => 'phpunit\\textui\\output\\default\\progressprinter\\testfinished', + 19 => 'phpunit\\textui\\output\\default\\progressprinter\\registersubscribers', + 20 => 'phpunit\\textui\\output\\default\\progressprinter\\updateteststatus', + 21 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforsuccess', + 22 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforskipped', + 23 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforincomplete', + 24 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressfornotice', + 25 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressfordeprecation', + 26 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforrisky', + 27 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforwarning', + 28 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforfailure', + 29 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforerror', + 30 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogresswithcolor', + 31 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogress', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestErroredSubscriber.php' => + array ( + 0 => 'b7c2677b4f823afa51d1ac8569e320a5236215cb', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testerroredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestConsideredRiskySubscriber.php' => + array ( + 0 => 'b06cbc160cb4bb8c9669752d12c74508e1e93118', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testconsideredriskysubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredNoticeSubscriber.php' => + array ( + 0 => '97a8d630c2dafc30b67a7e00e1e3dcbf9136cbda', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggerednoticesubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredPhpunitWarningSubscriber.php' => + array ( + 0 => '1d7c5b97c2c0bfe9a81dc1af6c8db31190da9005', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpunitwarningsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestFailedSubscriber.php' => + array ( + 0 => 'b55fc82ffd8a052352a034408ffc3b302b569a5e', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testfailedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredWarningSubscriber.php' => + array ( + 0 => '328463e2ac4c9dfb7bfea9c5fd51c6f2ad63e933', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredwarningsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/BeforeTestClassMethodErroredSubscriber.php' => + array ( + 0 => '2024bceb1e40922404c8b13423681f8be92153da', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\beforetestclassmethoderroredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredDeprecationSubscriber.php' => + array ( + 0 => '8309ebe41ee85ea1c4078eabeb0a7a9cef981fb1', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggereddeprecationsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredPhpDeprecationSubscriber.php' => + array ( + 0 => 'c147fed0f2801524d86d59ae5f9b51148b5cb88c', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpdeprecationsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestMarkedIncompleteSubscriber.php' => + array ( + 0 => '3da74dd9689dcfa18aa8c779814791294477277e', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testmarkedincompletesubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestPreparedSubscriber.php' => + array ( + 0 => '80f8bf0ed68da8faf9f9c438789a4ab8dbd203cb', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testpreparedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredPhpWarningSubscriber.php' => + array ( + 0 => '4cfbbd84948f6f9f79a767fcfe293f012ecaf282', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpwarningsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/Subscriber.php' => + array ( + 0 => 'b8c1c12bd0788cc308b0a5ab8b48edfcd9ffd701', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\subscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\__construct', + 1 => 'phpunit\\textui\\output\\default\\progressprinter\\printer', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestSkippedSubscriber.php' => + array ( + 0 => '8d2d68f40690ed2b8f7e56fcc7d8214cd069826d', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testskippedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestFinishedSubscriber.php' => + array ( + 0 => 'dc7d041fc7ebf68383a249916e487206c2a3dc6e', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredErrorSubscriber.php' => + array ( + 0 => 'efc60f0d662f41f9dd3f6da6a736d6254b0dbd58', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggerederrorsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredPhpunitDeprecationSubscriber.php' => + array ( + 0 => 'a4cda89b11c1d515611752ca610e7cd529aa6d60', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpunitdeprecationsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestRunnerExecutionStartedSubscriber.php' => + array ( + 0 => '387d66d6968176f25c1b0dead11c46d44ba216a4', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testrunnerexecutionstartedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredPhpNoticeSubscriber.php' => + array ( + 0 => '2c15623012a12e04708dd104055cc40d2911326a', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpnoticesubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/TestDox/ResultPrinter.php' => + array ( + 0 => '1ca7bf0eecfbb0368c9c7529fe939db74019b86e', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\testdox\\resultprinter', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\testdox\\__construct', + 1 => 'phpunit\\textui\\output\\testdox\\print', + 2 => 'phpunit\\textui\\output\\testdox\\doprint', + 3 => 'phpunit\\textui\\output\\testdox\\printprettifiedclassname', + 4 => 'phpunit\\textui\\output\\testdox\\printtestresult', + 5 => 'phpunit\\textui\\output\\testdox\\printtestresultheader', + 6 => 'phpunit\\textui\\output\\testdox\\printtestresultbody', + 7 => 'phpunit\\textui\\output\\testdox\\printtestresultbodystart', + 8 => 'phpunit\\textui\\output\\testdox\\printtestresultbodyend', + 9 => 'phpunit\\textui\\output\\testdox\\printthrowable', + 10 => 'phpunit\\textui\\output\\testdox\\colorizemessageanddiff', + 11 => 'phpunit\\textui\\output\\testdox\\formatstacktrace', + 12 => 'phpunit\\textui\\output\\testdox\\prefixlines', + 13 => 'phpunit\\textui\\output\\testdox\\prefixfor', + 14 => 'phpunit\\textui\\output\\testdox\\colorfor', + 15 => 'phpunit\\textui\\output\\testdox\\messagecolorfor', + 16 => 'phpunit\\textui\\output\\testdox\\symbolfor', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Facade.php' => + array ( + 0 => 'efc851751b3003dcecc4be9e98e119c077f23fdb', + 1 => + array ( + 0 => 'phpunit\\textui\\output\\facade', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\output\\init', + 1 => 'phpunit\\textui\\output\\printresult', + 2 => 'phpunit\\textui\\output\\printerfor', + 3 => 'phpunit\\textui\\output\\createprinter', + 4 => 'phpunit\\textui\\output\\createprogressprinter', + 5 => 'phpunit\\textui\\output\\usedefaultprogressprinter', + 6 => 'phpunit\\textui\\output\\createresultprinter', + 7 => 'phpunit\\textui\\output\\createsummaryprinter', + 8 => 'phpunit\\textui\\output\\createunexpectedoutputprinter', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/TestSuiteFilterProcessor.php' => + array ( + 0 => '8b732f086d66fa52bc284affbf7ff2cb44fb5364', + 1 => + array ( + 0 => 'phpunit\\textui\\testsuitefilterprocessor', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\process', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/TestRunner.php' => + array ( + 0 => '476ebf03ebb894ccd2a0d6e519420d364ff3c7a4', + 1 => + array ( + 0 => 'phpunit\\textui\\testrunner', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\run', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/ShellExitCodeCalculator.php' => + array ( + 0 => '5f0d811831cb5f7ce1d0b9822a019152eb8f3b84', + 1 => + array ( + 0 => 'phpunit\\textui\\shellexitcodecalculator', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\calculate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Help.php' => + array ( + 0 => '4b25c744de98e9a375e8fc3ef109118966d3d75b', + 1 => + array ( + 0 => 'phpunit\\textui\\help', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\__construct', + 1 => 'phpunit\\textui\\generate', + 2 => 'phpunit\\textui\\writewithoutcolor', + 3 => 'phpunit\\textui\\writewithcolor', + 4 => 'phpunit\\textui\\elements', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Result.php' => + array ( + 0 => '89902429f5e51e912947de5450410ff92a631014', + 1 => + array ( + 0 => 'phpunit\\textui\\command\\result', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\command\\from', + 1 => 'phpunit\\textui\\command\\__construct', + 2 => 'phpunit\\textui\\command\\output', + 3 => 'phpunit\\textui\\command\\shellexitcode', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Command.php' => + array ( + 0 => '96e50f31ed155151784c459da253346c43bb8c0a', + 1 => + array ( + 0 => 'phpunit\\textui\\command\\command', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\command\\execute', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/WarmCodeCoverageCacheCommand.php' => + array ( + 0 => '78c25f5294c55837d73361ae84fc4a8d8d514453', + 1 => + array ( + 0 => 'phpunit\\textui\\command\\warmcodecoveragecachecommand', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\command\\__construct', + 1 => 'phpunit\\textui\\command\\execute', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ShowVersionCommand.php' => + array ( + 0 => '616b75efcb1b0d990c7e34e77570b4a3b4f2652c', + 1 => + array ( + 0 => 'phpunit\\textui\\command\\showversioncommand', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\command\\execute', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ListTestsAsTextCommand.php' => + array ( + 0 => 'b680bed2dd96cd77c6d7286ceede36b0641b52d0', + 1 => + array ( + 0 => 'phpunit\\textui\\command\\listtestsastextcommand', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\command\\__construct', + 1 => 'phpunit\\textui\\command\\execute', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ListTestSuitesCommand.php' => + array ( + 0 => '67faf7f9c2ad3912ec917375e07f100c5893f6dd', + 1 => + array ( + 0 => 'phpunit\\textui\\command\\listtestsuitescommand', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\command\\__construct', + 1 => 'phpunit\\textui\\command\\execute', + 2 => 'phpunit\\textui\\command\\warnaboutconflictingoptions', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ListTestsAsXmlCommand.php' => + array ( + 0 => '3755b3f90c5ab1c7443c75f73db9b811bac87852', + 1 => + array ( + 0 => 'phpunit\\textui\\command\\listtestsasxmlcommand', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\command\\__construct', + 1 => 'phpunit\\textui\\command\\execute', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/VersionCheckCommand.php' => + array ( + 0 => '4eb45269fe1d7a76ba74b044bbad47da17e3592f', + 1 => + array ( + 0 => 'phpunit\\textui\\command\\versioncheckcommand', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\command\\__construct', + 1 => 'phpunit\\textui\\command\\execute', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/AtLeastVersionCommand.php' => + array ( + 0 => '0e0835b2de049efc98bf30f119ad1af6462fc763', + 1 => + array ( + 0 => 'phpunit\\textui\\command\\atleastversioncommand', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\command\\__construct', + 1 => 'phpunit\\textui\\command\\execute', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ListTestFilesCommand.php' => + array ( + 0 => 'f2cdc6101ce8eb88e6728505212841178306751c', + 1 => + array ( + 0 => 'phpunit\\textui\\command\\listtestfilescommand', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\command\\__construct', + 1 => 'phpunit\\textui\\command\\execute', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/GenerateConfigurationCommand.php' => + array ( + 0 => '2033120c9c22e4f59759962f8157925a3747ea78', + 1 => + array ( + 0 => 'phpunit\\textui\\command\\generateconfigurationcommand', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\command\\execute', + 1 => 'phpunit\\textui\\command\\read', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/MigrateConfigurationCommand.php' => + array ( + 0 => '0e3e09562a48768ef6c9c3e9ac4e7948df04a4ad', + 1 => + array ( + 0 => 'phpunit\\textui\\command\\migrateconfigurationcommand', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\command\\__construct', + 1 => 'phpunit\\textui\\command\\execute', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ShowHelpCommand.php' => + array ( + 0 => '1a9288f23a9a91a947d0630dc7589f9f06742bd8', + 1 => + array ( + 0 => 'phpunit\\textui\\command\\showhelpcommand', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\command\\__construct', + 1 => 'phpunit\\textui\\command\\execute', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ListGroupsCommand.php' => + array ( + 0 => '04db0cd699b49ddaa9953d341e3524bfce74100a', + 1 => + array ( + 0 => 'phpunit\\textui\\command\\listgroupscommand', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\command\\__construct', + 1 => 'phpunit\\textui\\command\\execute', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Exception/InvalidSocketException.php' => + array ( + 0 => '0238662e03efd7be7d81aca840e20e14534e9675', + 1 => + array ( + 0 => 'phpunit\\textui\\invalidsocketexception', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Exception/RuntimeException.php' => + array ( + 0 => '402a47a1fcbadbc07b259a80e7188b91da7e59ea', + 1 => + array ( + 0 => 'phpunit\\textui\\runtimeexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Exception/TestDirectoryNotFoundException.php' => + array ( + 0 => '58780a502a030a322cac326144bfbdcabc10bcab', + 1 => + array ( + 0 => 'phpunit\\textui\\testdirectorynotfoundexception', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Exception/TestFileNotFoundException.php' => + array ( + 0 => '3a91189d8cd317d57ac8ee5616d00a8d9f1cbc5c', + 1 => + array ( + 0 => 'phpunit\\textui\\testfilenotfoundexception', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Exception/CannotOpenSocketException.php' => + array ( + 0 => '62795c3cc94c8eeae3c962572c06ba225de0082a', + 1 => + array ( + 0 => 'phpunit\\textui\\cannotopensocketexception', + ), + 2 => + array ( + 0 => 'phpunit\\textui\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Exception/Exception.php' => + array ( + 0 => 'cd59a68d86bd54ca3a220e6011d8ef170e0b112c', + 1 => + array ( + 0 => 'phpunit\\textui\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/ThrowableToStringMapper.php' => + array ( + 0 => 'd7cdb5c7f1b8a7facd4c62bc6fc81bdc660d06fc', + 1 => + array ( + 0 => 'phpunit\\util\\throwabletostringmapper', + ), + 2 => + array ( + 0 => 'phpunit\\util\\map', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Json.php' => + array ( + 0 => 'f09a0e4204721447998fcbc48411907d7359554e', + 1 => + array ( + 0 => 'phpunit\\util\\json', + ), + 2 => + array ( + 0 => 'phpunit\\util\\prettify', + 1 => 'phpunit\\util\\canonicalize', + 2 => 'phpunit\\util\\recursivesort', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Filesystem.php' => + array ( + 0 => '69ee8031504d0c6a4026b241cc139d75da125f6e', + 1 => + array ( + 0 => 'phpunit\\util\\filesystem', + ), + 2 => + array ( + 0 => 'phpunit\\util\\createdirectory', + 1 => 'phpunit\\util\\resolvestreamorfile', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Reflection.php' => + array ( + 0 => '47a8509ced7fb460e99c44acdeed19c5906f7f0a', + 1 => + array ( + 0 => 'phpunit\\util\\reflection', + ), + 2 => + array ( + 0 => 'phpunit\\util\\sourcelocationfor', + 1 => 'phpunit\\util\\publicmethodsdeclareddirectlyintestclass', + 2 => 'phpunit\\util\\methodsdeclareddirectlyintestclass', + 3 => 'phpunit\\util\\filterandsortmethods', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/PHP/DefaultJobRunner.php' => + array ( + 0 => 'e42fc65b7be79cd323869790a34e84d50faae438', + 1 => + array ( + 0 => 'phpunit\\util\\php\\defaultjobrunner', + ), + 2 => + array ( + 0 => 'phpunit\\util\\php\\run', + 1 => 'phpunit\\util\\php\\runprocess', + 2 => 'phpunit\\util\\php\\buildcommand', + 3 => 'phpunit\\util\\php\\settingstoparameters', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/PHP/Result.php' => + array ( + 0 => '96d819459e657e1e5fa1bdd7455996e0b3cd51f3', + 1 => + array ( + 0 => 'phpunit\\util\\php\\result', + ), + 2 => + array ( + 0 => 'phpunit\\util\\php\\__construct', + 1 => 'phpunit\\util\\php\\stdout', + 2 => 'phpunit\\util\\php\\stderr', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/PHP/JobRunnerRegistry.php' => + array ( + 0 => '22283b12bdc032fa494dfa83ed35890010d3aa67', + 1 => + array ( + 0 => 'phpunit\\util\\php\\jobrunnerregistry', + ), + 2 => + array ( + 0 => 'phpunit\\util\\php\\run', + 1 => 'phpunit\\util\\php\\set', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/PHP/JobRunner.php' => + array ( + 0 => 'd02afed30bfc3dcb5e64ce4382613d40d0b97a3e', + 1 => + array ( + 0 => 'phpunit\\util\\php\\jobrunner', + ), + 2 => + array ( + 0 => 'phpunit\\util\\php\\run', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/PHP/Job.php' => + array ( + 0 => '5fb8d2525206b2663bb72ec46e410c3818901040', + 1 => + array ( + 0 => 'phpunit\\util\\php\\job', + ), + 2 => + array ( + 0 => 'phpunit\\util\\php\\__construct', + 1 => 'phpunit\\util\\php\\code', + 2 => 'phpunit\\util\\php\\phpsettings', + 3 => 'phpunit\\util\\php\\hasenvironmentvariables', + 4 => 'phpunit\\util\\php\\environmentvariables', + 5 => 'phpunit\\util\\php\\hasarguments', + 6 => 'phpunit\\util\\php\\arguments', + 7 => 'phpunit\\util\\php\\hasinput', + 8 => 'phpunit\\util\\php\\input', + 9 => 'phpunit\\util\\php\\redirecterrors', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Xml/Loader.php' => + array ( + 0 => 'c95283aa3b237d6b0dd8d56e35edd7c81c2eb664', + 1 => + array ( + 0 => 'phpunit\\util\\xml\\loader', + ), + 2 => + array ( + 0 => 'phpunit\\util\\xml\\loadfile', + 1 => 'phpunit\\util\\xml\\load', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Xml/Xml.php' => + array ( + 0 => 'f3f1bb1527c3ac183ad4ceca66897ba256e3ce4b', + 1 => + array ( + 0 => 'phpunit\\util\\xml', + ), + 2 => + array ( + 0 => 'phpunit\\util\\preparestring', + 1 => 'phpunit\\util\\converttoutf8', + 2 => 'phpunit\\util\\isutf8', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Cloner.php' => + array ( + 0 => 'cd201f3975bafc0d4f017b77034e2ae2bd1b080a', + 1 => + array ( + 0 => 'phpunit\\util\\cloner', + ), + 2 => + array ( + 0 => 'phpunit\\util\\clone', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/VersionComparisonOperator.php' => + array ( + 0 => 'cdfacd33fbf63ea2644a142c14578b63f22ae069', + 1 => + array ( + 0 => 'phpunit\\util\\versioncomparisonoperator', + ), + 2 => + array ( + 0 => 'phpunit\\util\\__construct', + 1 => 'phpunit\\util\\asstring', + 2 => 'phpunit\\util\\ensureoperatorisvalid', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Test.php' => + array ( + 0 => '9389c4d65ed2ce61831a799a9d0059a9ffd5043a', + 1 => + array ( + 0 => 'phpunit\\util\\test', + ), + 2 => + array ( + 0 => 'phpunit\\util\\istestmethod', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Exporter.php' => + array ( + 0 => '2d9729e181a84d4b83f2710b231915c0cb52bf6e', + 1 => + array ( + 0 => 'phpunit\\util\\exporter', + ), + 2 => + array ( + 0 => 'phpunit\\util\\export', + 1 => 'phpunit\\util\\shortenedrecursiveexport', + 2 => 'phpunit\\util\\shortenedexport', + 3 => 'phpunit\\util\\exporter', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/GlobalState.php' => + array ( + 0 => '3d57d1e1661b8adebbf2e6aa222d2251b9d348ce', + 1 => + array ( + 0 => 'phpunit\\util\\globalstate', + ), + 2 => + array ( + 0 => 'phpunit\\util\\getincludedfilesasstring', + 1 => 'phpunit\\util\\processincludedfilesasstring', + 2 => 'phpunit\\util\\getinisettingsasstring', + 3 => 'phpunit\\util\\getconstantsasstring', + 4 => 'phpunit\\util\\getglobalsasstring', + 5 => 'phpunit\\util\\exportvariable', + 6 => 'phpunit\\util\\arrayonlycontainsscalars', + 7 => 'phpunit\\util\\isinisettingdeprecated', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Http/PhpDownloader.php' => + array ( + 0 => '2379a0af336bb499d80f1e3434f3dd457e0505be', + 1 => + array ( + 0 => 'phpunit\\util\\http\\phpdownloader', + ), + 2 => + array ( + 0 => 'phpunit\\util\\http\\download', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Http/Downloader.php' => + array ( + 0 => '7cc5681d06dbb05daf0ed205b2c013d62f03ba70', + 1 => + array ( + 0 => 'phpunit\\util\\http\\downloader', + ), + 2 => + array ( + 0 => 'phpunit\\util\\http\\download', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Color.php' => + array ( + 0 => 'b29b3e9689f449af386cd2100b55cf1304232a68', + 1 => + array ( + 0 => 'phpunit\\util\\color', + ), + 2 => + array ( + 0 => 'phpunit\\util\\colorize', + 1 => 'phpunit\\util\\colorizetextbox', + 2 => 'phpunit\\util\\colorizepath', + 3 => 'phpunit\\util\\dim', + 4 => 'phpunit\\util\\visualizewhitespace', + 5 => 'phpunit\\util\\optimizecolor', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Filter.php' => + array ( + 0 => '38938a3177d093207ef14d7ac74d34eef0437305', + 1 => + array ( + 0 => 'phpunit\\util\\filter', + ), + 2 => + array ( + 0 => 'phpunit\\util\\stacktracefromthrowableasstring', + 1 => 'phpunit\\util\\stacktraceasstring', + 2 => 'phpunit\\util\\shouldprintframe', + 3 => 'phpunit\\util\\fileisexcluded', + 4 => 'phpunit\\util\\frameexists', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Exception/InvalidVersionOperatorException.php' => + array ( + 0 => 'fb893c1da20c4c292284e2d8a0240fd8a2462741', + 1 => + array ( + 0 => 'phpunit\\util\\invalidversionoperatorexception', + ), + 2 => + array ( + 0 => 'phpunit\\util\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Exception/InvalidDirectoryException.php' => + array ( + 0 => '457f2a940fbb3b0026474fa957ef975529c6d380', + 1 => + array ( + 0 => 'phpunit\\util\\invaliddirectoryexception', + ), + 2 => + array ( + 0 => 'phpunit\\util\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Exception/XmlException.php' => + array ( + 0 => '9f86b83eba37dfe5d7f729415dd3f3fa2b077008', + 1 => + array ( + 0 => 'phpunit\\util\\xml\\xmlexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Exception/InvalidJsonException.php' => + array ( + 0 => '4eb6939c0ad62c0ac16f365a83d70fc5877ffa4e', + 1 => + array ( + 0 => 'phpunit\\util\\invalidjsonexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Exception/PhpProcessException.php' => + array ( + 0 => '4cac0bc83e62efc1ece2169f0281853045504932', + 1 => + array ( + 0 => 'phpunit\\util\\php\\phpprocessexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Exception/Exception.php' => + array ( + 0 => 'd57f5a2eb2c1d9d24f96d21c4991ea6babe98a9c', + 1 => + array ( + 0 => 'phpunit\\util\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/ExcludeList.php' => + array ( + 0 => 'c98e07aa5803ee3c408f953ecdb4a8305ec68872', + 1 => + array ( + 0 => 'phpunit\\util\\excludelist', + ), + 2 => + array ( + 0 => 'phpunit\\util\\adddirectory', + 1 => 'phpunit\\util\\__construct', + 2 => 'phpunit\\util\\getexcludeddirectories', + 3 => 'phpunit\\util\\isexcluded', + 4 => 'phpunit\\util\\initialize', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestRunner/SeparateProcessTestRunner.php' => + array ( + 0 => '49e62ba64054b7065d7ba5abc7bbac09c93911fa', + 1 => + array ( + 0 => 'phpunit\\framework\\separateprocesstestrunner', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\run', + 1 => 'phpunit\\framework\\runtestjob', + 2 => 'phpunit\\framework\\processchildresult', + 3 => 'phpunit\\framework\\saveconfigurationforchildprocess', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestRunner/IsolatedTestRunner.php' => + array ( + 0 => '210571513d03f935c3d6e958c09df19d4044d985', + 1 => + array ( + 0 => 'phpunit\\framework\\isolatedtestrunner', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\run', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php' => + array ( + 0 => 'a5c7c677fca8faa338a0fd42ffbfd3347b90d4c5', + 1 => + array ( + 0 => 'phpunit\\framework\\testrunner', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\__construct', + 1 => 'phpunit\\framework\\run', + 2 => 'phpunit\\framework\\hascoveragemetadata', + 3 => 'phpunit\\framework\\cantimelimitbeenforced', + 4 => 'phpunit\\framework\\shouldtimelimitbeenforced', + 5 => 'phpunit\\framework\\runtestwithtimeout', + 6 => 'phpunit\\framework\\shoulderrorhandlerbeused', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestRunner/IsolatedTestRunnerRegistry.php' => + array ( + 0 => 'ba1629890d03668bda6f782a2a05a73505c365c0', + 1 => + array ( + 0 => 'phpunit\\framework\\isolatedtestrunnerregistry', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\run', + 1 => 'phpunit\\framework\\set', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/ExecutionOrderDependency.php' => + array ( + 0 => '72d43716a69a38be8af6831c4703e9b2faa132f2', + 1 => + array ( + 0 => 'phpunit\\framework\\executionorderdependency', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\invalid', + 1 => 'phpunit\\framework\\forclass', + 2 => 'phpunit\\framework\\formethod', + 3 => 'phpunit\\framework\\filterinvalid', + 4 => 'phpunit\\framework\\mergeunique', + 5 => 'phpunit\\framework\\diff', + 6 => 'phpunit\\framework\\__construct', + 7 => 'phpunit\\framework\\__tostring', + 8 => 'phpunit\\framework\\isvalid', + 9 => 'phpunit\\framework\\shallowclone', + 10 => 'phpunit\\framework\\deepclone', + 11 => 'phpunit\\framework\\targetisclass', + 12 => 'phpunit\\framework\\gettarget', + 13 => 'phpunit\\framework\\gettargetclassname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestSize/Unknown.php' => + array ( + 0 => 'fe298d21968e2e18920db8828e05cd17efb95c36', + 1 => + array ( + 0 => 'phpunit\\framework\\testsize\\unknown', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\testsize\\isunknown', + 1 => 'phpunit\\framework\\testsize\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestSize/Medium.php' => + array ( + 0 => 'efd5773c66f23b051e64cedd9399eae42241f3be', + 1 => + array ( + 0 => 'phpunit\\framework\\testsize\\medium', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\testsize\\ismedium', + 1 => 'phpunit\\framework\\testsize\\isgreaterthan', + 2 => 'phpunit\\framework\\testsize\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestSize/Known.php' => + array ( + 0 => '7be3df5748e365fb8dc33859b3788983fc384a82', + 1 => + array ( + 0 => 'phpunit\\framework\\testsize\\known', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\testsize\\isknown', + 1 => 'phpunit\\framework\\testsize\\isgreaterthan', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestSize/Large.php' => + array ( + 0 => '543f59c4dae3c3b082e7fb889503e8257f1f2b14', + 1 => + array ( + 0 => 'phpunit\\framework\\testsize\\large', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\testsize\\islarge', + 1 => 'phpunit\\framework\\testsize\\isgreaterthan', + 2 => 'phpunit\\framework\\testsize\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestSize/TestSize.php' => + array ( + 0 => 'd004c46656b79e1dfa74cfa46616c6a72a837c8d', + 1 => + array ( + 0 => 'phpunit\\framework\\testsize\\testsize', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\testsize\\unknown', + 1 => 'phpunit\\framework\\testsize\\small', + 2 => 'phpunit\\framework\\testsize\\medium', + 3 => 'phpunit\\framework\\testsize\\large', + 4 => 'phpunit\\framework\\testsize\\isknown', + 5 => 'phpunit\\framework\\testsize\\isunknown', + 6 => 'phpunit\\framework\\testsize\\issmall', + 7 => 'phpunit\\framework\\testsize\\ismedium', + 8 => 'phpunit\\framework\\testsize\\islarge', + 9 => 'phpunit\\framework\\testsize\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestSize/Small.php' => + array ( + 0 => '47f05492fb0338067177277680057f768c263c2a', + 1 => + array ( + 0 => 'phpunit\\framework\\testsize\\small', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\testsize\\issmall', + 1 => 'phpunit\\framework\\testsize\\isgreaterthan', + 2 => 'phpunit\\framework\\testsize\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestSuiteIterator.php' => + array ( + 0 => '6f46b7056914cfbf9ec882b43cafbeccaf935cb7', + 1 => + array ( + 0 => 'phpunit\\framework\\testsuiteiterator', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\__construct', + 1 => 'phpunit\\framework\\rewind', + 2 => 'phpunit\\framework\\valid', + 3 => 'phpunit\\framework\\key', + 4 => 'phpunit\\framework\\current', + 5 => 'phpunit\\framework\\next', + 6 => 'phpunit\\framework\\getchildren', + 7 => 'phpunit\\framework\\haschildren', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestSuite.php' => + array ( + 0 => 'cbb2a134bb889c01acb92c09521dafcf91e30efd', + 1 => + array ( + 0 => 'phpunit\\framework\\testsuite', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\empty', + 1 => 'phpunit\\framework\\fromclassreflector', + 2 => 'phpunit\\framework\\__construct', + 3 => 'phpunit\\framework\\addtest', + 4 => 'phpunit\\framework\\addtestsuite', + 5 => 'phpunit\\framework\\addtestfile', + 6 => 'phpunit\\framework\\addtestfiles', + 7 => 'phpunit\\framework\\count', + 8 => 'phpunit\\framework\\isempty', + 9 => 'phpunit\\framework\\name', + 10 => 'phpunit\\framework\\groups', + 11 => 'phpunit\\framework\\collect', + 12 => 'phpunit\\framework\\run', + 13 => 'phpunit\\framework\\tests', + 14 => 'phpunit\\framework\\settests', + 15 => 'phpunit\\framework\\marktestsuiteskipped', + 16 => 'phpunit\\framework\\getiterator', + 17 => 'phpunit\\framework\\injectfilter', + 18 => 'phpunit\\framework\\provides', + 19 => 'phpunit\\framework\\requires', + 20 => 'phpunit\\framework\\sortid', + 21 => 'phpunit\\framework\\isfortestclass', + 22 => 'phpunit\\framework\\addtestmethod', + 23 => 'phpunit\\framework\\clearcaches', + 24 => 'phpunit\\framework\\containsonlyvirtualgroups', + 25 => 'phpunit\\framework\\methoddoesnotexistorisdeclaredintestcase', + 26 => 'phpunit\\framework\\throwabletostring', + 27 => 'phpunit\\framework\\invokemethodsbeforefirsttest', + 28 => 'phpunit\\framework\\invokemethodsafterlasttest', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Warning.php' => + array ( + 0 => '6bf680399acc5376f72eda429fe67686847275e6', + 1 => + array ( + 0 => 'phpunit\\framework\\teststatus\\warning', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\teststatus\\iswarning', + 1 => 'phpunit\\framework\\teststatus\\asint', + 2 => 'phpunit\\framework\\teststatus\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Skipped.php' => + array ( + 0 => '174526f857203770c5b57c4414c3fb59630b9eeb', + 1 => + array ( + 0 => 'phpunit\\framework\\teststatus\\skipped', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\teststatus\\isskipped', + 1 => 'phpunit\\framework\\teststatus\\asint', + 2 => 'phpunit\\framework\\teststatus\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Risky.php' => + array ( + 0 => '1645f8054f13ffe953a96e38d15c4d34e40084fb', + 1 => + array ( + 0 => 'phpunit\\framework\\teststatus\\risky', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\teststatus\\isrisky', + 1 => 'phpunit\\framework\\teststatus\\asint', + 2 => 'phpunit\\framework\\teststatus\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Unknown.php' => + array ( + 0 => '913aa3c2811a44ba23ba4d6f34a228e68c2fa76d', + 1 => + array ( + 0 => 'phpunit\\framework\\teststatus\\unknown', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\teststatus\\isunknown', + 1 => 'phpunit\\framework\\teststatus\\asint', + 2 => 'phpunit\\framework\\teststatus\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Incomplete.php' => + array ( + 0 => '90ed87ff3591ebe2662dc404d0284ebef9a7f146', + 1 => + array ( + 0 => 'phpunit\\framework\\teststatus\\incomplete', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\teststatus\\isincomplete', + 1 => 'phpunit\\framework\\teststatus\\asint', + 2 => 'phpunit\\framework\\teststatus\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Error.php' => + array ( + 0 => '6401824700ef2a6a0f80c4128f1fdd613847017e', + 1 => + array ( + 0 => 'phpunit\\framework\\teststatus\\error', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\teststatus\\iserror', + 1 => 'phpunit\\framework\\teststatus\\asint', + 2 => 'phpunit\\framework\\teststatus\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Known.php' => + array ( + 0 => '49dfba6b576d5b324ae187335c45e1cd6b9156a4', + 1 => + array ( + 0 => 'phpunit\\framework\\teststatus\\known', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\teststatus\\isknown', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Success.php' => + array ( + 0 => 'db298d4606ad2b86f9186f18dba624a77638ef3f', + 1 => + array ( + 0 => 'phpunit\\framework\\teststatus\\success', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\teststatus\\issuccess', + 1 => 'phpunit\\framework\\teststatus\\asint', + 2 => 'phpunit\\framework\\teststatus\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Failure.php' => + array ( + 0 => 'f01b911894041a021883fc5d2457bbd5357ec2b5', + 1 => + array ( + 0 => 'phpunit\\framework\\teststatus\\failure', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\teststatus\\isfailure', + 1 => 'phpunit\\framework\\teststatus\\asint', + 2 => 'phpunit\\framework\\teststatus\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Deprecation.php' => + array ( + 0 => 'acb44c343f71264a13cf889f0ba36efbadfb128d', + 1 => + array ( + 0 => 'phpunit\\framework\\teststatus\\deprecation', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\teststatus\\isdeprecation', + 1 => 'phpunit\\framework\\teststatus\\asint', + 2 => 'phpunit\\framework\\teststatus\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Notice.php' => + array ( + 0 => '04b445e620f1cbdb0271900746733c9ec5d97d10', + 1 => + array ( + 0 => 'phpunit\\framework\\teststatus\\notice', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\teststatus\\isnotice', + 1 => 'phpunit\\framework\\teststatus\\asint', + 2 => 'phpunit\\framework\\teststatus\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/TestStatus.php' => + array ( + 0 => '6ba38f1db241977910f4416c94fac0cc017c04b3', + 1 => + array ( + 0 => 'phpunit\\framework\\teststatus\\teststatus', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\teststatus\\from', + 1 => 'phpunit\\framework\\teststatus\\unknown', + 2 => 'phpunit\\framework\\teststatus\\success', + 3 => 'phpunit\\framework\\teststatus\\skipped', + 4 => 'phpunit\\framework\\teststatus\\incomplete', + 5 => 'phpunit\\framework\\teststatus\\notice', + 6 => 'phpunit\\framework\\teststatus\\deprecation', + 7 => 'phpunit\\framework\\teststatus\\failure', + 8 => 'phpunit\\framework\\teststatus\\error', + 9 => 'phpunit\\framework\\teststatus\\warning', + 10 => 'phpunit\\framework\\teststatus\\risky', + 11 => 'phpunit\\framework\\teststatus\\__construct', + 12 => 'phpunit\\framework\\teststatus\\isknown', + 13 => 'phpunit\\framework\\teststatus\\isunknown', + 14 => 'phpunit\\framework\\teststatus\\issuccess', + 15 => 'phpunit\\framework\\teststatus\\isskipped', + 16 => 'phpunit\\framework\\teststatus\\isincomplete', + 17 => 'phpunit\\framework\\teststatus\\isnotice', + 18 => 'phpunit\\framework\\teststatus\\isdeprecation', + 19 => 'phpunit\\framework\\teststatus\\isfailure', + 20 => 'phpunit\\framework\\teststatus\\iserror', + 21 => 'phpunit\\framework\\teststatus\\iswarning', + 22 => 'phpunit\\framework\\teststatus\\isrisky', + 23 => 'phpunit\\framework\\teststatus\\message', + 24 => 'phpunit\\framework\\teststatus\\ismoreimportantthan', + 25 => 'phpunit\\framework\\teststatus\\asint', + 26 => 'phpunit\\framework\\teststatus\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/SelfDescribing.php' => + array ( + 0 => 'e0686366fd9c68a94bac36132eac1a68007926c0', + 1 => + array ( + 0 => 'phpunit\\framework\\selfdescribing', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\tostring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Reorderable.php' => + array ( + 0 => '2ca207fdf184854a41cafaf07aaf0a68722c418e', + 1 => + array ( + 0 => 'phpunit\\framework\\reorderable', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\sortid', + 1 => 'phpunit\\framework\\provides', + 2 => 'phpunit\\framework\\requires', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestBuilder.php' => + array ( + 0 => '49d66a6c64244cc55ca201dedf9e04f565433002', + 1 => + array ( + 0 => 'phpunit\\framework\\testbuilder', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\build', + 1 => 'phpunit\\framework\\builddataprovidertestsuite', + 2 => 'phpunit\\framework\\configuretestcase', + 3 => 'phpunit\\framework\\backupsettings', + 4 => 'phpunit\\framework\\shouldglobalstatebepreserved', + 5 => 'phpunit\\framework\\shouldtestmethodberuninseparateprocess', + 6 => 'phpunit\\framework\\shouldalltestmethodsoftestclassberuninsingleseparateprocess', + 7 => 'phpunit\\framework\\requirementssatisfied', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Assert/Functions.php' => + array ( + 0 => '0582fcebc0e1a19cbee86884f4f9ebc1c8266633', + 1 => + array ( + ), + 2 => + array ( + 0 => 'phpunit\\framework\\assertarrayisequaltoarrayonlyconsideringlistofkeys', + 1 => 'phpunit\\framework\\assertarrayisequaltoarrayignoringlistofkeys', + 2 => 'phpunit\\framework\\assertarrayisidenticaltoarrayonlyconsideringlistofkeys', + 3 => 'phpunit\\framework\\assertarrayisidenticaltoarrayignoringlistofkeys', + 4 => 'phpunit\\framework\\assertarrayhaskey', + 5 => 'phpunit\\framework\\assertarraynothaskey', + 6 => 'phpunit\\framework\\assertislist', + 7 => 'phpunit\\framework\\assertcontains', + 8 => 'phpunit\\framework\\assertcontainsequals', + 9 => 'phpunit\\framework\\assertnotcontains', + 10 => 'phpunit\\framework\\assertnotcontainsequals', + 11 => 'phpunit\\framework\\assertcontainsonly', + 12 => 'phpunit\\framework\\assertcontainsonlyarray', + 13 => 'phpunit\\framework\\assertcontainsonlybool', + 14 => 'phpunit\\framework\\assertcontainsonlycallable', + 15 => 'phpunit\\framework\\assertcontainsonlyfloat', + 16 => 'phpunit\\framework\\assertcontainsonlyint', + 17 => 'phpunit\\framework\\assertcontainsonlyiterable', + 18 => 'phpunit\\framework\\assertcontainsonlynull', + 19 => 'phpunit\\framework\\assertcontainsonlynumeric', + 20 => 'phpunit\\framework\\assertcontainsonlyobject', + 21 => 'phpunit\\framework\\assertcontainsonlyresource', + 22 => 'phpunit\\framework\\assertcontainsonlyclosedresource', + 23 => 'phpunit\\framework\\assertcontainsonlyscalar', + 24 => 'phpunit\\framework\\assertcontainsonlystring', + 25 => 'phpunit\\framework\\assertcontainsonlyinstancesof', + 26 => 'phpunit\\framework\\assertnotcontainsonly', + 27 => 'phpunit\\framework\\assertcontainsnotonlyarray', + 28 => 'phpunit\\framework\\assertcontainsnotonlybool', + 29 => 'phpunit\\framework\\assertcontainsnotonlycallable', + 30 => 'phpunit\\framework\\assertcontainsnotonlyfloat', + 31 => 'phpunit\\framework\\assertcontainsnotonlyint', + 32 => 'phpunit\\framework\\assertcontainsnotonlyiterable', + 33 => 'phpunit\\framework\\assertcontainsnotonlynull', + 34 => 'phpunit\\framework\\assertcontainsnotonlynumeric', + 35 => 'phpunit\\framework\\assertcontainsnotonlyobject', + 36 => 'phpunit\\framework\\assertcontainsnotonlyresource', + 37 => 'phpunit\\framework\\assertcontainsnotonlyclosedresource', + 38 => 'phpunit\\framework\\assertcontainsnotonlyscalar', + 39 => 'phpunit\\framework\\assertcontainsnotonlystring', + 40 => 'phpunit\\framework\\assertcontainsnotonlyinstancesof', + 41 => 'phpunit\\framework\\assertcount', + 42 => 'phpunit\\framework\\assertnotcount', + 43 => 'phpunit\\framework\\assertequals', + 44 => 'phpunit\\framework\\assertequalscanonicalizing', + 45 => 'phpunit\\framework\\assertequalsignoringcase', + 46 => 'phpunit\\framework\\assertequalswithdelta', + 47 => 'phpunit\\framework\\assertnotequals', + 48 => 'phpunit\\framework\\assertnotequalscanonicalizing', + 49 => 'phpunit\\framework\\assertnotequalsignoringcase', + 50 => 'phpunit\\framework\\assertnotequalswithdelta', + 51 => 'phpunit\\framework\\assertobjectequals', + 52 => 'phpunit\\framework\\assertobjectnotequals', + 53 => 'phpunit\\framework\\assertempty', + 54 => 'phpunit\\framework\\assertnotempty', + 55 => 'phpunit\\framework\\assertgreaterthan', + 56 => 'phpunit\\framework\\assertgreaterthanorequal', + 57 => 'phpunit\\framework\\assertlessthan', + 58 => 'phpunit\\framework\\assertlessthanorequal', + 59 => 'phpunit\\framework\\assertfileequals', + 60 => 'phpunit\\framework\\assertfileequalscanonicalizing', + 61 => 'phpunit\\framework\\assertfileequalsignoringcase', + 62 => 'phpunit\\framework\\assertfilenotequals', + 63 => 'phpunit\\framework\\assertfilenotequalscanonicalizing', + 64 => 'phpunit\\framework\\assertfilenotequalsignoringcase', + 65 => 'phpunit\\framework\\assertstringequalsfile', + 66 => 'phpunit\\framework\\assertstringequalsfilecanonicalizing', + 67 => 'phpunit\\framework\\assertstringequalsfileignoringcase', + 68 => 'phpunit\\framework\\assertstringnotequalsfile', + 69 => 'phpunit\\framework\\assertstringnotequalsfilecanonicalizing', + 70 => 'phpunit\\framework\\assertstringnotequalsfileignoringcase', + 71 => 'phpunit\\framework\\assertisreadable', + 72 => 'phpunit\\framework\\assertisnotreadable', + 73 => 'phpunit\\framework\\assertiswritable', + 74 => 'phpunit\\framework\\assertisnotwritable', + 75 => 'phpunit\\framework\\assertdirectoryexists', + 76 => 'phpunit\\framework\\assertdirectorydoesnotexist', + 77 => 'phpunit\\framework\\assertdirectoryisreadable', + 78 => 'phpunit\\framework\\assertdirectoryisnotreadable', + 79 => 'phpunit\\framework\\assertdirectoryiswritable', + 80 => 'phpunit\\framework\\assertdirectoryisnotwritable', + 81 => 'phpunit\\framework\\assertfileexists', + 82 => 'phpunit\\framework\\assertfiledoesnotexist', + 83 => 'phpunit\\framework\\assertfileisreadable', + 84 => 'phpunit\\framework\\assertfileisnotreadable', + 85 => 'phpunit\\framework\\assertfileiswritable', + 86 => 'phpunit\\framework\\assertfileisnotwritable', + 87 => 'phpunit\\framework\\asserttrue', + 88 => 'phpunit\\framework\\assertnottrue', + 89 => 'phpunit\\framework\\assertfalse', + 90 => 'phpunit\\framework\\assertnotfalse', + 91 => 'phpunit\\framework\\assertnull', + 92 => 'phpunit\\framework\\assertnotnull', + 93 => 'phpunit\\framework\\assertfinite', + 94 => 'phpunit\\framework\\assertinfinite', + 95 => 'phpunit\\framework\\assertnan', + 96 => 'phpunit\\framework\\assertobjecthasproperty', + 97 => 'phpunit\\framework\\assertobjectnothasproperty', + 98 => 'phpunit\\framework\\assertsame', + 99 => 'phpunit\\framework\\assertnotsame', + 100 => 'phpunit\\framework\\assertinstanceof', + 101 => 'phpunit\\framework\\assertnotinstanceof', + 102 => 'phpunit\\framework\\assertisarray', + 103 => 'phpunit\\framework\\assertisbool', + 104 => 'phpunit\\framework\\assertisfloat', + 105 => 'phpunit\\framework\\assertisint', + 106 => 'phpunit\\framework\\assertisnumeric', + 107 => 'phpunit\\framework\\assertisobject', + 108 => 'phpunit\\framework\\assertisresource', + 109 => 'phpunit\\framework\\assertisclosedresource', + 110 => 'phpunit\\framework\\assertisstring', + 111 => 'phpunit\\framework\\assertisscalar', + 112 => 'phpunit\\framework\\assertiscallable', + 113 => 'phpunit\\framework\\assertisiterable', + 114 => 'phpunit\\framework\\assertisnotarray', + 115 => 'phpunit\\framework\\assertisnotbool', + 116 => 'phpunit\\framework\\assertisnotfloat', + 117 => 'phpunit\\framework\\assertisnotint', + 118 => 'phpunit\\framework\\assertisnotnumeric', + 119 => 'phpunit\\framework\\assertisnotobject', + 120 => 'phpunit\\framework\\assertisnotresource', + 121 => 'phpunit\\framework\\assertisnotclosedresource', + 122 => 'phpunit\\framework\\assertisnotstring', + 123 => 'phpunit\\framework\\assertisnotscalar', + 124 => 'phpunit\\framework\\assertisnotcallable', + 125 => 'phpunit\\framework\\assertisnotiterable', + 126 => 'phpunit\\framework\\assertmatchesregularexpression', + 127 => 'phpunit\\framework\\assertdoesnotmatchregularexpression', + 128 => 'phpunit\\framework\\assertsamesize', + 129 => 'phpunit\\framework\\assertnotsamesize', + 130 => 'phpunit\\framework\\assertstringcontainsstringignoringlineendings', + 131 => 'phpunit\\framework\\assertstringequalsstringignoringlineendings', + 132 => 'phpunit\\framework\\assertfilematchesformat', + 133 => 'phpunit\\framework\\assertfilematchesformatfile', + 134 => 'phpunit\\framework\\assertstringmatchesformat', + 135 => 'phpunit\\framework\\assertstringnotmatchesformat', + 136 => 'phpunit\\framework\\assertstringmatchesformatfile', + 137 => 'phpunit\\framework\\assertstringnotmatchesformatfile', + 138 => 'phpunit\\framework\\assertstringstartswith', + 139 => 'phpunit\\framework\\assertstringstartsnotwith', + 140 => 'phpunit\\framework\\assertstringcontainsstring', + 141 => 'phpunit\\framework\\assertstringcontainsstringignoringcase', + 142 => 'phpunit\\framework\\assertstringnotcontainsstring', + 143 => 'phpunit\\framework\\assertstringnotcontainsstringignoringcase', + 144 => 'phpunit\\framework\\assertstringendswith', + 145 => 'phpunit\\framework\\assertstringendsnotwith', + 146 => 'phpunit\\framework\\assertxmlfileequalsxmlfile', + 147 => 'phpunit\\framework\\assertxmlfilenotequalsxmlfile', + 148 => 'phpunit\\framework\\assertxmlstringequalsxmlfile', + 149 => 'phpunit\\framework\\assertxmlstringnotequalsxmlfile', + 150 => 'phpunit\\framework\\assertxmlstringequalsxmlstring', + 151 => 'phpunit\\framework\\assertxmlstringnotequalsxmlstring', + 152 => 'phpunit\\framework\\assertthat', + 153 => 'phpunit\\framework\\assertjson', + 154 => 'phpunit\\framework\\assertjsonstringequalsjsonstring', + 155 => 'phpunit\\framework\\assertjsonstringnotequalsjsonstring', + 156 => 'phpunit\\framework\\assertjsonstringequalsjsonfile', + 157 => 'phpunit\\framework\\assertjsonstringnotequalsjsonfile', + 158 => 'phpunit\\framework\\assertjsonfileequalsjsonfile', + 159 => 'phpunit\\framework\\assertjsonfilenotequalsjsonfile', + 160 => 'phpunit\\framework\\logicaland', + 161 => 'phpunit\\framework\\logicalor', + 162 => 'phpunit\\framework\\logicalnot', + 163 => 'phpunit\\framework\\logicalxor', + 164 => 'phpunit\\framework\\anything', + 165 => 'phpunit\\framework\\istrue', + 166 => 'phpunit\\framework\\isfalse', + 167 => 'phpunit\\framework\\isjson', + 168 => 'phpunit\\framework\\isnull', + 169 => 'phpunit\\framework\\isfinite', + 170 => 'phpunit\\framework\\isinfinite', + 171 => 'phpunit\\framework\\isnan', + 172 => 'phpunit\\framework\\containsequal', + 173 => 'phpunit\\framework\\containsidentical', + 174 => 'phpunit\\framework\\containsonly', + 175 => 'phpunit\\framework\\containsonlyarray', + 176 => 'phpunit\\framework\\containsonlybool', + 177 => 'phpunit\\framework\\containsonlycallable', + 178 => 'phpunit\\framework\\containsonlyfloat', + 179 => 'phpunit\\framework\\containsonlyint', + 180 => 'phpunit\\framework\\containsonlyiterable', + 181 => 'phpunit\\framework\\containsonlynull', + 182 => 'phpunit\\framework\\containsonlynumeric', + 183 => 'phpunit\\framework\\containsonlyobject', + 184 => 'phpunit\\framework\\containsonlyresource', + 185 => 'phpunit\\framework\\containsonlyclosedresource', + 186 => 'phpunit\\framework\\containsonlyscalar', + 187 => 'phpunit\\framework\\containsonlystring', + 188 => 'phpunit\\framework\\containsonlyinstancesof', + 189 => 'phpunit\\framework\\arrayhaskey', + 190 => 'phpunit\\framework\\islist', + 191 => 'phpunit\\framework\\equalto', + 192 => 'phpunit\\framework\\equaltocanonicalizing', + 193 => 'phpunit\\framework\\equaltoignoringcase', + 194 => 'phpunit\\framework\\equaltowithdelta', + 195 => 'phpunit\\framework\\isempty', + 196 => 'phpunit\\framework\\iswritable', + 197 => 'phpunit\\framework\\isreadable', + 198 => 'phpunit\\framework\\directoryexists', + 199 => 'phpunit\\framework\\fileexists', + 200 => 'phpunit\\framework\\greaterthan', + 201 => 'phpunit\\framework\\greaterthanorequal', + 202 => 'phpunit\\framework\\identicalto', + 203 => 'phpunit\\framework\\isinstanceof', + 204 => 'phpunit\\framework\\isarray', + 205 => 'phpunit\\framework\\isbool', + 206 => 'phpunit\\framework\\iscallable', + 207 => 'phpunit\\framework\\isfloat', + 208 => 'phpunit\\framework\\isint', + 209 => 'phpunit\\framework\\isiterable', + 210 => 'phpunit\\framework\\isnumeric', + 211 => 'phpunit\\framework\\isobject', + 212 => 'phpunit\\framework\\isresource', + 213 => 'phpunit\\framework\\isclosedresource', + 214 => 'phpunit\\framework\\isscalar', + 215 => 'phpunit\\framework\\isstring', + 216 => 'phpunit\\framework\\istype', + 217 => 'phpunit\\framework\\lessthan', + 218 => 'phpunit\\framework\\lessthanorequal', + 219 => 'phpunit\\framework\\matchesregularexpression', + 220 => 'phpunit\\framework\\matches', + 221 => 'phpunit\\framework\\stringstartswith', + 222 => 'phpunit\\framework\\stringcontains', + 223 => 'phpunit\\framework\\stringendswith', + 224 => 'phpunit\\framework\\stringequalsstringignoringlineendings', + 225 => 'phpunit\\framework\\countof', + 226 => 'phpunit\\framework\\objectequals', + 227 => 'phpunit\\framework\\callback', + 228 => 'phpunit\\framework\\any', + 229 => 'phpunit\\framework\\never', + 230 => 'phpunit\\framework\\atleast', + 231 => 'phpunit\\framework\\atleastonce', + 232 => 'phpunit\\framework\\once', + 233 => 'phpunit\\framework\\exactly', + 234 => 'phpunit\\framework\\atmost', + 235 => 'phpunit\\framework\\returnvalue', + 236 => 'phpunit\\framework\\returnvaluemap', + 237 => 'phpunit\\framework\\returnargument', + 238 => 'phpunit\\framework\\returncallback', + 239 => 'phpunit\\framework\\returnself', + 240 => 'phpunit\\framework\\throwexception', + 241 => 'phpunit\\framework\\onconsecutivecalls', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/DataProviderTestSuite.php' => + array ( + 0 => '6ecff0c5667e5857f224e9378bbb661600d2664f', + 1 => + array ( + 0 => 'phpunit\\framework\\dataprovidertestsuite', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\setdependencies', + 1 => 'phpunit\\framework\\provides', + 2 => 'phpunit\\framework\\requires', + 3 => 'phpunit\\framework\\size', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Assert.php' => + array ( + 0 => '9cd0fb3be64581ea89bdfdf989e233d7b6812353', + 1 => + array ( + 0 => 'phpunit\\framework\\assert', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\assertarrayisequaltoarrayonlyconsideringlistofkeys', + 1 => 'phpunit\\framework\\assertarrayisequaltoarrayignoringlistofkeys', + 2 => 'phpunit\\framework\\assertarrayisidenticaltoarrayonlyconsideringlistofkeys', + 3 => 'phpunit\\framework\\assertarrayisidenticaltoarrayignoringlistofkeys', + 4 => 'phpunit\\framework\\assertarrayhaskey', + 5 => 'phpunit\\framework\\assertarraynothaskey', + 6 => 'phpunit\\framework\\assertislist', + 7 => 'phpunit\\framework\\assertcontains', + 8 => 'phpunit\\framework\\assertcontainsequals', + 9 => 'phpunit\\framework\\assertnotcontains', + 10 => 'phpunit\\framework\\assertnotcontainsequals', + 11 => 'phpunit\\framework\\assertcontainsonly', + 12 => 'phpunit\\framework\\assertcontainsonlyarray', + 13 => 'phpunit\\framework\\assertcontainsonlybool', + 14 => 'phpunit\\framework\\assertcontainsonlycallable', + 15 => 'phpunit\\framework\\assertcontainsonlyfloat', + 16 => 'phpunit\\framework\\assertcontainsonlyint', + 17 => 'phpunit\\framework\\assertcontainsonlyiterable', + 18 => 'phpunit\\framework\\assertcontainsonlynull', + 19 => 'phpunit\\framework\\assertcontainsonlynumeric', + 20 => 'phpunit\\framework\\assertcontainsonlyobject', + 21 => 'phpunit\\framework\\assertcontainsonlyresource', + 22 => 'phpunit\\framework\\assertcontainsonlyclosedresource', + 23 => 'phpunit\\framework\\assertcontainsonlyscalar', + 24 => 'phpunit\\framework\\assertcontainsonlystring', + 25 => 'phpunit\\framework\\assertcontainsonlyinstancesof', + 26 => 'phpunit\\framework\\assertnotcontainsonly', + 27 => 'phpunit\\framework\\assertcontainsnotonlyarray', + 28 => 'phpunit\\framework\\assertcontainsnotonlybool', + 29 => 'phpunit\\framework\\assertcontainsnotonlycallable', + 30 => 'phpunit\\framework\\assertcontainsnotonlyfloat', + 31 => 'phpunit\\framework\\assertcontainsnotonlyint', + 32 => 'phpunit\\framework\\assertcontainsnotonlyiterable', + 33 => 'phpunit\\framework\\assertcontainsnotonlynull', + 34 => 'phpunit\\framework\\assertcontainsnotonlynumeric', + 35 => 'phpunit\\framework\\assertcontainsnotonlyobject', + 36 => 'phpunit\\framework\\assertcontainsnotonlyresource', + 37 => 'phpunit\\framework\\assertcontainsnotonlyclosedresource', + 38 => 'phpunit\\framework\\assertcontainsnotonlyscalar', + 39 => 'phpunit\\framework\\assertcontainsnotonlystring', + 40 => 'phpunit\\framework\\assertcontainsnotonlyinstancesof', + 41 => 'phpunit\\framework\\assertcount', + 42 => 'phpunit\\framework\\assertnotcount', + 43 => 'phpunit\\framework\\assertequals', + 44 => 'phpunit\\framework\\assertequalscanonicalizing', + 45 => 'phpunit\\framework\\assertequalsignoringcase', + 46 => 'phpunit\\framework\\assertequalswithdelta', + 47 => 'phpunit\\framework\\assertnotequals', + 48 => 'phpunit\\framework\\assertnotequalscanonicalizing', + 49 => 'phpunit\\framework\\assertnotequalsignoringcase', + 50 => 'phpunit\\framework\\assertnotequalswithdelta', + 51 => 'phpunit\\framework\\assertobjectequals', + 52 => 'phpunit\\framework\\assertobjectnotequals', + 53 => 'phpunit\\framework\\assertempty', + 54 => 'phpunit\\framework\\assertnotempty', + 55 => 'phpunit\\framework\\assertgreaterthan', + 56 => 'phpunit\\framework\\assertgreaterthanorequal', + 57 => 'phpunit\\framework\\assertlessthan', + 58 => 'phpunit\\framework\\assertlessthanorequal', + 59 => 'phpunit\\framework\\assertfileequals', + 60 => 'phpunit\\framework\\assertfileequalscanonicalizing', + 61 => 'phpunit\\framework\\assertfileequalsignoringcase', + 62 => 'phpunit\\framework\\assertfilenotequals', + 63 => 'phpunit\\framework\\assertfilenotequalscanonicalizing', + 64 => 'phpunit\\framework\\assertfilenotequalsignoringcase', + 65 => 'phpunit\\framework\\assertstringequalsfile', + 66 => 'phpunit\\framework\\assertstringequalsfilecanonicalizing', + 67 => 'phpunit\\framework\\assertstringequalsfileignoringcase', + 68 => 'phpunit\\framework\\assertstringnotequalsfile', + 69 => 'phpunit\\framework\\assertstringnotequalsfilecanonicalizing', + 70 => 'phpunit\\framework\\assertstringnotequalsfileignoringcase', + 71 => 'phpunit\\framework\\assertisreadable', + 72 => 'phpunit\\framework\\assertisnotreadable', + 73 => 'phpunit\\framework\\assertiswritable', + 74 => 'phpunit\\framework\\assertisnotwritable', + 75 => 'phpunit\\framework\\assertdirectoryexists', + 76 => 'phpunit\\framework\\assertdirectorydoesnotexist', + 77 => 'phpunit\\framework\\assertdirectoryisreadable', + 78 => 'phpunit\\framework\\assertdirectoryisnotreadable', + 79 => 'phpunit\\framework\\assertdirectoryiswritable', + 80 => 'phpunit\\framework\\assertdirectoryisnotwritable', + 81 => 'phpunit\\framework\\assertfileexists', + 82 => 'phpunit\\framework\\assertfiledoesnotexist', + 83 => 'phpunit\\framework\\assertfileisreadable', + 84 => 'phpunit\\framework\\assertfileisnotreadable', + 85 => 'phpunit\\framework\\assertfileiswritable', + 86 => 'phpunit\\framework\\assertfileisnotwritable', + 87 => 'phpunit\\framework\\asserttrue', + 88 => 'phpunit\\framework\\assertnottrue', + 89 => 'phpunit\\framework\\assertfalse', + 90 => 'phpunit\\framework\\assertnotfalse', + 91 => 'phpunit\\framework\\assertnull', + 92 => 'phpunit\\framework\\assertnotnull', + 93 => 'phpunit\\framework\\assertfinite', + 94 => 'phpunit\\framework\\assertinfinite', + 95 => 'phpunit\\framework\\assertnan', + 96 => 'phpunit\\framework\\assertobjecthasproperty', + 97 => 'phpunit\\framework\\assertobjectnothasproperty', + 98 => 'phpunit\\framework\\assertsame', + 99 => 'phpunit\\framework\\assertnotsame', + 100 => 'phpunit\\framework\\assertinstanceof', + 101 => 'phpunit\\framework\\assertnotinstanceof', + 102 => 'phpunit\\framework\\assertisarray', + 103 => 'phpunit\\framework\\assertisbool', + 104 => 'phpunit\\framework\\assertisfloat', + 105 => 'phpunit\\framework\\assertisint', + 106 => 'phpunit\\framework\\assertisnumeric', + 107 => 'phpunit\\framework\\assertisobject', + 108 => 'phpunit\\framework\\assertisresource', + 109 => 'phpunit\\framework\\assertisclosedresource', + 110 => 'phpunit\\framework\\assertisstring', + 111 => 'phpunit\\framework\\assertisscalar', + 112 => 'phpunit\\framework\\assertiscallable', + 113 => 'phpunit\\framework\\assertisiterable', + 114 => 'phpunit\\framework\\assertisnotarray', + 115 => 'phpunit\\framework\\assertisnotbool', + 116 => 'phpunit\\framework\\assertisnotfloat', + 117 => 'phpunit\\framework\\assertisnotint', + 118 => 'phpunit\\framework\\assertisnotnumeric', + 119 => 'phpunit\\framework\\assertisnotobject', + 120 => 'phpunit\\framework\\assertisnotresource', + 121 => 'phpunit\\framework\\assertisnotclosedresource', + 122 => 'phpunit\\framework\\assertisnotstring', + 123 => 'phpunit\\framework\\assertisnotscalar', + 124 => 'phpunit\\framework\\assertisnotcallable', + 125 => 'phpunit\\framework\\assertisnotiterable', + 126 => 'phpunit\\framework\\assertmatchesregularexpression', + 127 => 'phpunit\\framework\\assertdoesnotmatchregularexpression', + 128 => 'phpunit\\framework\\assertsamesize', + 129 => 'phpunit\\framework\\assertnotsamesize', + 130 => 'phpunit\\framework\\assertstringcontainsstringignoringlineendings', + 131 => 'phpunit\\framework\\assertstringequalsstringignoringlineendings', + 132 => 'phpunit\\framework\\assertfilematchesformat', + 133 => 'phpunit\\framework\\assertfilematchesformatfile', + 134 => 'phpunit\\framework\\assertstringmatchesformat', + 135 => 'phpunit\\framework\\assertstringnotmatchesformat', + 136 => 'phpunit\\framework\\assertstringmatchesformatfile', + 137 => 'phpunit\\framework\\assertstringnotmatchesformatfile', + 138 => 'phpunit\\framework\\assertstringstartswith', + 139 => 'phpunit\\framework\\assertstringstartsnotwith', + 140 => 'phpunit\\framework\\assertstringcontainsstring', + 141 => 'phpunit\\framework\\assertstringcontainsstringignoringcase', + 142 => 'phpunit\\framework\\assertstringnotcontainsstring', + 143 => 'phpunit\\framework\\assertstringnotcontainsstringignoringcase', + 144 => 'phpunit\\framework\\assertstringendswith', + 145 => 'phpunit\\framework\\assertstringendsnotwith', + 146 => 'phpunit\\framework\\assertxmlfileequalsxmlfile', + 147 => 'phpunit\\framework\\assertxmlfilenotequalsxmlfile', + 148 => 'phpunit\\framework\\assertxmlstringequalsxmlfile', + 149 => 'phpunit\\framework\\assertxmlstringnotequalsxmlfile', + 150 => 'phpunit\\framework\\assertxmlstringequalsxmlstring', + 151 => 'phpunit\\framework\\assertxmlstringnotequalsxmlstring', + 152 => 'phpunit\\framework\\assertthat', + 153 => 'phpunit\\framework\\assertjson', + 154 => 'phpunit\\framework\\assertjsonstringequalsjsonstring', + 155 => 'phpunit\\framework\\assertjsonstringnotequalsjsonstring', + 156 => 'phpunit\\framework\\assertjsonstringequalsjsonfile', + 157 => 'phpunit\\framework\\assertjsonstringnotequalsjsonfile', + 158 => 'phpunit\\framework\\assertjsonfileequalsjsonfile', + 159 => 'phpunit\\framework\\assertjsonfilenotequalsjsonfile', + 160 => 'phpunit\\framework\\logicaland', + 161 => 'phpunit\\framework\\logicalor', + 162 => 'phpunit\\framework\\logicalnot', + 163 => 'phpunit\\framework\\logicalxor', + 164 => 'phpunit\\framework\\anything', + 165 => 'phpunit\\framework\\istrue', + 166 => 'phpunit\\framework\\callback', + 167 => 'phpunit\\framework\\isfalse', + 168 => 'phpunit\\framework\\isjson', + 169 => 'phpunit\\framework\\isnull', + 170 => 'phpunit\\framework\\isfinite', + 171 => 'phpunit\\framework\\isinfinite', + 172 => 'phpunit\\framework\\isnan', + 173 => 'phpunit\\framework\\containsequal', + 174 => 'phpunit\\framework\\containsidentical', + 175 => 'phpunit\\framework\\containsonly', + 176 => 'phpunit\\framework\\containsonlyarray', + 177 => 'phpunit\\framework\\containsonlybool', + 178 => 'phpunit\\framework\\containsonlycallable', + 179 => 'phpunit\\framework\\containsonlyfloat', + 180 => 'phpunit\\framework\\containsonlyint', + 181 => 'phpunit\\framework\\containsonlyiterable', + 182 => 'phpunit\\framework\\containsonlynull', + 183 => 'phpunit\\framework\\containsonlynumeric', + 184 => 'phpunit\\framework\\containsonlyobject', + 185 => 'phpunit\\framework\\containsonlyresource', + 186 => 'phpunit\\framework\\containsonlyclosedresource', + 187 => 'phpunit\\framework\\containsonlyscalar', + 188 => 'phpunit\\framework\\containsonlystring', + 189 => 'phpunit\\framework\\containsonlyinstancesof', + 190 => 'phpunit\\framework\\arrayhaskey', + 191 => 'phpunit\\framework\\islist', + 192 => 'phpunit\\framework\\equalto', + 193 => 'phpunit\\framework\\equaltocanonicalizing', + 194 => 'phpunit\\framework\\equaltoignoringcase', + 195 => 'phpunit\\framework\\equaltowithdelta', + 196 => 'phpunit\\framework\\isempty', + 197 => 'phpunit\\framework\\iswritable', + 198 => 'phpunit\\framework\\isreadable', + 199 => 'phpunit\\framework\\directoryexists', + 200 => 'phpunit\\framework\\fileexists', + 201 => 'phpunit\\framework\\greaterthan', + 202 => 'phpunit\\framework\\greaterthanorequal', + 203 => 'phpunit\\framework\\identicalto', + 204 => 'phpunit\\framework\\isinstanceof', + 205 => 'phpunit\\framework\\isarray', + 206 => 'phpunit\\framework\\isbool', + 207 => 'phpunit\\framework\\iscallable', + 208 => 'phpunit\\framework\\isfloat', + 209 => 'phpunit\\framework\\isint', + 210 => 'phpunit\\framework\\isiterable', + 211 => 'phpunit\\framework\\isnumeric', + 212 => 'phpunit\\framework\\isobject', + 213 => 'phpunit\\framework\\isresource', + 214 => 'phpunit\\framework\\isclosedresource', + 215 => 'phpunit\\framework\\isscalar', + 216 => 'phpunit\\framework\\isstring', + 217 => 'phpunit\\framework\\istype', + 218 => 'phpunit\\framework\\lessthan', + 219 => 'phpunit\\framework\\lessthanorequal', + 220 => 'phpunit\\framework\\matchesregularexpression', + 221 => 'phpunit\\framework\\matches', + 222 => 'phpunit\\framework\\stringstartswith', + 223 => 'phpunit\\framework\\stringcontains', + 224 => 'phpunit\\framework\\stringendswith', + 225 => 'phpunit\\framework\\stringequalsstringignoringlineendings', + 226 => 'phpunit\\framework\\countof', + 227 => 'phpunit\\framework\\objectequals', + 228 => 'phpunit\\framework\\fail', + 229 => 'phpunit\\framework\\marktestincomplete', + 230 => 'phpunit\\framework\\marktestskipped', + 231 => 'phpunit\\framework\\getcount', + 232 => 'phpunit\\framework\\resetcount', + 233 => 'phpunit\\framework\\isnativetype', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/Before.php' => + array ( + 0 => '5bc63d71d169ca0ab31b6ef3c3631ffdac610ec0', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\before', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\priority', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RunClassInSeparateProcess.php' => + array ( + 0 => '9d01bc6faa257f4eb751501b7c53b5fec0709579', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\runclassinseparateprocess', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/CoversTrait.php' => + array ( + 0 => 'e86aa3add681184865a4ff20b4dc98468617343f', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\coverstrait', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\traitname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DependsUsingDeepClone.php' => + array ( + 0 => '71ececefaf59a866b0c403fea66993bf4bec17f8', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\dependsusingdeepclone', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\methodname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresPhp.php' => + array ( + 0 => '46b0d8787b4731994b3788eefbe80028d4e1272d', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\requiresphp', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\versionrequirement', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresOperatingSystemFamily.php' => + array ( + 0 => 'f91989c17beda35c69f14454463f743280888d48', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\requiresoperatingsystemfamily', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\operatingsystemfamily', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DependsExternalUsingShallowClone.php' => + array ( + 0 => '05c0bfb824152f4e4b6dd144cfe00dc2e4a064ba', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\dependsexternalusingshallowclone', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\classname', + 2 => 'phpunit\\framework\\attributes\\methodname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/Group.php' => + array ( + 0 => 'c20d26beb5f874445aed0ba9fbaa2adfbec73011', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\group', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\name', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/UsesTrait.php' => + array ( + 0 => 'fc74314a610f33c89a6592ba4378f9d63ad3e66c', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\usestrait', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\traitname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/CoversMethod.php' => + array ( + 0 => '9a008ac02e7e8df9ab89bead30d747112d32bb9a', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\coversmethod', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\classname', + 2 => 'phpunit\\framework\\attributes\\methodname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/After.php' => + array ( + 0 => '7ac4ce720ff6e86d7b01309ed292c1ee2b131917', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\after', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\priority', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/TestDox.php' => + array ( + 0 => '28b23c577d4170ac0be037dff3add76df8685935', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\testdox', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\text', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DataProviderExternal.php' => + array ( + 0 => 'e4ce059fc74ec9ce102f26acb46b35f8ebff399e', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\dataproviderexternal', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\classname', + 2 => 'phpunit\\framework\\attributes\\methodname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/Ticket.php' => + array ( + 0 => 'df6503397cab9342c1f2980e2e58c9a8cf02e40f', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\ticket', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\text', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresSetting.php' => + array ( + 0 => 'd1b7fe8c07f7485d4f83d49999b1355d83e3eb64', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\requiressetting', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\setting', + 2 => 'phpunit\\framework\\attributes\\value', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/TestWithJson.php' => + array ( + 0 => 'cb0f0591bde5bea3c1417d2fd86ff3912cd0a1f4', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\testwithjson', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\json', + 2 => 'phpunit\\framework\\attributes\\name', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DependsExternalUsingDeepClone.php' => + array ( + 0 => '5e78918ffc8f26c25f06583b76ed045a81743955', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\dependsexternalusingdeepclone', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\classname', + 2 => 'phpunit\\framework\\attributes\\methodname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DependsOnClass.php' => + array ( + 0 => '9df777251005056365b002c446978620f5996ab5', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\dependsonclass', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\classname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DataProvider.php' => + array ( + 0 => '68cd7521ca35dabeaac99ad5bf7b6aa61e4a3d26', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\dataprovider', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\methodname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RunInSeparateProcess.php' => + array ( + 0 => '4b1955a7d7db12f9d259c19f7a5ac4ac58c3aa83', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\runinseparateprocess', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/UsesFunction.php' => + array ( + 0 => '17f644a28f78d3235fc6f3bb8cf79ef6458ae70a', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\usesfunction', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\functionname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/UsesMethod.php' => + array ( + 0 => '93ae4aac7a3c1d36018f55ad31292e41072ab09a', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\usesmethod', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\classname', + 2 => 'phpunit\\framework\\attributes\\methodname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DependsOnClassUsingDeepClone.php' => + array ( + 0 => 'f06963e9ddc284eff33e586ff39597d516b11410', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\dependsonclassusingdeepclone', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\classname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/AfterClass.php' => + array ( + 0 => '5539f5654b3b4ea9db0fefabc0236b6e253dbed1', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\afterclass', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\priority', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/Medium.php' => + array ( + 0 => 'a1ce64fb64ffae458088e143fb9bd01301b8bd5f', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\medium', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/Depends.php' => + array ( + 0 => '230dc93e44411538e2b4c801c51ad1949e4bcc74', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\depends', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\methodname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/PreserveGlobalState.php' => + array ( + 0 => 'e4c837328af38adeaa04964b357e91f425f7c585', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\preserveglobalstate', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\enabled', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresPhpunitExtension.php' => + array ( + 0 => 'e79c035373406503e08192d48185f1dd73fc8117', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\requiresphpunitextension', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\extensionclass', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DependsUsingShallowClone.php' => + array ( + 0 => 'f35acc6ef331726d69d97639c9755825aad2f5f4', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\dependsusingshallowclone', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\methodname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresMethod.php' => + array ( + 0 => 'ca08751352c79530d54164d5262c966f1c37ccec', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\requiresmethod', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\classname', + 2 => 'phpunit\\framework\\attributes\\methodname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/Test.php' => + array ( + 0 => '430efd626ebd013247ad12ed501a88d1614f3dc1', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\test', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresPhpunit.php' => + array ( + 0 => 'e8725ca048d1aae2d76dd97ad016295d80fe837b', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\requiresphpunit', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\versionrequirement', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DisableReturnValueGenerationForTestDoubles.php' => + array ( + 0 => '2cacb06449a3df931ef9ed3237d7d98457057b20', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\disablereturnvaluegenerationfortestdoubles', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/ExcludeGlobalVariableFromBackup.php' => + array ( + 0 => 'eed42ec3a78f5b7c32c6f555aab550fcf1454466', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\excludeglobalvariablefrombackup', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\globalvariablename', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/IgnorePhpunitDeprecations.php' => + array ( + 0 => '8ea249504ed038902e3aaa55758e4bcb8176560e', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\ignorephpunitdeprecations', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/WithoutErrorHandler.php' => + array ( + 0 => '9083323862ba6151ac7f680df00c80d0854319bd', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\withouterrorhandler', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresFunction.php' => + array ( + 0 => '1c92946d2ff3962d7a4e213ea44158d1c9120ea1', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\requiresfunction', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\functionname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DependsOnClassUsingShallowClone.php' => + array ( + 0 => 'e45d527a5712aa477c5d43b3f684e2255b4b9e5a', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\dependsonclassusingshallowclone', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\classname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/ExcludeStaticPropertyFromBackup.php' => + array ( + 0 => '7e7bb415616ad9d390945d4b5e516ea918193f15', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\excludestaticpropertyfrombackup', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\classname', + 2 => 'phpunit\\framework\\attributes\\propertyname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresPhpExtension.php' => + array ( + 0 => '753a8cf29330770a242abc4fe82a8086cb97e532', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\requiresphpextension', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\extension', + 2 => 'phpunit\\framework\\attributes\\versionrequirement', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DoesNotPerformAssertions.php' => + array ( + 0 => 'e0a933ec0aa4d8513252d8b8adb9016b9fafee41', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\doesnotperformassertions', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/PreCondition.php' => + array ( + 0 => 'c19c836f6ac268a21a9b426eaf1b8573c459bf69', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\precondition', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\priority', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresOperatingSystem.php' => + array ( + 0 => '32643e38fa7881eb4a8eff19a3bf76274845bd9d', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\requiresoperatingsystem', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\regularexpression', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/BackupStaticProperties.php' => + array ( + 0 => '987a7b33bcfc59d716dd000b160b444c805cd4eb', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\backupstaticproperties', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\enabled', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/TestWith.php' => + array ( + 0 => '3b25b86a4eaf1ab005ec699758c827fbf58e673e', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\testwith', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\data', + 2 => 'phpunit\\framework\\attributes\\name', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/CoversNothing.php' => + array ( + 0 => '8fba204cca606dc1f5233274102837e3a24bbfeb', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\coversnothing', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/CoversFunction.php' => + array ( + 0 => 'cd3e819221550cba3c8e0f2792166238f3a81990', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\coversfunction', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\functionname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/UsesClass.php' => + array ( + 0 => '519569e85058df0679bcd63e85dea1c2d2240e8d', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\usesclass', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\classname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/Large.php' => + array ( + 0 => '8729d2b9e26febac2e7b4975d45edb68717354c3', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\large', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/IgnoreDeprecations.php' => + array ( + 0 => '4c22e865137e5c0c5903395510dd6dbd2411f449', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\ignoredeprecations', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/PostCondition.php' => + array ( + 0 => 'e03757a37e19ab58f16efc9e3163ef09de5e8c21', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\postcondition', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\priority', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/BeforeClass.php' => + array ( + 0 => '235dcc7406e2e44ca142e301ef2b3111a28b648e', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\beforeclass', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\priority', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/CoversClass.php' => + array ( + 0 => '1a89834614f5b7b2cbd655c757f18d6f200227eb', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\coversclass', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\classname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RunTestsInSeparateProcesses.php' => + array ( + 0 => 'f7ccc03b0367c9c5436acf402c789c600a699d5c', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\runtestsinseparateprocesses', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/Small.php' => + array ( + 0 => 'e955e58c028ed65c1e6201bc4fc6d24bc3d22dce', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\small', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/BackupGlobals.php' => + array ( + 0 => '80746b41dceec877881e96482cea67cb2ae038bb', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\backupglobals', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\enabled', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DependsExternal.php' => + array ( + 0 => '458e4f31c55533fb7c80596ccb2ef11f83b76e3d', + 1 => + array ( + 0 => 'phpunit\\framework\\attributes\\dependsexternal', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\attributes\\__construct', + 1 => 'phpunit\\framework\\attributes\\classname', + 2 => 'phpunit\\framework\\attributes\\methodname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Test.php' => + array ( + 0 => '68d23894ee4cf065d533408bb2c346218ba06757', + 1 => + array ( + 0 => 'phpunit\\framework\\test', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\run', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/MockBuilder.php' => + array ( + 0 => 'd7c4f505574bb7d1d14b282e940cf64ed11a7af5', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\mockbuilder', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + 1 => 'phpunit\\framework\\mockobject\\getmock', + 2 => 'phpunit\\framework\\mockobject\\getmockforabstractclass', + 3 => 'phpunit\\framework\\mockobject\\getmockfortrait', + 4 => 'phpunit\\framework\\mockobject\\onlymethods', + 5 => 'phpunit\\framework\\mockobject\\addmethods', + 6 => 'phpunit\\framework\\mockobject\\setconstructorargs', + 7 => 'phpunit\\framework\\mockobject\\setmockclassname', + 8 => 'phpunit\\framework\\mockobject\\disableoriginalconstructor', + 9 => 'phpunit\\framework\\mockobject\\enableoriginalconstructor', + 10 => 'phpunit\\framework\\mockobject\\disableoriginalclone', + 11 => 'phpunit\\framework\\mockobject\\enableoriginalclone', + 12 => 'phpunit\\framework\\mockobject\\disableautoload', + 13 => 'phpunit\\framework\\mockobject\\enableautoload', + 14 => 'phpunit\\framework\\mockobject\\disableargumentcloning', + 15 => 'phpunit\\framework\\mockobject\\enableargumentcloning', + 16 => 'phpunit\\framework\\mockobject\\enableproxyingtooriginalmethods', + 17 => 'phpunit\\framework\\mockobject\\disableproxyingtooriginalmethods', + 18 => 'phpunit\\framework\\mockobject\\setproxytarget', + 19 => 'phpunit\\framework\\mockobject\\allowmockingunknowntypes', + 20 => 'phpunit\\framework\\mockobject\\disallowmockingunknowntypes', + 21 => 'phpunit\\framework\\mockobject\\enableautoreturnvaluegeneration', + 22 => 'phpunit\\framework\\mockobject\\disableautoreturnvaluegeneration', + 23 => 'phpunit\\framework\\mockobject\\calledfromtestcase', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Interface/MockObject.php' => + array ( + 0 => '5bbacec47074a2f072afed324615af8f1f2316ea', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\mockobject', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\expects', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Interface/StubInternal.php' => + array ( + 0 => '9f7df146bf6a80a9a260959a37b7f9771a0cc75d', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stubinternal', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__phpunit_state', + 1 => 'phpunit\\framework\\mockobject\\__phpunit_getinvocationhandler', + 2 => 'phpunit\\framework\\mockobject\\__phpunit_unsetinvocationmocker', + 3 => 'phpunit\\framework\\mockobject\\__phpunit_wasgeneratedasmockobject', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Interface/Stub.php' => + array ( + 0 => '8d760e369fad7f4727ed775346384a9b7be3a7ac', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Interface/MockObjectInternal.php' => + array ( + 0 => '52d69488318386b3f809564270ef968152dddfb5', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\mockobjectinternal', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__phpunit_hasmatchers', + 1 => 'phpunit\\framework\\mockobject\\__phpunit_verify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/MethodNameConstraint.php' => + array ( + 0 => '33a51e74579eecb0eed23eca25bb2b1a21284832', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\methodnameconstraint', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + 1 => 'phpunit\\framework\\mockobject\\tostring', + 2 => 'phpunit\\framework\\mockobject\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/PropertyHook/PropertyHook.php' => + array ( + 0 => 'b18dc0760289e02a2a6bebc31a96e99c5e0530d7', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\runtime\\propertyhook', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\runtime\\get', + 1 => 'phpunit\\framework\\mockobject\\runtime\\set', + 2 => 'phpunit\\framework\\mockobject\\runtime\\__construct', + 3 => 'phpunit\\framework\\mockobject\\runtime\\propertyname', + 4 => 'phpunit\\framework\\mockobject\\runtime\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/PropertyHook/PropertySetHook.php' => + array ( + 0 => '27a6575cc1fcaf471f230a3eb6c80e3160f634e1', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\runtime\\propertysethook', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\runtime\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/PropertyHook/PropertyGetHook.php' => + array ( + 0 => 'f9c52319cb71954e368eb18ca897bbea1fa5b369', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\runtime\\propertygethook', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\runtime\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Invocation.php' => + array ( + 0 => '1d6ccc6c9750e009e150a9d39b5931d527d93e17', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\invocation', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + 1 => 'phpunit\\framework\\mockobject\\classname', + 2 => 'phpunit\\framework\\mockobject\\methodname', + 3 => 'phpunit\\framework\\mockobject\\parameters', + 4 => 'phpunit\\framework\\mockobject\\generatereturnvalue', + 5 => 'phpunit\\framework\\mockobject\\tostring', + 6 => 'phpunit\\framework\\mockobject\\object', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/MethodName.php' => + array ( + 0 => 'c92df69a7a5f95e04eaa28f573338225cc7214f0', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\methodname', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\__construct', + 1 => 'phpunit\\framework\\mockobject\\rule\\tostring', + 2 => 'phpunit\\framework\\mockobject\\rule\\matches', + 3 => 'phpunit\\framework\\mockobject\\rule\\matchesname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/ParametersRule.php' => + array ( + 0 => '343f04fc1139c510b69fc5c40684e5a403207f40', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\parametersrule', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\apply', + 1 => 'phpunit\\framework\\mockobject\\rule\\verify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/InvocationOrder.php' => + array ( + 0 => 'a8b769456b3ecd3daf93b6e5de483be41b23965c', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\invocationorder', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\numberofinvocations', + 1 => 'phpunit\\framework\\mockobject\\rule\\hasbeeninvoked', + 2 => 'phpunit\\framework\\mockobject\\rule\\invoked', + 3 => 'phpunit\\framework\\mockobject\\rule\\matches', + 4 => 'phpunit\\framework\\mockobject\\rule\\verify', + 5 => 'phpunit\\framework\\mockobject\\rule\\invokeddo', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/AnyInvokedCount.php' => + array ( + 0 => '176ed06230b73abc72aa5210afcff5c5c9fe057f', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\anyinvokedcount', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\tostring', + 1 => 'phpunit\\framework\\mockobject\\rule\\verify', + 2 => 'phpunit\\framework\\mockobject\\rule\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/InvokedAtLeastOnce.php' => + array ( + 0 => '6edd904a7e53f4c906c84b12659206e83a27ca44', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\invokedatleastonce', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\tostring', + 1 => 'phpunit\\framework\\mockobject\\rule\\verify', + 2 => 'phpunit\\framework\\mockobject\\rule\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/AnyParameters.php' => + array ( + 0 => 'f9fcd708f700bfb44184c827e13e1ad0a476ca8b', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\anyparameters', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\apply', + 1 => 'phpunit\\framework\\mockobject\\rule\\verify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/InvokedAtMostCount.php' => + array ( + 0 => '06202d256f0bee082d1bfdd0cfaf68533b41ea08', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\invokedatmostcount', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\__construct', + 1 => 'phpunit\\framework\\mockobject\\rule\\tostring', + 2 => 'phpunit\\framework\\mockobject\\rule\\verify', + 3 => 'phpunit\\framework\\mockobject\\rule\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/InvokedAtLeastCount.php' => + array ( + 0 => 'f161a5c30158a5472aab7ddb643b6daa7828ad8b', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\invokedatleastcount', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\__construct', + 1 => 'phpunit\\framework\\mockobject\\rule\\tostring', + 2 => 'phpunit\\framework\\mockobject\\rule\\verify', + 3 => 'phpunit\\framework\\mockobject\\rule\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/Parameters.php' => + array ( + 0 => '4bb631b3a709cd32383f99cd05795593e1b06e5c', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\parameters', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\__construct', + 1 => 'phpunit\\framework\\mockobject\\rule\\apply', + 2 => 'phpunit\\framework\\mockobject\\rule\\verify', + 3 => 'phpunit\\framework\\mockobject\\rule\\doverify', + 4 => 'phpunit\\framework\\mockobject\\rule\\guardagainstduplicateevaluationofparameterconstraints', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/InvokedCount.php' => + array ( + 0 => '02eb5dcd4a605068c07fc2f432b3959b7601a53d', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\invokedcount', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\rule\\__construct', + 1 => 'phpunit\\framework\\mockobject\\rule\\isnever', + 2 => 'phpunit\\framework\\mockobject\\rule\\tostring', + 3 => 'phpunit\\framework\\mockobject\\rule\\matches', + 4 => 'phpunit\\framework\\mockobject\\rule\\verify', + 5 => 'phpunit\\framework\\mockobject\\rule\\invokeddo', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Matcher.php' => + array ( + 0 => 'dd83dad7aa15b85b8ac4e9b251313f7ed794b5ea', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\matcher', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + 1 => 'phpunit\\framework\\mockobject\\hasmatchers', + 2 => 'phpunit\\framework\\mockobject\\hasmethodnamerule', + 3 => 'phpunit\\framework\\mockobject\\methodnamerule', + 4 => 'phpunit\\framework\\mockobject\\setmethodnamerule', + 5 => 'phpunit\\framework\\mockobject\\hasparametersrule', + 6 => 'phpunit\\framework\\mockobject\\setparametersrule', + 7 => 'phpunit\\framework\\mockobject\\setstub', + 8 => 'phpunit\\framework\\mockobject\\setaftermatchbuilderid', + 9 => 'phpunit\\framework\\mockobject\\invoked', + 10 => 'phpunit\\framework\\mockobject\\matches', + 11 => 'phpunit\\framework\\mockobject\\verify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/ReturnStub.php' => + array ( + 0 => '66a119f1cdd91214109057f61687d1ccaa80a0de', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub\\returnstub', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub\\__construct', + 1 => 'phpunit\\framework\\mockobject\\stub\\invoke', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/ConsecutiveCalls.php' => + array ( + 0 => '0ec0f81e7cf36a604c26868f7f09df4e7f980af2', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub\\consecutivecalls', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub\\__construct', + 1 => 'phpunit\\framework\\mockobject\\stub\\invoke', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/ReturnArgument.php' => + array ( + 0 => 'f3ebd6bbd2b76c20aad59b1946808a2ce884078e', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub\\returnargument', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub\\__construct', + 1 => 'phpunit\\framework\\mockobject\\stub\\invoke', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/ReturnReference.php' => + array ( + 0 => '73acc6e158842eda82be76c758b9bb0a641392ec', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub\\returnreference', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub\\__construct', + 1 => 'phpunit\\framework\\mockobject\\stub\\invoke', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/ReturnValueMap.php' => + array ( + 0 => 'f5b9f8b0501f712aa0d69886a361f7380fae24e3', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub\\returnvaluemap', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub\\__construct', + 1 => 'phpunit\\framework\\mockobject\\stub\\invoke', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/ReturnCallback.php' => + array ( + 0 => 'b3a047018020373718d44c9798a502ff7ca59778', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub\\returncallback', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub\\__construct', + 1 => 'phpunit\\framework\\mockobject\\stub\\invoke', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/ReturnSelf.php' => + array ( + 0 => '1449e9241bec06fc05944f751db728cbcc5c1377', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub\\returnself', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub\\invoke', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/Stub.php' => + array ( + 0 => '24cacef1d565400b9200e544fa6470474ec09dec', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub\\stub', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub\\invoke', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/Exception.php' => + array ( + 0 => '8b6875b67a40d28af0423a4d42da449825fc7dec', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub\\exception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stub\\__construct', + 1 => 'phpunit\\framework\\mockobject\\stub\\invoke', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/StubApi.php' => + array ( + 0 => 'b963204cc9e85ceb2aee946af19041c0a68a1ecd', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\stubapi', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__phpunit_state', + 1 => 'phpunit\\framework\\mockobject\\__phpunit_getinvocationhandler', + 2 => 'phpunit\\framework\\mockobject\\__phpunit_unsetinvocationmocker', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/MockObjectApi.php' => + array ( + 0 => '7960eea2952c7a826985cda9dfea3efc4b0c89ae', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\mockobjectapi', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__phpunit_hasmatchers', + 1 => 'phpunit\\framework\\mockobject\\__phpunit_verify', + 2 => 'phpunit\\framework\\mockobject\\__phpunit_state', + 3 => 'phpunit\\framework\\mockobject\\__phpunit_getinvocationhandler', + 4 => 'phpunit\\framework\\mockobject\\__phpunit_unsetinvocationmocker', + 5 => 'phpunit\\framework\\mockobject\\expects', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/DoubledCloneMethod.php' => + array ( + 0 => '231ffc6816a2d31f36ce8a580d9d86078df3fde4', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\doubledclonemethod', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__clone', + 1 => 'phpunit\\framework\\mockobject\\__phpunit_state', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/Method.php' => + array ( + 0 => '82b048a7bf08b9a7edd17efbcd983f4c8ba977c4', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\method', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__phpunit_getinvocationhandler', + 1 => 'phpunit\\framework\\mockobject\\method', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/ProxiedCloneMethod.php' => + array ( + 0 => '6eee76a79be129ef6665a2273f9ecd906b734e64', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\proxiedclonemethod', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__clone', + 1 => 'phpunit\\framework\\mockobject\\__phpunit_state', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/GeneratedAsTestStub.php' => + array ( + 0 => '9706b1593ca7e925fca8cc815eb2756ee48b16dd', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generatedasteststub', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__phpunit_wasgeneratedasmockobject', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/MutableStubApi.php' => + array ( + 0 => 'bba8fb7ceb9c2abc4b5120aa43c4b538ab12eaba', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\mutablestubapi', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__phpunit_state', + 1 => 'phpunit\\framework\\mockobject\\__phpunit_getinvocationhandler', + 2 => 'phpunit\\framework\\mockobject\\__phpunit_unsetinvocationmocker', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/GeneratedAsMockObject.php' => + array ( + 0 => '3498549c8e6a9b1975f1c0834554c8c740cb70d5', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generatedasmockobject', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__phpunit_wasgeneratedasmockobject', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/TestDoubleState.php' => + array ( + 0 => '03d1dd314f47e17e0c37cd32c5609addb7708c0c', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\testdoublestate', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + 1 => 'phpunit\\framework\\mockobject\\invocationhandler', + 2 => 'phpunit\\framework\\mockobject\\cloneinvocationhandler', + 3 => 'phpunit\\framework\\mockobject\\unsetinvocationhandler', + 4 => 'phpunit\\framework\\mockobject\\setproxytarget', + 5 => 'phpunit\\framework\\mockobject\\proxytarget', + 6 => 'phpunit\\framework\\mockobject\\deprecationwasemittedfor', + 7 => 'phpunit\\framework\\mockobject\\wasdeprecationalreadyemittedfor', + 8 => 'phpunit\\framework\\mockobject\\configurablemethods', + 9 => 'phpunit\\framework\\mockobject\\generatereturnvalues', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/ErrorCloneMethod.php' => + array ( + 0 => 'd4149824fb3d982ea7bba1ef1e4200c3d3ded918', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\errorclonemethod', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__clone', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/InvocationHandler.php' => + array ( + 0 => '282d51f031fd9239788b8e8faf0331e122fee9dd', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\invocationhandler', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + 1 => 'phpunit\\framework\\mockobject\\hasmatchers', + 2 => 'phpunit\\framework\\mockobject\\lookupmatcher', + 3 => 'phpunit\\framework\\mockobject\\registermatcher', + 4 => 'phpunit\\framework\\mockobject\\expects', + 5 => 'phpunit\\framework\\mockobject\\invoke', + 6 => 'phpunit\\framework\\mockobject\\verify', + 7 => 'phpunit\\framework\\mockobject\\addmatcher', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Builder/InvocationStubber.php' => + array ( + 0 => 'c7b43d5366c4323f2cbb9c221201f117c132a3ef', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\builder\\invocationstubber', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\builder\\will', + 1 => 'phpunit\\framework\\mockobject\\builder\\willreturn', + 2 => 'phpunit\\framework\\mockobject\\builder\\willreturnreference', + 3 => 'phpunit\\framework\\mockobject\\builder\\willreturnmap', + 4 => 'phpunit\\framework\\mockobject\\builder\\willreturnargument', + 5 => 'phpunit\\framework\\mockobject\\builder\\willreturncallback', + 6 => 'phpunit\\framework\\mockobject\\builder\\willreturnself', + 7 => 'phpunit\\framework\\mockobject\\builder\\willreturnonconsecutivecalls', + 8 => 'phpunit\\framework\\mockobject\\builder\\willthrowexception', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Builder/InvocationMocker.php' => + array ( + 0 => 'c6c67ea06663493d7d213593dbb7bd92182c8786', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\builder\\invocationmocker', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\builder\\__construct', + 1 => 'phpunit\\framework\\mockobject\\builder\\id', + 2 => 'phpunit\\framework\\mockobject\\builder\\will', + 3 => 'phpunit\\framework\\mockobject\\builder\\willreturn', + 4 => 'phpunit\\framework\\mockobject\\builder\\willreturnreference', + 5 => 'phpunit\\framework\\mockobject\\builder\\willreturnmap', + 6 => 'phpunit\\framework\\mockobject\\builder\\willreturnargument', + 7 => 'phpunit\\framework\\mockobject\\builder\\willreturncallback', + 8 => 'phpunit\\framework\\mockobject\\builder\\willreturnself', + 9 => 'phpunit\\framework\\mockobject\\builder\\willreturnonconsecutivecalls', + 10 => 'phpunit\\framework\\mockobject\\builder\\willthrowexception', + 11 => 'phpunit\\framework\\mockobject\\builder\\after', + 12 => 'phpunit\\framework\\mockobject\\builder\\with', + 13 => 'phpunit\\framework\\mockobject\\builder\\withanyparameters', + 14 => 'phpunit\\framework\\mockobject\\builder\\method', + 15 => 'phpunit\\framework\\mockobject\\builder\\ensureparameterscanbeconfigured', + 16 => 'phpunit\\framework\\mockobject\\builder\\configuredmethod', + 17 => 'phpunit\\framework\\mockobject\\builder\\ensuretypeofreturnvalues', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Builder/ParametersMatch.php' => + array ( + 0 => '49a3d4c0e5b8181db134e2f8885d9967b6a6f5e2', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\builder\\parametersmatch', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\builder\\after', + 1 => 'phpunit\\framework\\mockobject\\builder\\with', + 2 => 'phpunit\\framework\\mockobject\\builder\\withanyparameters', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Builder/Identity.php' => + array ( + 0 => '37a919f8f626ac6dfa14357af528b3b275f9bb90', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\builder\\identity', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\builder\\id', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Builder/Stub.php' => + array ( + 0 => 'bff5abab8272dd90ad3a5ccc20b7a7815f8e346c', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\builder\\stub', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\builder\\will', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Builder/MethodNameMatch.php' => + array ( + 0 => 'f7ccd17693b6947e7ab9004d6cc442392d49d43b', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\builder\\methodnamematch', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\builder\\method', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/ReturnValueGenerator.php' => + array ( + 0 => 'b2e3986a1d0bc0c2f9ec03275b4c9e17d803fe48', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\returnvaluegenerator', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generate', + 1 => 'phpunit\\framework\\mockobject\\onlyinterfaces', + 2 => 'phpunit\\framework\\mockobject\\newinstanceof', + 3 => 'phpunit\\framework\\mockobject\\testdoublefor', + 4 => 'phpunit\\framework\\mockobject\\testdoubleforintersectionofinterfaces', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/MockClass.php' => + array ( + 0 => 'f7c42cb9a0f8ef8b8f35aeb26dabedcac3c82402', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\mockclass', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', + 1 => 'phpunit\\framework\\mockobject\\generator\\generate', + 2 => 'phpunit\\framework\\mockobject\\generator\\classcode', + 3 => 'phpunit\\framework\\mockobject\\generator\\configurablemethods', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/TemplateLoader.php' => + array ( + 0 => 'bab1c703cd12e0c79cae17272336a58ba05f00c1', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\templateloader', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\loadtemplate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/MockType.php' => + array ( + 0 => '409cad0cf747ccaf74bfcb6f9039902907dfe95d', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\mocktype', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\generate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/MockMethodSet.php' => + array ( + 0 => '2121c4b467fdb15f24bc03e9e13065c2200262b4', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\mockmethodset', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\addmethods', + 1 => 'phpunit\\framework\\mockobject\\generator\\asarray', + 2 => 'phpunit\\framework\\mockobject\\generator\\hasmethod', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/MockMethod.php' => + array ( + 0 => 'cb1d721bbc5ef1c8981ae16110d1bf449264fcb4', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\mockmethod', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\fromreflection', + 1 => 'phpunit\\framework\\mockobject\\generator\\fromname', + 2 => 'phpunit\\framework\\mockobject\\generator\\__construct', + 3 => 'phpunit\\framework\\mockobject\\generator\\methodname', + 4 => 'phpunit\\framework\\mockobject\\generator\\generatecode', + 5 => 'phpunit\\framework\\mockobject\\generator\\returntype', + 6 => 'phpunit\\framework\\mockobject\\generator\\defaultparametervalues', + 7 => 'phpunit\\framework\\mockobject\\generator\\numberofparameters', + 8 => 'phpunit\\framework\\mockobject\\generator\\methodparametersfordeclaration', + 9 => 'phpunit\\framework\\mockobject\\generator\\methodparametersforcall', + 10 => 'phpunit\\framework\\mockobject\\generator\\exportdefaultvalue', + 11 => 'phpunit\\framework\\mockobject\\generator\\methodparametersdefaultvalues', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/HookedProperty.php' => + array ( + 0 => '4272e0fb5c56c52ae39ba5c170c2143f6121c67c', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\hookedproperty', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', + 1 => 'phpunit\\framework\\mockobject\\generator\\name', + 2 => 'phpunit\\framework\\mockobject\\generator\\type', + 3 => 'phpunit\\framework\\mockobject\\generator\\hasgethook', + 4 => 'phpunit\\framework\\mockobject\\generator\\hassethook', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Generator.php' => + array ( + 0 => 'a66da62d4c8e98c6a225b4b4cb9c543093e576c1', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\generator', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\testdouble', + 1 => 'phpunit\\framework\\mockobject\\generator\\testdoubleforinterfaceintersection', + 2 => 'phpunit\\framework\\mockobject\\generator\\mockobjectforabstractclass', + 3 => 'phpunit\\framework\\mockobject\\generator\\mockobjectfortrait', + 4 => 'phpunit\\framework\\mockobject\\generator\\objectfortrait', + 5 => 'phpunit\\framework\\mockobject\\generator\\generate', + 6 => 'phpunit\\framework\\mockobject\\generator\\generateclassfromwsdl', + 7 => 'phpunit\\framework\\mockobject\\generator\\mockclassmethods', + 8 => 'phpunit\\framework\\mockobject\\generator\\userdefinedinterfacemethods', + 9 => 'phpunit\\framework\\mockobject\\generator\\getobject', + 10 => 'phpunit\\framework\\mockobject\\generator\\generatecodefortestdoubleclass', + 11 => 'phpunit\\framework\\mockobject\\generator\\generateclassname', + 12 => 'phpunit\\framework\\mockobject\\generator\\generatetestdoubleclassdeclaration', + 13 => 'phpunit\\framework\\mockobject\\generator\\canmethodbedoubled', + 14 => 'phpunit\\framework\\mockobject\\generator\\ismethodnameexcluded', + 15 => 'phpunit\\framework\\mockobject\\generator\\ensureknowntype', + 16 => 'phpunit\\framework\\mockobject\\generator\\ensurevalidmethods', + 17 => 'phpunit\\framework\\mockobject\\generator\\ensurenamefortestdoubleclassisavailable', + 18 => 'phpunit\\framework\\mockobject\\generator\\instantiateproxytarget', + 19 => 'phpunit\\framework\\mockobject\\generator\\reflectclass', + 20 => 'phpunit\\framework\\mockobject\\generator\\namesofmethodsin', + 21 => 'phpunit\\framework\\mockobject\\generator\\interfacemethods', + 22 => 'phpunit\\framework\\mockobject\\generator\\configurablemethods', + 23 => 'phpunit\\framework\\mockobject\\generator\\properties', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/CannotUseAddMethodsException.php' => + array ( + 0 => '50caf5674173dbaa306ca08bb334c7b21f793437', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\cannotuseaddmethodsexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/ReflectionException.php' => + array ( + 0 => 'f7507aee856f0b3f79e18ac857198f02e764ec53', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\reflectionexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/DuplicateMethodException.php' => + array ( + 0 => '9af0509f0ed99543372f398833882cefcd9f4fff', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\duplicatemethodexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/UnknownClassException.php' => + array ( + 0 => '60fb085895755264f58d44600490e4a9b42761bb', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\unknownclassexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/RuntimeException.php' => + array ( + 0 => '14c97f63549c02f10328745925d3621372619efb', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\runtimeexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/InvalidMethodNameException.php' => + array ( + 0 => '0b3beac89b708a51a995dfe4cd90ccfe8be5f1ce', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\invalidmethodnameexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/NameAlreadyInUseException.php' => + array ( + 0 => '0af1e9616b529985ef0744f4532a4454fc867e3c', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\namealreadyinuseexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/UnknownTypeException.php' => + array ( + 0 => '8a670a602076be1e399badec48091c808c6cb167', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\unknowntypeexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/OriginalConstructorInvocationRequiredException.php' => + array ( + 0 => '4db75942f291c1bb06c317e985b7af7eeff4f476', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\originalconstructorinvocationrequiredexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/UnknownTraitException.php' => + array ( + 0 => '244f6afbac309e051bec2df8d6983af70cb32828', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\unknowntraitexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/ClassIsFinalException.php' => + array ( + 0 => '7391db6b04cbdc11ea1750c2ea1da82fce113eaa', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\classisfinalexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/ClassIsEnumerationException.php' => + array ( + 0 => 'adcb952110836a5984f457ebe518680a27ed8bd0', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\classisenumerationexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/SoapExtensionNotAvailableException.php' => + array ( + 0 => '3a3c6ad7180d19cb2d425fe0db29c726de3e531d', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\soapextensionnotavailableexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/Exception.php' => + array ( + 0 => '65d402b96493b02b46718665324381383ca973ad', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/MockTrait.php' => + array ( + 0 => 'f53be0468270a8a92ef26f0dd0d3c95041850bb0', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\mocktrait', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', + 1 => 'phpunit\\framework\\mockobject\\generator\\generate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/HookedPropertyGenerator.php' => + array ( + 0 => '8e24951753db0191b4e42bb22b72f1989e8e4af9', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\hookedpropertygenerator', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\generator\\generate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/ConfigurableMethod.php' => + array ( + 0 => '555722224843c17d0d66df63a931d49c913460fb', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\configurablemethod', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + 1 => 'phpunit\\framework\\mockobject\\name', + 2 => 'phpunit\\framework\\mockobject\\defaultparametervalues', + 3 => 'phpunit\\framework\\mockobject\\numberofparameters', + 4 => 'phpunit\\framework\\mockobject\\mayreturn', + 5 => 'phpunit\\framework\\mockobject\\returntypedeclaration', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MatchBuilderNotFoundException.php' => + array ( + 0 => '1077a5346b06efc45c83085035564407953ac990', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\matchbuildernotfoundexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MatcherAlreadyRegisteredException.php' => + array ( + 0 => '911ed6ffc58e249c83b0d201dbd5ddea8e8a8246', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\matcheralreadyregisteredexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MethodParametersAlreadyConfiguredException.php' => + array ( + 0 => 'a01ad3dcd108d4386a8dca5ebf7c1037f5b7ca1e', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\methodparametersalreadyconfiguredexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MethodNameAlreadyConfiguredException.php' => + array ( + 0 => '5481b8c2e75d608a187c10a8b935aeba205b8def', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\methodnamealreadyconfiguredexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/RuntimeException.php' => + array ( + 0 => '40426ba89925a9f772518a71bf9dcdd9eaa01667', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\runtimeexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/IncompatibleReturnValueException.php' => + array ( + 0 => '1d65a08f989564443c0116ee1591544f8163a5c7', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\incompatiblereturnvalueexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/BadMethodCallException.php' => + array ( + 0 => 'd4d0114c53959b9ced2e74f56d919e9219356520', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\badmethodcallexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/CannotCloneTestDoubleForReadonlyClassException.php' => + array ( + 0 => '6d51846811f0778bfe75e17d6a1411835cbe67c3', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\cannotclonetestdoubleforreadonlyclassexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MethodCannotBeConfiguredException.php' => + array ( + 0 => '367172916ba998aeb51b6cbff7545ee144aff3be', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\methodcannotbeconfiguredexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/NeverReturningMethodException.php' => + array ( + 0 => '8c3d79f322cccbbaa70c206f71640b249cb20b40', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\neverreturningmethodexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/CannotUseOnlyMethodsException.php' => + array ( + 0 => '25bd6ca77375abe42ee5b5df5ca88c4edc3bf6f2', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\cannotuseonlymethodsexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MethodNameNotConfiguredException.php' => + array ( + 0 => '1a999d030a6e43008f562d20a29ae350abe0e20f', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\methodnamenotconfiguredexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/ReturnValueNotConfiguredException.php' => + array ( + 0 => '43ea4e8e47d10c04d4239b349958cde1ca4ac619', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\returnvaluenotconfiguredexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/Exception.php' => + array ( + 0 => 'ea9895c1456e8a3064faad04784fe2f0d944e6b9', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/NoMoreReturnValuesConfiguredException.php' => + array ( + 0 => 'e476dd8b25d1587e407a182f42e8aa99764ce44d', + 1 => + array ( + 0 => 'phpunit\\framework\\mockobject\\nomorereturnvaluesconfiguredexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\mockobject\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/NativeType.php' => + array ( + 0 => '0963042f0849353e7d574165a68632416fe47831', + 1 => + array ( + 0 => 'phpunit\\framework\\nativetype', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestCase.php' => + array ( + 0 => 'a25c2f2eab315a4b63073af46da4a95dd491663f', + 1 => + array ( + 0 => 'phpunit\\framework\\testcase', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\__construct', + 1 => 'phpunit\\framework\\setupbeforeclass', + 2 => 'phpunit\\framework\\teardownafterclass', + 3 => 'phpunit\\framework\\setup', + 4 => 'phpunit\\framework\\assertpreconditions', + 5 => 'phpunit\\framework\\assertpostconditions', + 6 => 'phpunit\\framework\\teardown', + 7 => 'phpunit\\framework\\tostring', + 8 => 'phpunit\\framework\\count', + 9 => 'phpunit\\framework\\status', + 10 => 'phpunit\\framework\\run', + 11 => 'phpunit\\framework\\groups', + 12 => 'phpunit\\framework\\setgroups', + 13 => 'phpunit\\framework\\namewithdataset', + 14 => 'phpunit\\framework\\name', + 15 => 'phpunit\\framework\\size', + 16 => 'phpunit\\framework\\hasunexpectedoutput', + 17 => 'phpunit\\framework\\output', + 18 => 'phpunit\\framework\\doesnotperformassertions', + 19 => 'phpunit\\framework\\expectsoutput', + 20 => 'phpunit\\framework\\runbare', + 21 => 'phpunit\\framework\\setdependencies', + 22 => 'phpunit\\framework\\setdependencyinput', + 23 => 'phpunit\\framework\\dependencyinput', + 24 => 'phpunit\\framework\\hasdependencyinput', + 25 => 'phpunit\\framework\\setbackupglobals', + 26 => 'phpunit\\framework\\setbackupglobalsexcludelist', + 27 => 'phpunit\\framework\\setbackupstaticproperties', + 28 => 'phpunit\\framework\\setbackupstaticpropertiesexcludelist', + 29 => 'phpunit\\framework\\setruntestinseparateprocess', + 30 => 'phpunit\\framework\\setrunclassinseparateprocess', + 31 => 'phpunit\\framework\\setpreserveglobalstate', + 32 => 'phpunit\\framework\\setinisolation', + 33 => 'phpunit\\framework\\result', + 34 => 'phpunit\\framework\\setresult', + 35 => 'phpunit\\framework\\registermockobject', + 36 => 'phpunit\\framework\\addtoassertioncount', + 37 => 'phpunit\\framework\\numberofassertionsperformed', + 38 => 'phpunit\\framework\\usesdataprovider', + 39 => 'phpunit\\framework\\dataname', + 40 => 'phpunit\\framework\\datasetasstring', + 41 => 'phpunit\\framework\\datasetasstringwithdata', + 42 => 'phpunit\\framework\\provideddata', + 43 => 'phpunit\\framework\\sortid', + 44 => 'phpunit\\framework\\provides', + 45 => 'phpunit\\framework\\requires', + 46 => 'phpunit\\framework\\setdata', + 47 => 'phpunit\\framework\\valueobjectforevents', + 48 => 'phpunit\\framework\\wasprepared', + 49 => 'phpunit\\framework\\any', + 50 => 'phpunit\\framework\\never', + 51 => 'phpunit\\framework\\atleast', + 52 => 'phpunit\\framework\\atleastonce', + 53 => 'phpunit\\framework\\once', + 54 => 'phpunit\\framework\\exactly', + 55 => 'phpunit\\framework\\atmost', + 56 => 'phpunit\\framework\\returnvalue', + 57 => 'phpunit\\framework\\returnvaluemap', + 58 => 'phpunit\\framework\\returnargument', + 59 => 'phpunit\\framework\\returncallback', + 60 => 'phpunit\\framework\\returnself', + 61 => 'phpunit\\framework\\throwexception', + 62 => 'phpunit\\framework\\onconsecutivecalls', + 63 => 'phpunit\\framework\\getactualoutputforassertion', + 64 => 'phpunit\\framework\\expectoutputregex', + 65 => 'phpunit\\framework\\expectoutputstring', + 66 => 'phpunit\\framework\\expectexception', + 67 => 'phpunit\\framework\\expectexceptioncode', + 68 => 'phpunit\\framework\\expectexceptionmessage', + 69 => 'phpunit\\framework\\expectexceptionmessagematches', + 70 => 'phpunit\\framework\\expectexceptionobject', + 71 => 'phpunit\\framework\\expectnottoperformassertions', + 72 => 'phpunit\\framework\\expectuserdeprecationmessage', + 73 => 'phpunit\\framework\\expectuserdeprecationmessagematches', + 74 => 'phpunit\\framework\\getmockbuilder', + 75 => 'phpunit\\framework\\registercomparator', + 76 => 'phpunit\\framework\\registerfailuretype', + 77 => 'phpunit\\framework\\runtest', + 78 => 'phpunit\\framework\\iniset', + 79 => 'phpunit\\framework\\setlocale', + 80 => 'phpunit\\framework\\createmock', + 81 => 'phpunit\\framework\\createmockforintersectionofinterfaces', + 82 => 'phpunit\\framework\\createconfiguredmock', + 83 => 'phpunit\\framework\\createpartialmock', + 84 => 'phpunit\\framework\\createtestproxy', + 85 => 'phpunit\\framework\\getmockforabstractclass', + 86 => 'phpunit\\framework\\getmockfromwsdl', + 87 => 'phpunit\\framework\\getmockfortrait', + 88 => 'phpunit\\framework\\getobjectfortrait', + 89 => 'phpunit\\framework\\transformexception', + 90 => 'phpunit\\framework\\onnotsuccessfultest', + 91 => 'phpunit\\framework\\verifydeprecationexpectations', + 92 => 'phpunit\\framework\\verifymockobjects', + 93 => 'phpunit\\framework\\checkrequirements', + 94 => 'phpunit\\framework\\handledependencies', + 95 => 'phpunit\\framework\\markerrorforinvaliddependency', + 96 => 'phpunit\\framework\\markskippedformissingdependency', + 97 => 'phpunit\\framework\\startoutputbuffering', + 98 => 'phpunit\\framework\\stopoutputbuffering', + 99 => 'phpunit\\framework\\snapshotglobalerrorexceptionhandlers', + 100 => 'phpunit\\framework\\restoreglobalerrorexceptionhandlers', + 101 => 'phpunit\\framework\\getactiveerrorhandlers', + 102 => 'phpunit\\framework\\getactiveexceptionhandlers', + 103 => 'phpunit\\framework\\snapshotglobalstate', + 104 => 'phpunit\\framework\\restoreglobalstate', + 105 => 'phpunit\\framework\\createglobalstatesnapshot', + 106 => 'phpunit\\framework\\compareglobalstatesnapshots', + 107 => 'phpunit\\framework\\compareglobalstatesnapshotpart', + 108 => 'phpunit\\framework\\shouldinvocationmockerbereset', + 109 => 'phpunit\\framework\\unregistercustomcomparators', + 110 => 'phpunit\\framework\\cleanupinisettings', + 111 => 'phpunit\\framework\\cleanuplocalesettings', + 112 => 'phpunit\\framework\\shouldexceptionexpectationsbeverified', + 113 => 'phpunit\\framework\\shouldruninseparateprocess', + 114 => 'phpunit\\framework\\iscallabletestmethod', + 115 => 'phpunit\\framework\\performassertionsonoutput', + 116 => 'phpunit\\framework\\invokebeforeclasshookmethods', + 117 => 'phpunit\\framework\\invokebeforetesthookmethods', + 118 => 'phpunit\\framework\\invokepreconditionhookmethods', + 119 => 'phpunit\\framework\\invokepostconditionhookmethods', + 120 => 'phpunit\\framework\\invokeaftertesthookmethods', + 121 => 'phpunit\\framework\\invokeafterclasshookmethods', + 122 => 'phpunit\\framework\\invokehookmethods', + 123 => 'phpunit\\framework\\methoddoesnotexistorisdeclaredintestcase', + 124 => 'phpunit\\framework\\verifyexceptionexpectations', + 125 => 'phpunit\\framework\\expectedexceptionwasnotraised', + 126 => 'phpunit\\framework\\isregisteredfailure', + 127 => 'phpunit\\framework\\hasexpectationonoutput', + 128 => 'phpunit\\framework\\requirementsnotsatisfied', + 129 => 'phpunit\\framework\\handleexceptionfrominvokedcountmockobjectrule', + 130 => 'phpunit\\framework\\createstub', + 131 => 'phpunit\\framework\\createstubforintersectionofinterfaces', + 132 => 'phpunit\\framework\\createconfiguredstub', + 133 => 'phpunit\\framework\\generatereturnvaluesfortestdoubles', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/ExpectationFailedException.php' => + array ( + 0 => 'f9fc37f45187041b7439f4828481c47226ab70a5', + 1 => + array ( + 0 => 'phpunit\\framework\\expectationfailedexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\__construct', + 1 => 'phpunit\\framework\\getcomparisonfailure', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/EmptyStringException.php' => + array ( + 0 => 'ca289d0ac3097433e411e80e715a892fcc4b1e97', + 1 => + array ( + 0 => 'phpunit\\framework\\emptystringexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/ObjectEquals/ComparisonMethodDoesNotAcceptParameterTypeException.php' => + array ( + 0 => '72406aeb9502e7b8b60f9f4b299db323eeba26ff', + 1 => + array ( + 0 => 'phpunit\\framework\\comparisonmethoddoesnotacceptparametertypeexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/ObjectEquals/ComparisonMethodDoesNotDeclareBoolReturnTypeException.php' => + array ( + 0 => '99a64a5bc5aeb9d73256122c1162cc61d027b985', + 1 => + array ( + 0 => 'phpunit\\framework\\comparisonmethoddoesnotdeclareboolreturntypeexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/ObjectEquals/ComparisonMethodDoesNotDeclareExactlyOneParameterException.php' => + array ( + 0 => '562ec7f68eb514ffb22aa19c580ebdb84c94783a', + 1 => + array ( + 0 => 'phpunit\\framework\\comparisonmethoddoesnotdeclareexactlyoneparameterexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/ObjectEquals/ActualValueIsNotAnObjectException.php' => + array ( + 0 => 'e2d3a1b363898bb8bc1ef4e626a6bb7972b93b23', + 1 => + array ( + 0 => 'phpunit\\framework\\actualvalueisnotanobjectexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/ObjectEquals/ComparisonMethodDoesNotDeclareParameterTypeException.php' => + array ( + 0 => '83504311c97091ebfdfa9618bd2449a2364df82c', + 1 => + array ( + 0 => 'phpunit\\framework\\comparisonmethoddoesnotdeclareparametertypeexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/ObjectEquals/ComparisonMethodDoesNotExistException.php' => + array ( + 0 => '5dc514b17750a2bd40d8257db7fe318d8f166c6d', + 1 => + array ( + 0 => 'phpunit\\framework\\comparisonmethoddoesnotexistexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/Incomplete/IncompleteTestError.php' => + array ( + 0 => 'b644c946464ea8283bef8d594cf4d6db489125e8', + 1 => + array ( + 0 => 'phpunit\\framework\\incompletetesterror', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/Incomplete/IncompleteTest.php' => + array ( + 0 => 'c220c51bd981e4abd29b108606f31526d69f7ace', + 1 => + array ( + 0 => 'phpunit\\framework\\incompletetest', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/UnknownTypeException.php' => + array ( + 0 => 'd6ecd5ef5a34665a5dbf73d518b56cd9d7b9d262', + 1 => + array ( + 0 => 'phpunit\\framework\\unknowntypeexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/Skipped/SkippedWithMessageException.php' => + array ( + 0 => 'af7880f45f8c6c6f4ef7f91c10977a352611a7bc', + 1 => + array ( + 0 => 'phpunit\\framework\\skippedwithmessageexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/Skipped/SkippedTestSuiteError.php' => + array ( + 0 => 'fbb03614636926749fd67e077474a97ad1184a95', + 1 => + array ( + 0 => 'phpunit\\framework\\skippedtestsuiteerror', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/Skipped/SkippedTest.php' => + array ( + 0 => '06bb37358da789e04b50abb97c90b4005e026e9a', + 1 => + array ( + 0 => 'phpunit\\framework\\skippedtest', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/PhptAssertionFailedError.php' => + array ( + 0 => 'eba23dcdcee6636d8866fd9360469e4ded822870', + 1 => + array ( + 0 => 'phpunit\\framework\\phptassertionfailederror', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\__construct', + 1 => 'phpunit\\framework\\syntheticfile', + 2 => 'phpunit\\framework\\syntheticline', + 3 => 'phpunit\\framework\\synthetictrace', + 4 => 'phpunit\\framework\\diff', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/CodeCoverageException.php' => + array ( + 0 => '09582caf85e52a236c2591ca5bf17146e505801a', + 1 => + array ( + 0 => 'phpunit\\framework\\codecoverageexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/InvalidArgumentException.php' => + array ( + 0 => 'f30742c86d7b9262b9c46eecb02f5d5b51498637', + 1 => + array ( + 0 => 'phpunit\\framework\\invalidargumentexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/NoChildTestSuiteException.php' => + array ( + 0 => '06c318ea408ae9e30d844ce56e2e37b7a10504bf', + 1 => + array ( + 0 => 'phpunit\\framework\\nochildtestsuiteexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/GeneratorNotSupportedException.php' => + array ( + 0 => '5d9762f0437dc731f34e7e15f3815d2e7717d9cf', + 1 => + array ( + 0 => 'phpunit\\framework\\generatornotsupportedexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\fromparametername', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/InvalidDataProviderException.php' => + array ( + 0 => '8aa8825086e63ba54b7017af71cf7c64a77b1cd5', + 1 => + array ( + 0 => 'phpunit\\framework\\invaliddataproviderexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/InvalidCoversTargetException.php' => + array ( + 0 => 'c9250a55334106c03503b04e1a8d90aef36c575c', + 1 => + array ( + 0 => 'phpunit\\framework\\invalidcoverstargetexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/UnknownClassOrInterfaceException.php' => + array ( + 0 => '4483a99c3a127169d010cb812962cce7c5f117b0', + 1 => + array ( + 0 => 'phpunit\\framework\\unknownclassorinterfaceexception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/Exception.php' => + array ( + 0 => '84411550abc0d62da4cc98e665ed0dd8533ce9c7', + 1 => + array ( + 0 => 'phpunit\\framework\\exception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\__construct', + 1 => 'phpunit\\framework\\__sleep', + 2 => 'phpunit\\framework\\getserializabletrace', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/InvalidDependencyException.php' => + array ( + 0 => '0de35a4c59855d2ab16dfc566455c47753f81437', + 1 => + array ( + 0 => 'phpunit\\framework\\invaliddependencyexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/ProcessIsolationException.php' => + array ( + 0 => '99f310d0a06a7703162a1dbab2bedb9f0709ad3a', + 1 => + array ( + 0 => 'phpunit\\framework\\processisolationexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/AssertionFailedError.php' => + array ( + 0 => 'd1b43ddd230ab20138e373a401fad4fb96a63bb3', + 1 => + array ( + 0 => 'phpunit\\framework\\assertionfailederror', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\tostring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/LessThan.php' => + array ( + 0 => '4988d89cd3d016fa9461ed8f2fe64ceaa4198b7f', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\lessthan', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/IsEmpty.php' => + array ( + 0 => 'ebe3294c71d7933b99a55195b3611cc56b9ae999', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\isempty', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\tostring', + 1 => 'phpunit\\framework\\constraint\\matches', + 2 => 'phpunit\\framework\\constraint\\failuredescription', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/Count.php' => + array ( + 0 => 'e183f948bc630566b19f2cdedb1c6341508ac844', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\count', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\matches', + 3 => 'phpunit\\framework\\constraint\\getcountof', + 4 => 'phpunit\\framework\\constraint\\failuredescription', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/SameSize.php' => + array ( + 0 => 'd40cd9e8432cf9c8f6a40b04b52fec6e8e34092d', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\samesize', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/GreaterThan.php' => + array ( + 0 => '250dd9d7523475ac7f8ace2381c4b8e0e7c95b01', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\greaterthan', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/IsAnything.php' => + array ( + 0 => '6dd899d0fe65f3efaa36273588aca7f2dc4c251d', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\isanything', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\evaluate', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\count', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsIdentical.php' => + array ( + 0 => 'e2823d22154331378ab1dd10db3afe4939eacb2c', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\traversablecontainsidentical', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/IsList.php' => + array ( + 0 => '7d826cb3554c8bc3a398225ef52646ca550c4340', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\islist', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\tostring', + 1 => 'phpunit\\framework\\constraint\\matches', + 2 => 'phpunit\\framework\\constraint\\failuredescription', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsOnly.php' => + array ( + 0 => '7e5dc91f2b12d775a96c6eea23a29daceea20085', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\traversablecontainsonly', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\evaluate', + 2 => 'phpunit\\framework\\constraint\\tostring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/ArrayHasKey.php' => + array ( + 0 => 'b55eb50e86261a9a97b6f52d67eb502f9ccaeca4', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\arrayhaskey', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\matches', + 3 => 'phpunit\\framework\\constraint\\failuredescription', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContains.php' => + array ( + 0 => '331b8fa2ba0eba85aed2ce78a6f48f203aaea45f', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\traversablecontains', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\failuredescription', + 3 => 'phpunit\\framework\\constraint\\value', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsEqual.php' => + array ( + 0 => 'bd4af4a31456c28ba0647e3febb9376799e13ca7', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\traversablecontainsequal', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php' => + array ( + 0 => '6f0491f41439897c1467bf13e32a1beb459f6a4f', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\jsonmatches', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\matches', + 3 => 'phpunit\\framework\\constraint\\fail', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Filesystem/IsReadable.php' => + array ( + 0 => 'f53734a10d97742003fc956e0739609b38569484', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\isreadable', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\tostring', + 1 => 'phpunit\\framework\\constraint\\matches', + 2 => 'phpunit\\framework\\constraint\\failuredescription', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Filesystem/DirectoryExists.php' => + array ( + 0 => '995ba23050a79b37358a2aaa1eec146608014e6e', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\directoryexists', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\tostring', + 1 => 'phpunit\\framework\\constraint\\matches', + 2 => 'phpunit\\framework\\constraint\\failuredescription', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Filesystem/IsWritable.php' => + array ( + 0 => 'a023338e1d7f8bdcd27866bfde3bcd036f23d42d', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\iswritable', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\tostring', + 1 => 'phpunit\\framework\\constraint\\matches', + 2 => 'phpunit\\framework\\constraint\\failuredescription', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Filesystem/FileExists.php' => + array ( + 0 => 'c51e62e59d0309e70e9307a971628119e3efb3c4', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\fileexists', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\tostring', + 1 => 'phpunit\\framework\\constraint\\matches', + 2 => 'phpunit\\framework\\constraint\\failuredescription', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Math/IsNan.php' => + array ( + 0 => 'd2b67a9303c07c81bd1673f43be0cf0e20459caa', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\isnan', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\tostring', + 1 => 'phpunit\\framework\\constraint\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Math/IsInfinite.php' => + array ( + 0 => '9ca80839e05c34e2b2c3293c2196dc3239f4e9d0', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\isinfinite', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\tostring', + 1 => 'phpunit\\framework\\constraint\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Math/IsFinite.php' => + array ( + 0 => '40aed8164fd66fd4cf92895ac13847cea0e5fb18', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\isfinite', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\tostring', + 1 => 'phpunit\\framework\\constraint\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualIgnoringCase.php' => + array ( + 0 => '577a1075743b9f3058c267a522b13075f096f5ab', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\isequalignoringcase', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\evaluate', + 2 => 'phpunit\\framework\\constraint\\tostring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualWithDelta.php' => + array ( + 0 => '0819f0848badd91dbdd658096b9caf4109cdf396', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\isequalwithdelta', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\evaluate', + 2 => 'phpunit\\framework\\constraint\\tostring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualCanonicalizing.php' => + array ( + 0 => '5613f94d296ebe82e0e76a662eaa68b0c2c78774', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\isequalcanonicalizing', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\evaluate', + 2 => 'phpunit\\framework\\constraint\\tostring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqual.php' => + array ( + 0 => '3c75abedd1f63e3c2173d5c8b0dffb08f4f94dcb', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\isequal', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\evaluate', + 2 => 'phpunit\\framework\\constraint\\tostring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Type/IsInstanceOf.php' => + array ( + 0 => 'd6e33e425c6e9ec848053b41aacfea188f9152c9', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\isinstanceof', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\matches', + 3 => 'phpunit\\framework\\constraint\\failuredescription', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Type/IsType.php' => + array ( + 0 => 'cfce2cd0550bfdf98a3e7129e048786eeb42e0ed', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\istype', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Type/IsNull.php' => + array ( + 0 => '4599659c28661d8f764f5765a08bf034cb2d3900', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\isnull', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\tostring', + 1 => 'phpunit\\framework\\constraint\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Object/ObjectEquals.php' => + array ( + 0 => 'ddf1d3722d4b156d34ac1a0ba43d3882e7c27d9d', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\objectequals', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\matches', + 3 => 'phpunit\\framework\\constraint\\failuredescription', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Object/ObjectHasProperty.php' => + array ( + 0 => '7831a52c99cf0b89f62d8aba13be5e1cfa6275e8', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\objecthasproperty', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\matches', + 3 => 'phpunit\\framework\\constraint\\failuredescription', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Constraint.php' => + array ( + 0 => '3b15eebef187215a7e44869aa1ad4d1609b6987f', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\constraint', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\evaluate', + 1 => 'phpunit\\framework\\constraint\\count', + 2 => 'phpunit\\framework\\constraint\\matches', + 3 => 'phpunit\\framework\\constraint\\fail', + 4 => 'phpunit\\framework\\constraint\\additionalfailuredescription', + 5 => 'phpunit\\framework\\constraint\\failuredescription', + 6 => 'phpunit\\framework\\constraint\\tostringincontext', + 7 => 'phpunit\\framework\\constraint\\failuredescriptionincontext', + 8 => 'phpunit\\framework\\constraint\\reduce', + 9 => 'phpunit\\framework\\constraint\\valuetotypestringfragment', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Boolean/IsFalse.php' => + array ( + 0 => '9afcd809037dc601f789c8f2a5d8cab1de76247b', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\isfalse', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\tostring', + 1 => 'phpunit\\framework\\constraint\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Boolean/IsTrue.php' => + array ( + 0 => 'a2a6ec5122e071282f748b1019d8e32e5d536ce1', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\istrue', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\tostring', + 1 => 'phpunit\\framework\\constraint\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php' => + array ( + 0 => 'c1a76a5e85e4b2b1ea9c297e36c43601a69afd8b', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\isidentical', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\evaluate', + 2 => 'phpunit\\framework\\constraint\\tostring', + 3 => 'phpunit\\framework\\constraint\\failuredescription', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/String/RegularExpression.php' => + array ( + 0 => '54c81243e6a9e2e997b476108919216001442aa9', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\regularexpression', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringEqualsStringIgnoringLineEndings.php' => + array ( + 0 => 'fc22c0fd6f94b910ec8a7f978f0a423fa06f5751', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\stringequalsstringignoringlineendings', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\matches', + 3 => 'phpunit\\framework\\constraint\\normalizelineendings', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringStartsWith.php' => + array ( + 0 => 'ef34fecf343687c0296b7f4a370aacd97892f7e5', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\stringstartswith', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/String/IsJson.php' => + array ( + 0 => '582323dc6d4a96589eb2fd8a64c275a5fca7e946', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\isjson', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\tostring', + 1 => 'phpunit\\framework\\constraint\\matches', + 2 => 'phpunit\\framework\\constraint\\failuredescription', + 3 => 'phpunit\\framework\\constraint\\determinejsonerror', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringMatchesFormatDescription.php' => + array ( + 0 => 'a52417ca5a531186ac369a1aa89ac28a3dbb341b', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\stringmatchesformatdescription', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\matches', + 3 => 'phpunit\\framework\\constraint\\failuredescription', + 4 => 'phpunit\\framework\\constraint\\additionalfailuredescription', + 5 => 'phpunit\\framework\\constraint\\regularexpressionforformatdescription', + 6 => 'phpunit\\framework\\constraint\\convertnewlines', + 7 => 'phpunit\\framework\\constraint\\differ', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringContains.php' => + array ( + 0 => '37fb984abc9a5b399c7bf5fcb88a00366db190a2', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\stringcontains', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\failuredescription', + 3 => 'phpunit\\framework\\constraint\\matches', + 4 => 'phpunit\\framework\\constraint\\getdetectedencoding', + 5 => 'phpunit\\framework\\constraint\\gethaystacklength', + 6 => 'phpunit\\framework\\constraint\\normalizelineendings', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringEndsWith.php' => + array ( + 0 => '0c51317a7d4429c4764ac531f880235a78eb5358', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\stringendswith', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionMessageIsOrContains.php' => + array ( + 0 => 'f4ed11a8a590468ae07ca6d95bf5406bd24be98a', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\exceptionmessageisorcontains', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\matches', + 3 => 'phpunit\\framework\\constraint\\failuredescription', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionMessageMatchesRegularExpression.php' => + array ( + 0 => 'f5e85f4179c13b1592195692d3472e1e265dd44b', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\exceptionmessagematchesregularexpression', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\matches', + 3 => 'phpunit\\framework\\constraint\\failuredescription', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Exception/Exception.php' => + array ( + 0 => 'f9725eec1c770c58b8b194a8809144ef003d32d8', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\exception', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\matches', + 3 => 'phpunit\\framework\\constraint\\failuredescription', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionCode.php' => + array ( + 0 => 'e3673a5d7d980deeeb5c9a725681ab031b3d5b04', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\exceptioncode', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\matches', + 3 => 'phpunit\\framework\\constraint\\failuredescription', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Callback.php' => + array ( + 0 => 'ee3082c9d00b981b130dfc436689190165800811', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\callback', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\tostring', + 2 => 'phpunit\\framework\\constraint\\isvariadic', + 3 => 'phpunit\\framework\\constraint\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalOr.php' => + array ( + 0 => '45dff4897570d72641495eea3baa77dd2f4519cd', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\logicalor', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\fromconstraints', + 1 => 'phpunit\\framework\\constraint\\operator', + 2 => 'phpunit\\framework\\constraint\\precedence', + 3 => 'phpunit\\framework\\constraint\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalAnd.php' => + array ( + 0 => '981695e1566cf79bbbd8e309bb1da0f07f980e9a', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\logicaland', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\fromconstraints', + 1 => 'phpunit\\framework\\constraint\\operator', + 2 => 'phpunit\\framework\\constraint\\precedence', + 3 => 'phpunit\\framework\\constraint\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalXor.php' => + array ( + 0 => '3fbd28a4d4fdf8280b141521fb2ad106cbc4c9c4', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\logicalxor', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\fromconstraints', + 1 => 'phpunit\\framework\\constraint\\operator', + 2 => 'phpunit\\framework\\constraint\\precedence', + 3 => 'phpunit\\framework\\constraint\\matches', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/Operator.php' => + array ( + 0 => '4f55f903d95b9b531d039490564c0dc00087b840', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\operator', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\operator', + 1 => 'phpunit\\framework\\constraint\\precedence', + 2 => 'phpunit\\framework\\constraint\\arity', + 3 => 'phpunit\\framework\\constraint\\checkconstraint', + 4 => 'phpunit\\framework\\constraint\\constraintneedsparentheses', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/BinaryOperator.php' => + array ( + 0 => '5ff114906e227049477e129fcddeccf53133f474', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\binaryoperator', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\arity', + 2 => 'phpunit\\framework\\constraint\\tostring', + 3 => 'phpunit\\framework\\constraint\\count', + 4 => 'phpunit\\framework\\constraint\\constraints', + 5 => 'phpunit\\framework\\constraint\\constraintneedsparentheses', + 6 => 'phpunit\\framework\\constraint\\reduce', + 7 => 'phpunit\\framework\\constraint\\constrainttostring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalNot.php' => + array ( + 0 => 'a05860521554b048cae57e3dce6325cc4c2ad0dc', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\logicalnot', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\negate', + 1 => 'phpunit\\framework\\constraint\\operator', + 2 => 'phpunit\\framework\\constraint\\precedence', + 3 => 'phpunit\\framework\\constraint\\matches', + 4 => 'phpunit\\framework\\constraint\\transformstring', + 5 => 'phpunit\\framework\\constraint\\reduce', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/UnaryOperator.php' => + array ( + 0 => '4faeafb047c1e29c5e71978a44c4e40727251ffc', + 1 => + array ( + 0 => 'phpunit\\framework\\constraint\\unaryoperator', + ), + 2 => + array ( + 0 => 'phpunit\\framework\\constraint\\__construct', + 1 => 'phpunit\\framework\\constraint\\arity', + 2 => 'phpunit\\framework\\constraint\\tostring', + 3 => 'phpunit\\framework\\constraint\\count', + 4 => 'phpunit\\framework\\constraint\\failuredescription', + 5 => 'phpunit\\framework\\constraint\\transformstring', + 6 => 'phpunit\\framework\\constraint\\constraint', + 7 => 'phpunit\\framework\\constraint\\constraintneedsparentheses', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/CodeCoverage.php' => + array ( + 0 => '42e1a3d8360af53c61e5d7d88ff1f176c54481d4', + 1 => + array ( + 0 => 'phpunit\\runner\\codecoverage', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\instance', + 1 => 'phpunit\\runner\\init', + 2 => 'phpunit\\runner\\isactive', + 3 => 'phpunit\\runner\\codecoverage', + 4 => 'phpunit\\runner\\driver', + 5 => 'phpunit\\runner\\start', + 6 => 'phpunit\\runner\\stop', + 7 => 'phpunit\\runner\\deactivate', + 8 => 'phpunit\\runner\\generatereports', + 9 => 'phpunit\\runner\\activate', + 10 => 'phpunit\\runner\\codecoveragegenerationstart', + 11 => 'phpunit\\runner\\codecoveragegenerationsucceeded', + 12 => 'phpunit\\runner\\codecoveragegenerationfailed', + 13 => 'phpunit\\runner\\timer', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/GarbageCollection/GarbageCollectionHandler.php' => + array ( + 0 => '2d39e8e06d9d31e04b920d534a65029c6c192fdc', + 1 => + array ( + 0 => 'phpunit\\runner\\garbagecollection\\garbagecollectionhandler', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\garbagecollection\\__construct', + 1 => 'phpunit\\runner\\garbagecollection\\executionstarted', + 2 => 'phpunit\\runner\\garbagecollection\\executionfinished', + 3 => 'phpunit\\runner\\garbagecollection\\testfinished', + 4 => 'phpunit\\runner\\garbagecollection\\registersubscribers', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/GarbageCollection/Subscriber/ExecutionStartedSubscriber.php' => + array ( + 0 => '747bfdde70f2a05aaffdc255d738370807f15993', + 1 => + array ( + 0 => 'phpunit\\runner\\garbagecollection\\executionstartedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\garbagecollection\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/GarbageCollection/Subscriber/ExecutionFinishedSubscriber.php' => + array ( + 0 => 'bf07931c4e20deb1f2632b8f1c501c7a52af45b5', + 1 => + array ( + 0 => 'phpunit\\runner\\garbagecollection\\executionfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\garbagecollection\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/GarbageCollection/Subscriber/Subscriber.php' => + array ( + 0 => '62ef70d249d113f98df9022d20a313ee9641609f', + 1 => + array ( + 0 => 'phpunit\\runner\\garbagecollection\\subscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\garbagecollection\\__construct', + 1 => 'phpunit\\runner\\garbagecollection\\handler', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/GarbageCollection/Subscriber/TestFinishedSubscriber.php' => + array ( + 0 => '6d4ef5a25714e32f8705b760787da3dddd74e0f5', + 1 => + array ( + 0 => 'phpunit\\runner\\garbagecollection\\testfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\garbagecollection\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Extension/ExtensionBootstrapper.php' => + array ( + 0 => '3984e78877408e818d70ce669cb9ab3a59605efc', + 1 => + array ( + 0 => 'phpunit\\runner\\extension\\extensionbootstrapper', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\extension\\__construct', + 1 => 'phpunit\\runner\\extension\\bootstrap', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Extension/PharLoader.php' => + array ( + 0 => '26ea05d2b686e69ccf75cca884348aac86ce76ec', + 1 => + array ( + 0 => 'phpunit\\runner\\extension\\pharloader', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\extension\\loadpharextensionsindirectory', + 1 => 'phpunit\\runner\\extension\\phpunitversion', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Extension/ParameterCollection.php' => + array ( + 0 => '1d4c1a2162168f187807ccb1714716a8a661af89', + 1 => + array ( + 0 => 'phpunit\\runner\\extension\\parametercollection', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\extension\\fromarray', + 1 => 'phpunit\\runner\\extension\\__construct', + 2 => 'phpunit\\runner\\extension\\has', + 3 => 'phpunit\\runner\\extension\\get', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Extension/Extension.php' => + array ( + 0 => 'ef3bbf58892806f549f9dbbaea4f985bae44d54b', + 1 => + array ( + 0 => 'phpunit\\runner\\extension\\extension', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\extension\\bootstrap', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Extension/Facade.php' => + array ( + 0 => '20c5f0c5f2718e48745477d2a71aeccd30e394d8', + 1 => + array ( + 0 => 'phpunit\\runner\\extension\\facade', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\extension\\registersubscribers', + 1 => 'phpunit\\runner\\extension\\registersubscriber', + 2 => 'phpunit\\runner\\extension\\registertracer', + 3 => 'phpunit\\runner\\extension\\replaceoutput', + 4 => 'phpunit\\runner\\extension\\replacesoutput', + 5 => 'phpunit\\runner\\extension\\replaceprogressoutput', + 6 => 'phpunit\\runner\\extension\\replacesprogressoutput', + 7 => 'phpunit\\runner\\extension\\replaceresultoutput', + 8 => 'phpunit\\runner\\extension\\replacesresultoutput', + 9 => 'phpunit\\runner\\extension\\requirecodecoveragecollection', + 10 => 'phpunit\\runner\\extension\\requirescodecoveragecollection', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/HookMethod/HookMethodCollection.php' => + array ( + 0 => 'da6d25ec844f9be74cf89c2998c491193395d1a1', + 1 => + array ( + 0 => 'phpunit\\runner\\hookmethodcollection', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\defaultbeforeclass', + 1 => 'phpunit\\runner\\defaultbefore', + 2 => 'phpunit\\runner\\defaultprecondition', + 3 => 'phpunit\\runner\\defaultpostcondition', + 4 => 'phpunit\\runner\\defaultafter', + 5 => 'phpunit\\runner\\defaultafterclass', + 6 => 'phpunit\\runner\\__construct', + 7 => 'phpunit\\runner\\add', + 8 => 'phpunit\\runner\\methodnamessortedbypriority', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/HookMethod/HookMethod.php' => + array ( + 0 => 'e50648610e6b9647b7dc8745730a277e79f50a8f', + 1 => + array ( + 0 => 'phpunit\\runner\\hookmethod', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\__construct', + 1 => 'phpunit\\runner\\methodname', + 2 => 'phpunit\\runner\\priority', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/DeprecationCollector/Collector.php' => + array ( + 0 => '1239a4a4158a4b68efce3d1f16686c0ecc024555', + 1 => + array ( + 0 => 'phpunit\\runner\\deprecationcollector\\collector', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\deprecationcollector\\__construct', + 1 => 'phpunit\\runner\\deprecationcollector\\deprecations', + 2 => 'phpunit\\runner\\deprecationcollector\\filtereddeprecations', + 3 => 'phpunit\\runner\\deprecationcollector\\testprepared', + 4 => 'phpunit\\runner\\deprecationcollector\\testtriggereddeprecation', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/DeprecationCollector/Subscriber/TestTriggeredDeprecationSubscriber.php' => + array ( + 0 => 'c876302174cdd4975a13bd589509e279d75496b0', + 1 => + array ( + 0 => 'phpunit\\runner\\deprecationcollector\\testtriggereddeprecationsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\deprecationcollector\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/DeprecationCollector/Subscriber/TestPreparedSubscriber.php' => + array ( + 0 => 'd796c2ebaab424117de996542a08ed9fdc66ceef', + 1 => + array ( + 0 => 'phpunit\\runner\\deprecationcollector\\testpreparedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\deprecationcollector\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/DeprecationCollector/Subscriber/Subscriber.php' => + array ( + 0 => 'c9a5f0e04e15c99e68f8372202f771df0c8f30e8', + 1 => + array ( + 0 => 'phpunit\\runner\\deprecationcollector\\subscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\deprecationcollector\\__construct', + 1 => 'phpunit\\runner\\deprecationcollector\\collector', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/DeprecationCollector/Facade.php' => + array ( + 0 => '756e395a07d5c48022c27f945c311f1b81ec6ebd', + 1 => + array ( + 0 => 'phpunit\\runner\\deprecationcollector\\facade', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\deprecationcollector\\init', + 1 => 'phpunit\\runner\\deprecationcollector\\deprecations', + 2 => 'phpunit\\runner\\deprecationcollector\\filtereddeprecations', + 3 => 'phpunit\\runner\\deprecationcollector\\collector', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/PHPT/PhptTestCase.php' => + array ( + 0 => '88e8a00098977f977bff8ece722c71cba94d0796', + 1 => + array ( + 0 => 'phpunit\\runner\\phpttestcase', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\__construct', + 1 => 'phpunit\\runner\\count', + 2 => 'phpunit\\runner\\run', + 3 => 'phpunit\\runner\\getname', + 4 => 'phpunit\\runner\\tostring', + 5 => 'phpunit\\runner\\usesdataprovider', + 6 => 'phpunit\\runner\\numberofassertionsperformed', + 7 => 'phpunit\\runner\\output', + 8 => 'phpunit\\runner\\hasoutput', + 9 => 'phpunit\\runner\\sortid', + 10 => 'phpunit\\runner\\provides', + 11 => 'phpunit\\runner\\requires', + 12 => 'phpunit\\runner\\valueobjectforevents', + 13 => 'phpunit\\runner\\parseinisection', + 14 => 'phpunit\\runner\\parseenvsection', + 15 => 'phpunit\\runner\\assertphptexpectation', + 16 => 'phpunit\\runner\\shouldtestbeskipped', + 17 => 'phpunit\\runner\\shouldruninsubprocess', + 18 => 'phpunit\\runner\\runcodeinlocalsandbox', + 19 => 'phpunit\\runner\\runclean', + 20 => 'phpunit\\runner\\parse', + 21 => 'phpunit\\runner\\parseexternal', + 22 => 'phpunit\\runner\\validate', + 23 => 'phpunit\\runner\\render', + 24 => 'phpunit\\runner\\getcoveragefiles', + 25 => 'phpunit\\runner\\renderforcoverage', + 26 => 'phpunit\\runner\\cleanupforcoverage', + 27 => 'phpunit\\runner\\stringifyini', + 28 => 'phpunit\\runner\\getlocationhintfromdiff', + 29 => 'phpunit\\runner\\getcleandiffline', + 30 => 'phpunit\\runner\\getlocationhint', + 31 => 'phpunit\\runner\\settings', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Writer.php' => + array ( + 0 => 'ab4cd7e9909cf22f722a46aaa34b91bd167587bc', + 1 => + array ( + 0 => 'phpunit\\runner\\baseline\\writer', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\baseline\\write', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Baseline.php' => + array ( + 0 => '56f74c1e3cc16aff409a3114760a8acb033547b9', + 1 => + array ( + 0 => 'phpunit\\runner\\baseline\\baseline', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\baseline\\add', + 1 => 'phpunit\\runner\\baseline\\has', + 2 => 'phpunit\\runner\\baseline\\groupedbyfileandline', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Issue.php' => + array ( + 0 => '231c1e113695c340eb6cb1ef3a4fb5b2b01c59a3', + 1 => + array ( + 0 => 'phpunit\\runner\\baseline\\issue', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\baseline\\from', + 1 => 'phpunit\\runner\\baseline\\__construct', + 2 => 'phpunit\\runner\\baseline\\file', + 3 => 'phpunit\\runner\\baseline\\line', + 4 => 'phpunit\\runner\\baseline\\hash', + 5 => 'phpunit\\runner\\baseline\\description', + 6 => 'phpunit\\runner\\baseline\\equals', + 7 => 'phpunit\\runner\\baseline\\calculatehash', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Reader.php' => + array ( + 0 => '5bf30b2f38f3a3660cd5e8b728671352c9139d99', + 1 => + array ( + 0 => 'phpunit\\runner\\baseline\\reader', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\baseline\\read', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Subscriber/TestTriggeredNoticeSubscriber.php' => + array ( + 0 => '4235df1ec535696e9525caa7736e793610cc8b5e', + 1 => + array ( + 0 => 'phpunit\\runner\\baseline\\testtriggerednoticesubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\baseline\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Subscriber/TestTriggeredWarningSubscriber.php' => + array ( + 0 => '34f2ae3c51397c3bcde8d2a91629e7ad19af5e43', + 1 => + array ( + 0 => 'phpunit\\runner\\baseline\\testtriggeredwarningsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\baseline\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Subscriber/TestTriggeredDeprecationSubscriber.php' => + array ( + 0 => '5f753ee25774e397b8e9ce1ed948fc1ebbcfe1e6', + 1 => + array ( + 0 => 'phpunit\\runner\\baseline\\testtriggereddeprecationsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\baseline\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Subscriber/TestTriggeredPhpDeprecationSubscriber.php' => + array ( + 0 => '64edaf67a744ff11fdba3a592c6e3cbded9e1fb4', + 1 => + array ( + 0 => 'phpunit\\runner\\baseline\\testtriggeredphpdeprecationsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\baseline\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Subscriber/TestTriggeredPhpWarningSubscriber.php' => + array ( + 0 => '97a44ea024b2f415a790e1fe6145b73e1306673b', + 1 => + array ( + 0 => 'phpunit\\runner\\baseline\\testtriggeredphpwarningsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\baseline\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Subscriber/Subscriber.php' => + array ( + 0 => '0b619539f3c34c4adc5db08303bb75ff62f2432b', + 1 => + array ( + 0 => 'phpunit\\runner\\baseline\\subscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\baseline\\__construct', + 1 => 'phpunit\\runner\\baseline\\generator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Subscriber/TestTriggeredPhpNoticeSubscriber.php' => + array ( + 0 => '52ac4e04306292ed7b35a7662fe06abd0a6b9d0a', + 1 => + array ( + 0 => 'phpunit\\runner\\baseline\\testtriggeredphpnoticesubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\baseline\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Generator.php' => + array ( + 0 => 'd32d2a7d03a4d74da3cf00e2e4dbd89981d03a4c', + 1 => + array ( + 0 => 'phpunit\\runner\\baseline\\generator', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\baseline\\__construct', + 1 => 'phpunit\\runner\\baseline\\baseline', + 2 => 'phpunit\\runner\\baseline\\testtriggeredissue', + 3 => 'phpunit\\runner\\baseline\\restrict', + 4 => 'phpunit\\runner\\baseline\\issuppressionignored', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Exception/FileDoesNotHaveLineException.php' => + array ( + 0 => 'eb6103b85c93cfecd16be8b17cc4b798721fa14c', + 1 => + array ( + 0 => 'phpunit\\runner\\baseline\\filedoesnothavelineexception', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\baseline\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Exception/CannotLoadBaselineException.php' => + array ( + 0 => 'd7152a793344d1c8ab56069395b40bffd9337c92', + 1 => + array ( + 0 => 'phpunit\\runner\\baseline\\cannotloadbaselineexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/RelativePathCalculator.php' => + array ( + 0 => '17a196e5ec5fdd8945ac6deaf89ecab8d56a79c5', + 1 => + array ( + 0 => 'phpunit\\runner\\baseline\\relativepathcalculator', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\baseline\\__construct', + 1 => 'phpunit\\runner\\baseline\\calculate', + 2 => 'phpunit\\runner\\baseline\\parts', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/TestResult.php' => + array ( + 0 => '54da13dfbe848516d08fe9439a930e1efef9553d', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testresult', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\__construct', + 1 => 'phpunit\\testrunner\\testresult\\numberoftestsrun', + 2 => 'phpunit\\testrunner\\testresult\\numberofassertions', + 3 => 'phpunit\\testrunner\\testresult\\testerroredevents', + 4 => 'phpunit\\testrunner\\testresult\\numberoftesterroredevents', + 5 => 'phpunit\\testrunner\\testresult\\hastesterroredevents', + 6 => 'phpunit\\testrunner\\testresult\\testfailedevents', + 7 => 'phpunit\\testrunner\\testresult\\numberoftestfailedevents', + 8 => 'phpunit\\testrunner\\testresult\\hastestfailedevents', + 9 => 'phpunit\\testrunner\\testresult\\testconsideredriskyevents', + 10 => 'phpunit\\testrunner\\testresult\\numberoftestswithtestconsideredriskyevents', + 11 => 'phpunit\\testrunner\\testresult\\hastestconsideredriskyevents', + 12 => 'phpunit\\testrunner\\testresult\\testsuiteskippedevents', + 13 => 'phpunit\\testrunner\\testresult\\numberoftestsuiteskippedevents', + 14 => 'phpunit\\testrunner\\testresult\\hastestsuiteskippedevents', + 15 => 'phpunit\\testrunner\\testresult\\testskippedevents', + 16 => 'phpunit\\testrunner\\testresult\\numberoftestskippedevents', + 17 => 'phpunit\\testrunner\\testresult\\hastestskippedevents', + 18 => 'phpunit\\testrunner\\testresult\\testmarkedincompleteevents', + 19 => 'phpunit\\testrunner\\testresult\\numberoftestmarkedincompleteevents', + 20 => 'phpunit\\testrunner\\testresult\\hastestmarkedincompleteevents', + 21 => 'phpunit\\testrunner\\testresult\\testtriggeredphpunitdeprecationevents', + 22 => 'phpunit\\testrunner\\testresult\\numberoftestswithtesttriggeredphpunitdeprecationevents', + 23 => 'phpunit\\testrunner\\testresult\\hastesttriggeredphpunitdeprecationevents', + 24 => 'phpunit\\testrunner\\testresult\\testtriggeredphpuniterrorevents', + 25 => 'phpunit\\testrunner\\testresult\\numberoftestswithtesttriggeredphpuniterrorevents', + 26 => 'phpunit\\testrunner\\testresult\\hastesttriggeredphpuniterrorevents', + 27 => 'phpunit\\testrunner\\testresult\\testtriggeredphpunitwarningevents', + 28 => 'phpunit\\testrunner\\testresult\\numberoftestswithtesttriggeredphpunitwarningevents', + 29 => 'phpunit\\testrunner\\testresult\\hastesttriggeredphpunitwarningevents', + 30 => 'phpunit\\testrunner\\testresult\\testrunnertriggereddeprecationevents', + 31 => 'phpunit\\testrunner\\testresult\\numberoftestrunnertriggereddeprecationevents', + 32 => 'phpunit\\testrunner\\testresult\\hastestrunnertriggereddeprecationevents', + 33 => 'phpunit\\testrunner\\testresult\\testrunnertriggeredwarningevents', + 34 => 'phpunit\\testrunner\\testresult\\numberoftestrunnertriggeredwarningevents', + 35 => 'phpunit\\testrunner\\testresult\\hastestrunnertriggeredwarningevents', + 36 => 'phpunit\\testrunner\\testresult\\wassuccessful', + 37 => 'phpunit\\testrunner\\testresult\\wassuccessfulignoringphpunitwarnings', + 38 => 'phpunit\\testrunner\\testresult\\wassuccessfulandnotesthasissues', + 39 => 'phpunit\\testrunner\\testresult\\hastestswithissues', + 40 => 'phpunit\\testrunner\\testresult\\errors', + 41 => 'phpunit\\testrunner\\testresult\\deprecations', + 42 => 'phpunit\\testrunner\\testresult\\notices', + 43 => 'phpunit\\testrunner\\testresult\\warnings', + 44 => 'phpunit\\testrunner\\testresult\\phpdeprecations', + 45 => 'phpunit\\testrunner\\testresult\\phpnotices', + 46 => 'phpunit\\testrunner\\testresult\\phpwarnings', + 47 => 'phpunit\\testrunner\\testresult\\hastests', + 48 => 'phpunit\\testrunner\\testresult\\haserrors', + 49 => 'phpunit\\testrunner\\testresult\\numberoferrors', + 50 => 'phpunit\\testrunner\\testresult\\hasdeprecations', + 51 => 'phpunit\\testrunner\\testresult\\hasphporuserdeprecations', + 52 => 'phpunit\\testrunner\\testresult\\numberofphporuserdeprecations', + 53 => 'phpunit\\testrunner\\testresult\\hasphpunitdeprecations', + 54 => 'phpunit\\testrunner\\testresult\\numberofphpunitdeprecations', + 55 => 'phpunit\\testrunner\\testresult\\numberofdeprecations', + 56 => 'phpunit\\testrunner\\testresult\\hasnotices', + 57 => 'phpunit\\testrunner\\testresult\\numberofnotices', + 58 => 'phpunit\\testrunner\\testresult\\haswarnings', + 59 => 'phpunit\\testrunner\\testresult\\numberofwarnings', + 60 => 'phpunit\\testrunner\\testresult\\hasincompletetests', + 61 => 'phpunit\\testrunner\\testresult\\hasriskytests', + 62 => 'phpunit\\testrunner\\testresult\\hasskippedtests', + 63 => 'phpunit\\testrunner\\testresult\\hasissuesignoredbybaseline', + 64 => 'phpunit\\testrunner\\testresult\\numberofissuesignoredbybaseline', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Collector.php' => + array ( + 0 => 'f03ca6e4a370c3fef6a606ff7cb5bf215179f995', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\collector', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\__construct', + 1 => 'phpunit\\testrunner\\testresult\\result', + 2 => 'phpunit\\testrunner\\testresult\\executionstarted', + 3 => 'phpunit\\testrunner\\testresult\\testsuiteskipped', + 4 => 'phpunit\\testrunner\\testresult\\testsuitestarted', + 5 => 'phpunit\\testrunner\\testresult\\testsuitefinished', + 6 => 'phpunit\\testrunner\\testresult\\testprepared', + 7 => 'phpunit\\testrunner\\testresult\\testfinished', + 8 => 'phpunit\\testrunner\\testresult\\beforetestclassmethoderrored', + 9 => 'phpunit\\testrunner\\testresult\\aftertestclassmethoderrored', + 10 => 'phpunit\\testrunner\\testresult\\testerrored', + 11 => 'phpunit\\testrunner\\testresult\\testfailed', + 12 => 'phpunit\\testrunner\\testresult\\testmarkedincomplete', + 13 => 'phpunit\\testrunner\\testresult\\testskipped', + 14 => 'phpunit\\testrunner\\testresult\\testconsideredrisky', + 15 => 'phpunit\\testrunner\\testresult\\testtriggereddeprecation', + 16 => 'phpunit\\testrunner\\testresult\\testtriggeredphpdeprecation', + 17 => 'phpunit\\testrunner\\testresult\\testtriggeredphpunitdeprecation', + 18 => 'phpunit\\testrunner\\testresult\\testtriggerederror', + 19 => 'phpunit\\testrunner\\testresult\\testtriggerednotice', + 20 => 'phpunit\\testrunner\\testresult\\testtriggeredphpnotice', + 21 => 'phpunit\\testrunner\\testresult\\testtriggeredwarning', + 22 => 'phpunit\\testrunner\\testresult\\testtriggeredphpwarning', + 23 => 'phpunit\\testrunner\\testresult\\testtriggeredphpuniterror', + 24 => 'phpunit\\testrunner\\testresult\\testtriggeredphpunitwarning', + 25 => 'phpunit\\testrunner\\testresult\\testrunnertriggereddeprecation', + 26 => 'phpunit\\testrunner\\testresult\\testrunnertriggeredwarning', + 27 => 'phpunit\\testrunner\\testresult\\haserroredtests', + 28 => 'phpunit\\testrunner\\testresult\\hasfailedtests', + 29 => 'phpunit\\testrunner\\testresult\\hasriskytests', + 30 => 'phpunit\\testrunner\\testresult\\hasskippedtests', + 31 => 'phpunit\\testrunner\\testresult\\hasincompletetests', + 32 => 'phpunit\\testrunner\\testresult\\hasdeprecations', + 33 => 'phpunit\\testrunner\\testresult\\hasnotices', + 34 => 'phpunit\\testrunner\\testresult\\haswarnings', + 35 => 'phpunit\\testrunner\\testresult\\issueid', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Issue.php' => + array ( + 0 => '4781650e42c426b2b92d922992fa1db12504c127', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\issues\\issue', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\issues\\from', + 1 => 'phpunit\\testrunner\\testresult\\issues\\__construct', + 2 => 'phpunit\\testrunner\\testresult\\issues\\triggeredby', + 3 => 'phpunit\\testrunner\\testresult\\issues\\file', + 4 => 'phpunit\\testrunner\\testresult\\issues\\line', + 5 => 'phpunit\\testrunner\\testresult\\issues\\description', + 6 => 'phpunit\\testrunner\\testresult\\issues\\triggeringtests', + 7 => 'phpunit\\testrunner\\testresult\\issues\\hasstacktrace', + 8 => 'phpunit\\testrunner\\testresult\\issues\\stacktrace', + 9 => 'phpunit\\testrunner\\testresult\\issues\\triggeredintest', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestErroredSubscriber.php' => + array ( + 0 => 'a0df996e06e5382ee46739ff209536afab4a9ce6', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testerroredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestConsideredRiskySubscriber.php' => + array ( + 0 => 'a9a1699cfbcebdf7fb9e9aa9c3a34c36b7f9afd6', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testconsideredriskysubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredNoticeSubscriber.php' => + array ( + 0 => 'ad80437d8bd8ea1420240a2e5218af6875641560', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testtriggerednoticesubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredPhpunitWarningSubscriber.php' => + array ( + 0 => '5a926bac9238018ce9deb92c155c1cedf87ce8d8', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testtriggeredphpunitwarningsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestFailedSubscriber.php' => + array ( + 0 => 'f962d0234cd132891bd077532fd5779bbcfad8f9', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testfailedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredPhpunitErrorSubscriber.php' => + array ( + 0 => '04a31c20384cf26aa4ba1ea9be0876ffa007df96', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testtriggeredphpuniterrorsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestSuiteSkippedSubscriber.php' => + array ( + 0 => '978bf7a5921ee34dfb16d6489d24483edee9a64a', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testsuiteskippedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredWarningSubscriber.php' => + array ( + 0 => 'a676c034367fb1891216b2256677238b1ffabd45', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testtriggeredwarningsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/ExecutionStartedSubscriber.php' => + array ( + 0 => 'd5aca45e296d4a03c197b583710a4f4c263bce45', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\executionstartedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/BeforeTestClassMethodErroredSubscriber.php' => + array ( + 0 => 'a0dfeac2b6cc57c51e6f0ae154f3c0418f9c8013', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\beforetestclassmethoderroredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestSuiteFinishedSubscriber.php' => + array ( + 0 => '3e5b95caee7d0a758f945443192eac12e915a09e', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testsuitefinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredDeprecationSubscriber.php' => + array ( + 0 => '1722f99e90fe9ca8a8a313c7bab246e74c225ae2', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testtriggereddeprecationsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredPhpDeprecationSubscriber.php' => + array ( + 0 => '508c0379fd534dd67e19657e13c4db7842192e86', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testtriggeredphpdeprecationsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestMarkedIncompleteSubscriber.php' => + array ( + 0 => '4a3d93ef7d5bab2880eb809bf6a865facdfbf5e6', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testmarkedincompletesubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestPreparedSubscriber.php' => + array ( + 0 => '3d5ae8f53e63f967c41cc51db1f18db2bf6c0f44', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testpreparedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestSuiteStartedSubscriber.php' => + array ( + 0 => '2bf565bd6f3fa5cb4c4bcc9aebca199379b5b623', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testsuitestartedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredPhpWarningSubscriber.php' => + array ( + 0 => '77b16e60978efbbdd0a09ad49204ccbc7a1dddcf', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testtriggeredphpwarningsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/AfterTestClassMethodErroredSubscriber.php' => + array ( + 0 => 'cd8e69ea7e7ab8c44d4132ccdfae594102bda2a2', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\aftertestclassmethoderroredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/Subscriber.php' => + array ( + 0 => '72c70fa5ca76d2946c9786c0f8d8016d286cb687', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\subscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\__construct', + 1 => 'phpunit\\testrunner\\testresult\\collector', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestSkippedSubscriber.php' => + array ( + 0 => 'a74c445c3865a4a5fe037b6a6ef3d2c49e96b530', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testskippedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestFinishedSubscriber.php' => + array ( + 0 => '36b4da980af2fd24ae9daee61f5691f0300806e3', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredErrorSubscriber.php' => + array ( + 0 => '9a6959ddd650af06a886625e366e23024c398059', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testtriggerederrorsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredPhpunitDeprecationSubscriber.php' => + array ( + 0 => 'ef09a510226b097b804cf7cde0e87b7e95337b84', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testtriggeredphpunitdeprecationsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestRunnerTriggeredDeprecationSubscriber.php' => + array ( + 0 => 'bc4aaf7788186335820e06108d1859cc577b841b', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testrunnertriggereddeprecationsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestRunnerTriggeredWarningSubscriber.php' => + array ( + 0 => 'd24b8fb5a1514774e7029357253df473c2fee926', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testrunnertriggeredwarningsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredPhpNoticeSubscriber.php' => + array ( + 0 => '9fea2e1469fdc56815948f165ff0bd165fcd040c', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\testtriggeredphpnoticesubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/PassedTests.php' => + array ( + 0 => '8ab13036866b58448baa6ea7b9813c06caff5b2d', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\passedtests', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\instance', + 1 => 'phpunit\\testrunner\\testresult\\testclasspassed', + 2 => 'phpunit\\testrunner\\testresult\\testmethodpassed', + 3 => 'phpunit\\testrunner\\testresult\\import', + 4 => 'phpunit\\testrunner\\testresult\\hastestclasspassed', + 5 => 'phpunit\\testrunner\\testresult\\hastestmethodpassed', + 6 => 'phpunit\\testrunner\\testresult\\isgreaterthan', + 7 => 'phpunit\\testrunner\\testresult\\returnvalue', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Facade.php' => + array ( + 0 => '8bd536dc20d1f336aa09cddf78fae8e03dfab777', + 1 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\facade', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\testresult\\init', + 1 => 'phpunit\\testrunner\\testresult\\result', + 2 => 'phpunit\\testrunner\\testresult\\shouldstop', + 3 => 'phpunit\\testrunner\\testresult\\collector', + 4 => 'phpunit\\testrunner\\testresult\\stopondeprecation', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/IssueFilter.php' => + array ( + 0 => '4f3d8abe60453f250d22a4ba2e79754dc3cc05ed', + 1 => + array ( + 0 => 'phpunit\\testrunner\\issuefilter', + ), + 2 => + array ( + 0 => 'phpunit\\testrunner\\__construct', + 1 => 'phpunit\\testrunner\\shouldbeprocessed', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Version.php' => + array ( + 0 => '8b36b6ab3acbb5db056cac55acf845ee1625fa29', + 1 => + array ( + 0 => 'phpunit\\runner\\version', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\id', + 1 => 'phpunit\\runner\\series', + 2 => 'phpunit\\runner\\majorversionnumber', + 3 => 'phpunit\\runner\\getversionstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestSuiteLoader.php' => + array ( + 0 => 'efe5814deb6b004bfb74b8c910aa9ceb70369694', + 1 => + array ( + 0 => 'phpunit\\runner\\testsuiteloader', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\load', + 1 => 'phpunit\\runner\\classnamefromfilename', + 2 => 'phpunit\\runner\\loadsuiteclassfile', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ErrorHandler.php' => + array ( + 0 => 'ec31dccf80bcd09221af713d853822b812856616', + 1 => + array ( + 0 => 'phpunit\\runner\\errorhandler', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\instance', + 1 => 'phpunit\\runner\\__construct', + 2 => 'phpunit\\runner\\__invoke', + 3 => 'phpunit\\runner\\enable', + 4 => 'phpunit\\runner\\disable', + 5 => 'phpunit\\runner\\usebaseline', + 6 => 'phpunit\\runner\\usedeprecationtriggers', + 7 => 'phpunit\\runner\\ignoredbybaseline', + 8 => 'phpunit\\runner\\trigger', + 9 => 'phpunit\\runner\\filteredstacktrace', + 10 => 'phpunit\\runner\\guessdeprecationframe', + 11 => 'phpunit\\runner\\errorstacktrace', + 12 => 'phpunit\\runner\\frameisfunction', + 13 => 'phpunit\\runner\\frameismethod', + 14 => 'phpunit\\runner\\stacktrace', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestSuiteSorter.php' => + array ( + 0 => '08bc237662d814bacb6c8ad6657e3dd37b842527', + 1 => + array ( + 0 => 'phpunit\\runner\\testsuitesorter', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\__construct', + 1 => 'phpunit\\runner\\reordertestsinsuite', + 2 => 'phpunit\\runner\\getoriginalexecutionorder', + 3 => 'phpunit\\runner\\getexecutionorder', + 4 => 'phpunit\\runner\\sort', + 5 => 'phpunit\\runner\\addsuitetodefectsortorder', + 6 => 'phpunit\\runner\\reverse', + 7 => 'phpunit\\runner\\randomize', + 8 => 'phpunit\\runner\\sortdefectsfirst', + 9 => 'phpunit\\runner\\sortbyduration', + 10 => 'phpunit\\runner\\sortbysize', + 11 => 'phpunit\\runner\\cmpdefectpriorityandtime', + 12 => 'phpunit\\runner\\cmpduration', + 13 => 'phpunit\\runner\\cmpsize', + 14 => 'phpunit\\runner\\resolvedependencies', + 15 => 'phpunit\\runner\\calculatetestexecutionorder', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Filter/Factory.php' => + array ( + 0 => 'd885ffa6990e862af0b1babb9d1bab0c5899fb65', + 1 => + array ( + 0 => 'phpunit\\runner\\filter\\factory', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\filter\\addtestidfilter', + 1 => 'phpunit\\runner\\filter\\addincludegroupfilter', + 2 => 'phpunit\\runner\\filter\\addexcludegroupfilter', + 3 => 'phpunit\\runner\\filter\\addincludenamefilter', + 4 => 'phpunit\\runner\\filter\\addexcludenamefilter', + 5 => 'phpunit\\runner\\filter\\factory', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Filter/IncludeGroupFilterIterator.php' => + array ( + 0 => 'b6f00ae478f2fb2e4f84947a01506612cbbb47fc', + 1 => + array ( + 0 => 'phpunit\\runner\\filter\\includegroupfilteriterator', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\filter\\doaccept', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Filter/GroupFilterIterator.php' => + array ( + 0 => '5c6189301c72cdddf9e56480ca0886457ea05615', + 1 => + array ( + 0 => 'phpunit\\runner\\filter\\groupfilteriterator', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\filter\\__construct', + 1 => 'phpunit\\runner\\filter\\accept', + 2 => 'phpunit\\runner\\filter\\doaccept', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Filter/IncludeNameFilterIterator.php' => + array ( + 0 => '0f6793f63a72575e560accd57bef8570c23181e7', + 1 => + array ( + 0 => 'phpunit\\runner\\filter\\includenamefilteriterator', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\filter\\doaccept', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Filter/NameFilterIterator.php' => + array ( + 0 => '627288ea754610018eef1b64ac8736a482ba4264', + 1 => + array ( + 0 => 'phpunit\\runner\\filter\\namefilteriterator', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\filter\\__construct', + 1 => 'phpunit\\runner\\filter\\accept', + 2 => 'phpunit\\runner\\filter\\doaccept', + 3 => 'phpunit\\runner\\filter\\preparefilter', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Filter/ExcludeNameFilterIterator.php' => + array ( + 0 => '62c18ae639d7fc364fa9fcd1e33d0afe9142219e', + 1 => + array ( + 0 => 'phpunit\\runner\\filter\\excludenamefilteriterator', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\filter\\doaccept', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Filter/ExcludeGroupFilterIterator.php' => + array ( + 0 => '5beca3fe195a7b21d3b9f3ef40b0272ecfd9e5d2', + 1 => + array ( + 0 => 'phpunit\\runner\\filter\\excludegroupfilteriterator', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\filter\\doaccept', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Filter/TestIdFilterIterator.php' => + array ( + 0 => '5db2e5487f7839ed2ee44867aab8fb7ae5b29ef6', + 1 => + array ( + 0 => 'phpunit\\runner\\filter\\testidfilteriterator', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\filter\\__construct', + 1 => 'phpunit\\runner\\filter\\accept', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/ErrorException.php' => + array ( + 0 => 'dd6f4873fb85566825400dd5649b21e1a0dee0d1', + 1 => + array ( + 0 => 'phpunit\\runner\\errorexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/UnsupportedPhptSectionException.php' => + array ( + 0 => '577dae245db27001e38e4a43917ae59543c1ffe2', + 1 => + array ( + 0 => 'phpunit\\runner\\unsupportedphptsectionexception', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/ClassDoesNotExtendTestCaseException.php' => + array ( + 0 => 'c02a73890af68f7c47bb06e95e12a42e7fe04570', + 1 => + array ( + 0 => 'phpunit\\runner\\classdoesnotextendtestcaseexception', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/ClassIsAbstractException.php' => + array ( + 0 => 'e24d4942908ffaed1af7769eae709049bb5059e6', + 1 => + array ( + 0 => 'phpunit\\runner\\classisabstractexception', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/FileDoesNotExistException.php' => + array ( + 0 => '12dba348025b49ab3155851d61df9b67e71493b8', + 1 => + array ( + 0 => 'phpunit\\runner\\filedoesnotexistexception', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/PhptExternalFileCannotBeLoadedException.php' => + array ( + 0 => 'd2b906a77ff3445e874e697cbf29926af641037c', + 1 => + array ( + 0 => 'phpunit\\runner\\phptexternalfilecannotbeloadedexception', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/InvalidPhptFileException.php' => + array ( + 0 => '90c666e76524a90dacfeb1f18261bbb4ef84dd6a', + 1 => + array ( + 0 => 'phpunit\\runner\\invalidphptfileexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/DirectoryDoesNotExistException.php' => + array ( + 0 => '754a25423f4c786cef50ba21f9f14dac7b4123bf', + 1 => + array ( + 0 => 'phpunit\\runner\\directorydoesnotexistexception', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/ParameterDoesNotExistException.php' => + array ( + 0 => '9246d8b3f311a5e71393f649ac695693e72725e7', + 1 => + array ( + 0 => 'phpunit\\runner\\parameterdoesnotexistexception', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/ClassCannotBeFoundException.php' => + array ( + 0 => '61c2de0a4b85168ebdf9bce84fd2e1b697a6ec9b', + 1 => + array ( + 0 => 'phpunit\\runner\\classcannotbefoundexception', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/Exception.php' => + array ( + 0 => '7054bf0ecb6a86f8168dc75c6f4bd08fcdbb71df', + 1 => + array ( + 0 => 'phpunit\\runner\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/InvalidOrderException.php' => + array ( + 0 => '56a5bde3a8b085da5fa8d7984fd56cf2ddbd9459', + 1 => + array ( + 0 => 'phpunit\\runner\\invalidorderexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/ResultCache.php' => + array ( + 0 => '3996b78a4f441ae7508b3632069bda66bba1e595', + 1 => + array ( + 0 => 'phpunit\\runner\\resultcache\\resultcache', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\resultcache\\setstatus', + 1 => 'phpunit\\runner\\resultcache\\status', + 2 => 'phpunit\\runner\\resultcache\\settime', + 3 => 'phpunit\\runner\\resultcache\\time', + 4 => 'phpunit\\runner\\resultcache\\load', + 5 => 'phpunit\\runner\\resultcache\\persist', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/NullResultCache.php' => + array ( + 0 => '852c36e0ef2992e7d3535a612db5bc505e5c3a3b', + 1 => + array ( + 0 => 'phpunit\\runner\\resultcache\\nullresultcache', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\resultcache\\setstatus', + 1 => 'phpunit\\runner\\resultcache\\status', + 2 => 'phpunit\\runner\\resultcache\\settime', + 3 => 'phpunit\\runner\\resultcache\\time', + 4 => 'phpunit\\runner\\resultcache\\load', + 5 => 'phpunit\\runner\\resultcache\\persist', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/DefaultResultCache.php' => + array ( + 0 => '8ab06d8f0b3dd9fb0eb884e854b9a4bfdcf2c99b', + 1 => + array ( + 0 => 'phpunit\\runner\\resultcache\\defaultresultcache', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\resultcache\\__construct', + 1 => 'phpunit\\runner\\resultcache\\setstatus', + 2 => 'phpunit\\runner\\resultcache\\status', + 3 => 'phpunit\\runner\\resultcache\\settime', + 4 => 'phpunit\\runner\\resultcache\\time', + 5 => 'phpunit\\runner\\resultcache\\mergewith', + 6 => 'phpunit\\runner\\resultcache\\load', + 7 => 'phpunit\\runner\\resultcache\\persist', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestErroredSubscriber.php' => + array ( + 0 => '19ead95535e9657070ec8e12ffa8db900b8773a4', + 1 => + array ( + 0 => 'phpunit\\runner\\resultcache\\testerroredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\resultcache\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestConsideredRiskySubscriber.php' => + array ( + 0 => '077f3e2d7c36fe8dcdf8c49c6298c90e9942a832', + 1 => + array ( + 0 => 'phpunit\\runner\\resultcache\\testconsideredriskysubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\resultcache\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestFailedSubscriber.php' => + array ( + 0 => '3473b244a1dbf52787414e9b87cd424eeb3e9c37', + 1 => + array ( + 0 => 'phpunit\\runner\\resultcache\\testfailedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\resultcache\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestSuiteFinishedSubscriber.php' => + array ( + 0 => 'cd9fccd76386c14dff8bac0550e81f294a0702ff', + 1 => + array ( + 0 => 'phpunit\\runner\\resultcache\\testsuitefinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\resultcache\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestMarkedIncompleteSubscriber.php' => + array ( + 0 => 'be30729f47277c8207fed059086304744011ac9f', + 1 => + array ( + 0 => 'phpunit\\runner\\resultcache\\testmarkedincompletesubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\resultcache\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestPreparedSubscriber.php' => + array ( + 0 => 'c7842b40a264b07507ca0f474bb5e56382c072d9', + 1 => + array ( + 0 => 'phpunit\\runner\\resultcache\\testpreparedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\resultcache\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestSuiteStartedSubscriber.php' => + array ( + 0 => '4eb159369d392dd4540ce42ced5f265c834e653e', + 1 => + array ( + 0 => 'phpunit\\runner\\resultcache\\testsuitestartedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\resultcache\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/Subscriber.php' => + array ( + 0 => '5f668d4651205fbee1ca0e6be339a2624d2f2ccb', + 1 => + array ( + 0 => 'phpunit\\runner\\resultcache\\subscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\resultcache\\__construct', + 1 => 'phpunit\\runner\\resultcache\\handler', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestSkippedSubscriber.php' => + array ( + 0 => 'e35fe6320131f842be8874d7eebde33e48b9ad0d', + 1 => + array ( + 0 => 'phpunit\\runner\\resultcache\\testskippedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\resultcache\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestFinishedSubscriber.php' => + array ( + 0 => 'd3988c5d0dcf9486a859fdcb5cdf94490c34a1d6', + 1 => + array ( + 0 => 'phpunit\\runner\\resultcache\\testfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\resultcache\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/ResultCacheHandler.php' => + array ( + 0 => 'ef1e42c6cd8556a02132b39bbb56f776b92910fd', + 1 => + array ( + 0 => 'phpunit\\runner\\resultcache\\resultcachehandler', + ), + 2 => + array ( + 0 => 'phpunit\\runner\\resultcache\\__construct', + 1 => 'phpunit\\runner\\resultcache\\testsuitestarted', + 2 => 'phpunit\\runner\\resultcache\\testsuitefinished', + 3 => 'phpunit\\runner\\resultcache\\testprepared', + 4 => 'phpunit\\runner\\resultcache\\testmarkedincomplete', + 5 => 'phpunit\\runner\\resultcache\\testconsideredrisky', + 6 => 'phpunit\\runner\\resultcache\\testerrored', + 7 => 'phpunit\\runner\\resultcache\\testfailed', + 8 => 'phpunit\\runner\\resultcache\\testskipped', + 9 => 'phpunit\\runner\\resultcache\\testfinished', + 10 => 'phpunit\\runner\\resultcache\\duration', + 11 => 'phpunit\\runner\\resultcache\\registersubscribers', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Exception.php' => + array ( + 0 => 'e5000e38bae56fc2720fc6fef23404d4c205ae17', + 1 => + array ( + 0 => 'phpunit\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Tracer.php' => + array ( + 0 => 'f4a6fe8b355b5d22e07ccfe36f22ae461c38742c', + 1 => + array ( + 0 => 'phpunit\\event\\tracer\\tracer', + ), + 2 => + array ( + 0 => 'phpunit\\event\\tracer\\trace', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Emitter/DispatchingEmitter.php' => + array ( + 0 => 'ec01a0acadd9306c56e6ba1daf76a3b0875ec68a', + 1 => + array ( + 0 => 'phpunit\\event\\dispatchingemitter', + ), + 2 => + array ( + 0 => 'phpunit\\event\\__construct', + 1 => 'phpunit\\event\\applicationstarted', + 2 => 'phpunit\\event\\testrunnerstarted', + 3 => 'phpunit\\event\\testrunnerconfigured', + 4 => 'phpunit\\event\\testrunnerbootstrapfinished', + 5 => 'phpunit\\event\\testrunnerloadedextensionfromphar', + 6 => 'phpunit\\event\\testrunnerbootstrappedextension', + 7 => 'phpunit\\event\\dataprovidermethodcalled', + 8 => 'phpunit\\event\\dataprovidermethodfinished', + 9 => 'phpunit\\event\\testsuiteloaded', + 10 => 'phpunit\\event\\testsuitefiltered', + 11 => 'phpunit\\event\\testsuitesorted', + 12 => 'phpunit\\event\\testrunnereventfacadesealed', + 13 => 'phpunit\\event\\testrunnerexecutionstarted', + 14 => 'phpunit\\event\\testrunnerdisabledgarbagecollection', + 15 => 'phpunit\\event\\testrunnertriggeredgarbagecollection', + 16 => 'phpunit\\event\\testrunnerstartedchildprocess', + 17 => 'phpunit\\event\\testrunnerfinishedchildprocess', + 18 => 'phpunit\\event\\testsuiteskipped', + 19 => 'phpunit\\event\\testsuitestarted', + 20 => 'phpunit\\event\\testpreparationstarted', + 21 => 'phpunit\\event\\testpreparationfailed', + 22 => 'phpunit\\event\\testbeforefirsttestmethodcalled', + 23 => 'phpunit\\event\\testbeforefirsttestmethoderrored', + 24 => 'phpunit\\event\\testbeforefirsttestmethodfinished', + 25 => 'phpunit\\event\\testbeforetestmethodcalled', + 26 => 'phpunit\\event\\testbeforetestmethoderrored', + 27 => 'phpunit\\event\\testbeforetestmethodfinished', + 28 => 'phpunit\\event\\testpreconditioncalled', + 29 => 'phpunit\\event\\testpreconditionerrored', + 30 => 'phpunit\\event\\testpreconditionfinished', + 31 => 'phpunit\\event\\testprepared', + 32 => 'phpunit\\event\\testregisteredcomparator', + 33 => 'phpunit\\event\\testcreatedmockobject', + 34 => 'phpunit\\event\\testcreatedmockobjectforintersectionofinterfaces', + 35 => 'phpunit\\event\\testcreatedmockobjectfortrait', + 36 => 'phpunit\\event\\testcreatedmockobjectforabstractclass', + 37 => 'phpunit\\event\\testcreatedmockobjectfromwsdl', + 38 => 'phpunit\\event\\testcreatedpartialmockobject', + 39 => 'phpunit\\event\\testcreatedtestproxy', + 40 => 'phpunit\\event\\testcreatedstub', + 41 => 'phpunit\\event\\testcreatedstubforintersectionofinterfaces', + 42 => 'phpunit\\event\\testerrored', + 43 => 'phpunit\\event\\testfailed', + 44 => 'phpunit\\event\\testpassed', + 45 => 'phpunit\\event\\testconsideredrisky', + 46 => 'phpunit\\event\\testmarkedasincomplete', + 47 => 'phpunit\\event\\testskipped', + 48 => 'phpunit\\event\\testtriggeredphpunitdeprecation', + 49 => 'phpunit\\event\\testtriggeredphpdeprecation', + 50 => 'phpunit\\event\\testtriggereddeprecation', + 51 => 'phpunit\\event\\testtriggerederror', + 52 => 'phpunit\\event\\testtriggerednotice', + 53 => 'phpunit\\event\\testtriggeredphpnotice', + 54 => 'phpunit\\event\\testtriggeredwarning', + 55 => 'phpunit\\event\\testtriggeredphpwarning', + 56 => 'phpunit\\event\\testtriggeredphpuniterror', + 57 => 'phpunit\\event\\testtriggeredphpunitwarning', + 58 => 'phpunit\\event\\testprintedunexpectedoutput', + 59 => 'phpunit\\event\\testfinished', + 60 => 'phpunit\\event\\testpostconditioncalled', + 61 => 'phpunit\\event\\testpostconditionerrored', + 62 => 'phpunit\\event\\testpostconditionfinished', + 63 => 'phpunit\\event\\testaftertestmethodcalled', + 64 => 'phpunit\\event\\testaftertestmethoderrored', + 65 => 'phpunit\\event\\testaftertestmethodfinished', + 66 => 'phpunit\\event\\testafterlasttestmethodcalled', + 67 => 'phpunit\\event\\testafterlasttestmethoderrored', + 68 => 'phpunit\\event\\testafterlasttestmethodfinished', + 69 => 'phpunit\\event\\testsuitefinished', + 70 => 'phpunit\\event\\testrunnertriggereddeprecation', + 71 => 'phpunit\\event\\testrunnertriggeredwarning', + 72 => 'phpunit\\event\\testrunnerenabledgarbagecollection', + 73 => 'phpunit\\event\\testrunnerexecutionaborted', + 74 => 'phpunit\\event\\testrunnerexecutionfinished', + 75 => 'phpunit\\event\\testrunnerfinished', + 76 => 'phpunit\\event\\applicationfinished', + 77 => 'phpunit\\event\\telemetryinfo', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Emitter/Emitter.php' => + array ( + 0 => 'a9f352e97e73a32587eebcd6e2d67befac63e85c', + 1 => + array ( + 0 => 'phpunit\\event\\emitter', + ), + 2 => + array ( + 0 => 'phpunit\\event\\applicationstarted', + 1 => 'phpunit\\event\\testrunnerstarted', + 2 => 'phpunit\\event\\testrunnerconfigured', + 3 => 'phpunit\\event\\testrunnerbootstrapfinished', + 4 => 'phpunit\\event\\testrunnerloadedextensionfromphar', + 5 => 'phpunit\\event\\testrunnerbootstrappedextension', + 6 => 'phpunit\\event\\dataprovidermethodcalled', + 7 => 'phpunit\\event\\dataprovidermethodfinished', + 8 => 'phpunit\\event\\testsuiteloaded', + 9 => 'phpunit\\event\\testsuitefiltered', + 10 => 'phpunit\\event\\testsuitesorted', + 11 => 'phpunit\\event\\testrunnereventfacadesealed', + 12 => 'phpunit\\event\\testrunnerexecutionstarted', + 13 => 'phpunit\\event\\testrunnerdisabledgarbagecollection', + 14 => 'phpunit\\event\\testrunnertriggeredgarbagecollection', + 15 => 'phpunit\\event\\testsuiteskipped', + 16 => 'phpunit\\event\\testsuitestarted', + 17 => 'phpunit\\event\\testpreparationstarted', + 18 => 'phpunit\\event\\testpreparationfailed', + 19 => 'phpunit\\event\\testbeforefirsttestmethodcalled', + 20 => 'phpunit\\event\\testbeforefirsttestmethoderrored', + 21 => 'phpunit\\event\\testbeforefirsttestmethodfinished', + 22 => 'phpunit\\event\\testbeforetestmethodcalled', + 23 => 'phpunit\\event\\testbeforetestmethoderrored', + 24 => 'phpunit\\event\\testbeforetestmethodfinished', + 25 => 'phpunit\\event\\testpreconditioncalled', + 26 => 'phpunit\\event\\testpreconditionerrored', + 27 => 'phpunit\\event\\testpreconditionfinished', + 28 => 'phpunit\\event\\testprepared', + 29 => 'phpunit\\event\\testregisteredcomparator', + 30 => 'phpunit\\event\\testcreatedmockobject', + 31 => 'phpunit\\event\\testcreatedmockobjectforintersectionofinterfaces', + 32 => 'phpunit\\event\\testcreatedmockobjectfortrait', + 33 => 'phpunit\\event\\testcreatedmockobjectforabstractclass', + 34 => 'phpunit\\event\\testcreatedmockobjectfromwsdl', + 35 => 'phpunit\\event\\testcreatedpartialmockobject', + 36 => 'phpunit\\event\\testcreatedtestproxy', + 37 => 'phpunit\\event\\testcreatedstub', + 38 => 'phpunit\\event\\testcreatedstubforintersectionofinterfaces', + 39 => 'phpunit\\event\\testerrored', + 40 => 'phpunit\\event\\testfailed', + 41 => 'phpunit\\event\\testpassed', + 42 => 'phpunit\\event\\testconsideredrisky', + 43 => 'phpunit\\event\\testmarkedasincomplete', + 44 => 'phpunit\\event\\testskipped', + 45 => 'phpunit\\event\\testtriggeredphpunitdeprecation', + 46 => 'phpunit\\event\\testtriggeredphpdeprecation', + 47 => 'phpunit\\event\\testtriggereddeprecation', + 48 => 'phpunit\\event\\testtriggerederror', + 49 => 'phpunit\\event\\testtriggerednotice', + 50 => 'phpunit\\event\\testtriggeredphpnotice', + 51 => 'phpunit\\event\\testtriggeredwarning', + 52 => 'phpunit\\event\\testtriggeredphpwarning', + 53 => 'phpunit\\event\\testtriggeredphpuniterror', + 54 => 'phpunit\\event\\testtriggeredphpunitwarning', + 55 => 'phpunit\\event\\testprintedunexpectedoutput', + 56 => 'phpunit\\event\\testfinished', + 57 => 'phpunit\\event\\testpostconditioncalled', + 58 => 'phpunit\\event\\testpostconditionerrored', + 59 => 'phpunit\\event\\testpostconditionfinished', + 60 => 'phpunit\\event\\testaftertestmethodcalled', + 61 => 'phpunit\\event\\testaftertestmethoderrored', + 62 => 'phpunit\\event\\testaftertestmethodfinished', + 63 => 'phpunit\\event\\testafterlasttestmethodcalled', + 64 => 'phpunit\\event\\testafterlasttestmethoderrored', + 65 => 'phpunit\\event\\testafterlasttestmethodfinished', + 66 => 'phpunit\\event\\testsuitefinished', + 67 => 'phpunit\\event\\testrunnerstartedchildprocess', + 68 => 'phpunit\\event\\testrunnerfinishedchildprocess', + 69 => 'phpunit\\event\\testrunnertriggereddeprecation', + 70 => 'phpunit\\event\\testrunnertriggeredwarning', + 71 => 'phpunit\\event\\testrunnerenabledgarbagecollection', + 72 => 'phpunit\\event\\testrunnerexecutionaborted', + 73 => 'phpunit\\event\\testrunnerexecutionfinished', + 74 => 'phpunit\\event\\testrunnerfinished', + 75 => 'phpunit\\event\\applicationfinished', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Dispatcher/CollectingDispatcher.php' => + array ( + 0 => '6279ec088efc0e8b75ebe1cb2033d43655c22864', + 1 => + array ( + 0 => 'phpunit\\event\\collectingdispatcher', + ), + 2 => + array ( + 0 => 'phpunit\\event\\__construct', + 1 => 'phpunit\\event\\dispatch', + 2 => 'phpunit\\event\\flush', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Dispatcher/Dispatcher.php' => + array ( + 0 => '07297689376316d826b926d9ea8193865cc3b680', + 1 => + array ( + 0 => 'phpunit\\event\\dispatcher', + ), + 2 => + array ( + 0 => 'phpunit\\event\\dispatch', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Dispatcher/DeferringDispatcher.php' => + array ( + 0 => 'e55191b2209ecb9374d7b9a1f25ee75b70d35b3e', + 1 => + array ( + 0 => 'phpunit\\event\\deferringdispatcher', + ), + 2 => + array ( + 0 => 'phpunit\\event\\__construct', + 1 => 'phpunit\\event\\registertracer', + 2 => 'phpunit\\event\\registersubscriber', + 3 => 'phpunit\\event\\dispatch', + 4 => 'phpunit\\event\\flush', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Dispatcher/SubscribableDispatcher.php' => + array ( + 0 => 'd6d572d61a928b5fa0c4c82727d143748b7ec557', + 1 => + array ( + 0 => 'phpunit\\event\\subscribabledispatcher', + ), + 2 => + array ( + 0 => 'phpunit\\event\\registersubscriber', + 1 => 'phpunit\\event\\registertracer', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Dispatcher/DirectDispatcher.php' => + array ( + 0 => '1466a378735a040da975f47d31b2a13d087efea3', + 1 => + array ( + 0 => 'phpunit\\event\\directdispatcher', + ), + 2 => + array ( + 0 => 'phpunit\\event\\__construct', + 1 => 'phpunit\\event\\registertracer', + 2 => 'phpunit\\event\\registersubscriber', + 3 => 'phpunit\\event\\dispatch', + 4 => 'phpunit\\event\\handlethrowable', + 5 => 'phpunit\\event\\isthrowablefromthirdpartysubscriber', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestData/DataFromDataProvider.php' => + array ( + 0 => '533b3be9024a8f178cb746dd9a3c7b631475e923', + 1 => + array ( + 0 => 'phpunit\\event\\testdata\\datafromdataprovider', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testdata\\from', + 1 => 'phpunit\\event\\testdata\\__construct', + 2 => 'phpunit\\event\\testdata\\datasetname', + 3 => 'phpunit\\event\\testdata\\dataasstringforresultoutput', + 4 => 'phpunit\\event\\testdata\\isfromdataprovider', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestData/TestDataCollectionIterator.php' => + array ( + 0 => 'f2d6fb89c814d410455fa0505a815fbbead473ce', + 1 => + array ( + 0 => 'phpunit\\event\\testdata\\testdatacollectioniterator', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testdata\\__construct', + 1 => 'phpunit\\event\\testdata\\rewind', + 2 => 'phpunit\\event\\testdata\\valid', + 3 => 'phpunit\\event\\testdata\\key', + 4 => 'phpunit\\event\\testdata\\current', + 5 => 'phpunit\\event\\testdata\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestData/TestDataCollection.php' => + array ( + 0 => '6a6479c8cca6d2c2d5ff02b532b85b4a94fb6ef2', + 1 => + array ( + 0 => 'phpunit\\event\\testdata\\testdatacollection', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testdata\\fromarray', + 1 => 'phpunit\\event\\testdata\\__construct', + 2 => 'phpunit\\event\\testdata\\asarray', + 3 => 'phpunit\\event\\testdata\\count', + 4 => 'phpunit\\event\\testdata\\hasdatafromdataprovider', + 5 => 'phpunit\\event\\testdata\\datafromdataprovider', + 6 => 'phpunit\\event\\testdata\\getiterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestData/TestData.php' => + array ( + 0 => 'b6508816c59d373d756baaa76ec43c22a9fddee7', + 1 => + array ( + 0 => 'phpunit\\event\\testdata\\testdata', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testdata\\__construct', + 1 => 'phpunit\\event\\testdata\\data', + 2 => 'phpunit\\event\\testdata\\isfromdataprovider', + 3 => 'phpunit\\event\\testdata\\isfromtestdependency', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestData/DataFromTestDependency.php' => + array ( + 0 => '8f4c2f91fed3d5a363c7b68cc82aee60b67d92ba', + 1 => + array ( + 0 => 'phpunit\\event\\testdata\\datafromtestdependency', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testdata\\from', + 1 => 'phpunit\\event\\testdata\\isfromtestdependency', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestMethod.php' => + array ( + 0 => '30c6cdd7f491c7f82e8eb9e7e888286cf37978fa', + 1 => + array ( + 0 => 'phpunit\\event\\code\\testmethod', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\__construct', + 1 => 'phpunit\\event\\code\\classname', + 2 => 'phpunit\\event\\code\\methodname', + 3 => 'phpunit\\event\\code\\line', + 4 => 'phpunit\\event\\code\\testdox', + 5 => 'phpunit\\event\\code\\metadata', + 6 => 'phpunit\\event\\code\\testdata', + 7 => 'phpunit\\event\\code\\istestmethod', + 8 => 'phpunit\\event\\code\\id', + 9 => 'phpunit\\event\\code\\namewithclass', + 10 => 'phpunit\\event\\code\\name', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestDox.php' => + array ( + 0 => '6e4658da08c4b0d68ccb304c7e2ab6514b122bb3', + 1 => + array ( + 0 => 'phpunit\\event\\code\\testdox', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\__construct', + 1 => 'phpunit\\event\\code\\prettifiedclassname', + 2 => 'phpunit\\event\\code\\prettifiedmethodname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestDoxBuilder.php' => + array ( + 0 => 'a55917f182bd014d13d66f6bf842e6aaf07cef19', + 1 => + array ( + 0 => 'phpunit\\event\\code\\testdoxbuilder', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\fromtestcase', + 1 => 'phpunit\\event\\code\\fromclassnameandmethodname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestCollection.php' => + array ( + 0 => 'e831b9c0a0aec1695f8877b7153f55bb4d4275de', + 1 => + array ( + 0 => 'phpunit\\event\\code\\testcollection', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\fromarray', + 1 => 'phpunit\\event\\code\\__construct', + 2 => 'phpunit\\event\\code\\asarray', + 3 => 'phpunit\\event\\code\\count', + 4 => 'phpunit\\event\\code\\getiterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/Test.php' => + array ( + 0 => '72c759792bc90a2efda2b04c86eb614868f168ee', + 1 => + array ( + 0 => 'phpunit\\event\\code\\test', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\__construct', + 1 => 'phpunit\\event\\code\\file', + 2 => 'phpunit\\event\\code\\istestmethod', + 3 => 'phpunit\\event\\code\\isphpt', + 4 => 'phpunit\\event\\code\\id', + 5 => 'phpunit\\event\\code\\name', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/Issue/UnknownTrigger.php' => + array ( + 0 => '0a279b28b6a84add321a73fc2404175ed0a9a1f7', + 1 => + array ( + 0 => 'phpunit\\event\\code\\issuetrigger\\unknowntrigger', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\issuetrigger\\isunknown', + 1 => 'phpunit\\event\\code\\issuetrigger\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/Issue/TestTrigger.php' => + array ( + 0 => '9485f03d0b0bb8071ba7f6a8ff349680a075e02f', + 1 => + array ( + 0 => 'phpunit\\event\\code\\issuetrigger\\testtrigger', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\issuetrigger\\istest', + 1 => 'phpunit\\event\\code\\issuetrigger\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/Issue/DirectTrigger.php' => + array ( + 0 => 'ca9a2c26cf901c08669c01650a01e424d3ce6b14', + 1 => + array ( + 0 => 'phpunit\\event\\code\\issuetrigger\\directtrigger', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\issuetrigger\\isdirect', + 1 => 'phpunit\\event\\code\\issuetrigger\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/Issue/IssueTrigger.php' => + array ( + 0 => '294963f207b4c801eb7e8b8512589138ac1c9313', + 1 => + array ( + 0 => 'phpunit\\event\\code\\issuetrigger\\issuetrigger', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\issuetrigger\\test', + 1 => 'phpunit\\event\\code\\issuetrigger\\self', + 2 => 'phpunit\\event\\code\\issuetrigger\\direct', + 3 => 'phpunit\\event\\code\\issuetrigger\\indirect', + 4 => 'phpunit\\event\\code\\issuetrigger\\unknown', + 5 => 'phpunit\\event\\code\\issuetrigger\\__construct', + 6 => 'phpunit\\event\\code\\issuetrigger\\istest', + 7 => 'phpunit\\event\\code\\issuetrigger\\isself', + 8 => 'phpunit\\event\\code\\issuetrigger\\isdirect', + 9 => 'phpunit\\event\\code\\issuetrigger\\isindirect', + 10 => 'phpunit\\event\\code\\issuetrigger\\isunknown', + 11 => 'phpunit\\event\\code\\issuetrigger\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/Issue/SelfTrigger.php' => + array ( + 0 => 'ec7b8378e1a02891da32cc087032d7b8ac68708e', + 1 => + array ( + 0 => 'phpunit\\event\\code\\issuetrigger\\selftrigger', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\issuetrigger\\isself', + 1 => 'phpunit\\event\\code\\issuetrigger\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/Issue/IndirectTrigger.php' => + array ( + 0 => '2f389deaeacb1501a678026b50e1463b586f6b54', + 1 => + array ( + 0 => 'phpunit\\event\\code\\issuetrigger\\indirecttrigger', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\issuetrigger\\isindirect', + 1 => 'phpunit\\event\\code\\issuetrigger\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/Phpt.php' => + array ( + 0 => '2dc3bacb1cffaea704db86d7baf0633336bac4bb', + 1 => + array ( + 0 => 'phpunit\\event\\code\\phpt', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\isphpt', + 1 => 'phpunit\\event\\code\\id', + 2 => 'phpunit\\event\\code\\name', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestCollectionIterator.php' => + array ( + 0 => '766a4ec81c68c4fd11afeeb89384f27845a9d704', + 1 => + array ( + 0 => 'phpunit\\event\\code\\testcollectioniterator', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\__construct', + 1 => 'phpunit\\event\\code\\rewind', + 2 => 'phpunit\\event\\code\\valid', + 3 => 'phpunit\\event\\code\\key', + 4 => 'phpunit\\event\\code\\current', + 5 => 'phpunit\\event\\code\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestMethodBuilder.php' => + array ( + 0 => '7fbb9aa559d2736bc328a0b2627a634fc15b7670', + 1 => + array ( + 0 => 'phpunit\\event\\code\\testmethodbuilder', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\fromtestcase', + 1 => 'phpunit\\event\\code\\fromcallstack', + 2 => 'phpunit\\event\\code\\datafor', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/TestSuite/TestSuiteWithName.php' => + array ( + 0 => '675816e23db87f3070960e2e0887bc7524e614dd', + 1 => + array ( + 0 => 'phpunit\\event\\testsuite\\testsuitewithname', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testsuite\\iswithname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/TestSuite/TestSuite.php' => + array ( + 0 => 'fa8924dd235ad544dc4abe4054d9010749851d00', + 1 => + array ( + 0 => 'phpunit\\event\\testsuite\\testsuite', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testsuite\\__construct', + 1 => 'phpunit\\event\\testsuite\\name', + 2 => 'phpunit\\event\\testsuite\\count', + 3 => 'phpunit\\event\\testsuite\\tests', + 4 => 'phpunit\\event\\testsuite\\iswithname', + 5 => 'phpunit\\event\\testsuite\\isfortestclass', + 6 => 'phpunit\\event\\testsuite\\isfortestmethodwithdataprovider', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/TestSuite/TestSuiteForTestMethodWithDataProvider.php' => + array ( + 0 => 'a78f06db904da311c949555c9af2523d8a991339', + 1 => + array ( + 0 => 'phpunit\\event\\testsuite\\testsuitefortestmethodwithdataprovider', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testsuite\\__construct', + 1 => 'phpunit\\event\\testsuite\\classname', + 2 => 'phpunit\\event\\testsuite\\methodname', + 3 => 'phpunit\\event\\testsuite\\file', + 4 => 'phpunit\\event\\testsuite\\line', + 5 => 'phpunit\\event\\testsuite\\isfortestmethodwithdataprovider', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/TestSuite/TestSuiteForTestClass.php' => + array ( + 0 => 'e51dacaf43c6a9e4bcfbb8724ceae1ad8c37c7c5', + 1 => + array ( + 0 => 'phpunit\\event\\testsuite\\testsuitefortestclass', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testsuite\\__construct', + 1 => 'phpunit\\event\\testsuite\\classname', + 2 => 'phpunit\\event\\testsuite\\file', + 3 => 'phpunit\\event\\testsuite\\line', + 4 => 'phpunit\\event\\testsuite\\isfortestclass', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/TestSuite/TestSuiteBuilder.php' => + array ( + 0 => '7779b6c4671513324699b5b1b06180a47fbf0742', + 1 => + array ( + 0 => 'phpunit\\event\\testsuite\\testsuitebuilder', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testsuite\\from', + 1 => 'phpunit\\event\\testsuite\\process', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/ClassMethod.php' => + array ( + 0 => '28440ac523d3bcef7445519c84416cd2eaa13fa0', + 1 => + array ( + 0 => 'phpunit\\event\\code\\classmethod', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\__construct', + 1 => 'phpunit\\event\\code\\classname', + 2 => 'phpunit\\event\\code\\methodname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/ThrowableBuilder.php' => + array ( + 0 => 'c66224903361d90c5bdb49d882ba13a9d3a74dad', + 1 => + array ( + 0 => 'phpunit\\event\\code\\throwablebuilder', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\from', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Runtime/Runtime.php' => + array ( + 0 => '87d1a60c6ada4787a7283d1d815d579c9d896c52', + 1 => + array ( + 0 => 'phpunit\\event\\runtime\\runtime', + ), + 2 => + array ( + 0 => 'phpunit\\event\\runtime\\__construct', + 1 => 'phpunit\\event\\runtime\\asstring', + 2 => 'phpunit\\event\\runtime\\operatingsystem', + 3 => 'phpunit\\event\\runtime\\php', + 4 => 'phpunit\\event\\runtime\\phpunit', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Runtime/OperatingSystem.php' => + array ( + 0 => '500fe94b041ab861781c2a91786975a9286ed969', + 1 => + array ( + 0 => 'phpunit\\event\\runtime\\operatingsystem', + ), + 2 => + array ( + 0 => 'phpunit\\event\\runtime\\__construct', + 1 => 'phpunit\\event\\runtime\\operatingsystem', + 2 => 'phpunit\\event\\runtime\\operatingsystemfamily', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Runtime/PHPUnit.php' => + array ( + 0 => '44f1d5185f8ea3e681ef4a778d3484e5ea1c5d3c', + 1 => + array ( + 0 => 'phpunit\\event\\runtime\\phpunit', + ), + 2 => + array ( + 0 => 'phpunit\\event\\runtime\\__construct', + 1 => 'phpunit\\event\\runtime\\versionid', + 2 => 'phpunit\\event\\runtime\\releaseseries', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Runtime/PHP.php' => + array ( + 0 => 'd0b4a3711a376deae11cecd46a847de1327a084c', + 1 => + array ( + 0 => 'phpunit\\event\\runtime\\php', + ), + 2 => + array ( + 0 => 'phpunit\\event\\runtime\\__construct', + 1 => 'phpunit\\event\\runtime\\version', + 2 => 'phpunit\\event\\runtime\\sapi', + 3 => 'phpunit\\event\\runtime\\majorversion', + 4 => 'phpunit\\event\\runtime\\minorversion', + 5 => 'phpunit\\event\\runtime\\releaseversion', + 6 => 'phpunit\\event\\runtime\\extraversion', + 7 => 'phpunit\\event\\runtime\\versionid', + 8 => 'phpunit\\event\\runtime\\extensions', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/ComparisonFailureBuilder.php' => + array ( + 0 => '7f9b6614920755c4c5313059db9a3523b18aa2d7', + 1 => + array ( + 0 => 'phpunit\\event\\code\\comparisonfailurebuilder', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\from', + 1 => 'phpunit\\event\\code\\mapscalarvaluetostring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/Info.php' => + array ( + 0 => '6613b4330aab5c78848f9fb32bc1ec9f8d175d12', + 1 => + array ( + 0 => 'phpunit\\event\\telemetry\\info', + ), + 2 => + array ( + 0 => 'phpunit\\event\\telemetry\\__construct', + 1 => 'phpunit\\event\\telemetry\\time', + 2 => 'phpunit\\event\\telemetry\\memoryusage', + 3 => 'phpunit\\event\\telemetry\\peakmemoryusage', + 4 => 'phpunit\\event\\telemetry\\durationsincestart', + 5 => 'phpunit\\event\\telemetry\\memoryusagesincestart', + 6 => 'phpunit\\event\\telemetry\\durationsinceprevious', + 7 => 'phpunit\\event\\telemetry\\memoryusagesinceprevious', + 8 => 'phpunit\\event\\telemetry\\garbagecollectorstatus', + 9 => 'phpunit\\event\\telemetry\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/GarbageCollectorStatus.php' => + array ( + 0 => '36044d867bc03c66adddeaa6e9da798088a5c24f', + 1 => + array ( + 0 => 'phpunit\\event\\telemetry\\garbagecollectorstatus', + ), + 2 => + array ( + 0 => 'phpunit\\event\\telemetry\\__construct', + 1 => 'phpunit\\event\\telemetry\\runs', + 2 => 'phpunit\\event\\telemetry\\collected', + 3 => 'phpunit\\event\\telemetry\\threshold', + 4 => 'phpunit\\event\\telemetry\\roots', + 5 => 'phpunit\\event\\telemetry\\hasextendedinformation', + 6 => 'phpunit\\event\\telemetry\\applicationtime', + 7 => 'phpunit\\event\\telemetry\\collectortime', + 8 => 'phpunit\\event\\telemetry\\destructortime', + 9 => 'phpunit\\event\\telemetry\\freetime', + 10 => 'phpunit\\event\\telemetry\\isrunning', + 11 => 'phpunit\\event\\telemetry\\isprotected', + 12 => 'phpunit\\event\\telemetry\\isfull', + 13 => 'phpunit\\event\\telemetry\\buffersize', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/StopWatch.php' => + array ( + 0 => '24263b312210de2671bbc70a14c2ed9316278023', + 1 => + array ( + 0 => 'phpunit\\event\\telemetry\\stopwatch', + ), + 2 => + array ( + 0 => 'phpunit\\event\\telemetry\\current', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/SystemStopWatch.php' => + array ( + 0 => '0ff2b19019c2aed3a3e5799096ea95207fb12be4', + 1 => + array ( + 0 => 'phpunit\\event\\telemetry\\systemstopwatch', + ), + 2 => + array ( + 0 => 'phpunit\\event\\telemetry\\current', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/HRTime.php' => + array ( + 0 => 'c627e35eea9d280be979f61a9aab0f9e777e60fb', + 1 => + array ( + 0 => 'phpunit\\event\\telemetry\\hrtime', + ), + 2 => + array ( + 0 => 'phpunit\\event\\telemetry\\fromsecondsandnanoseconds', + 1 => 'phpunit\\event\\telemetry\\__construct', + 2 => 'phpunit\\event\\telemetry\\seconds', + 3 => 'phpunit\\event\\telemetry\\nanoseconds', + 4 => 'phpunit\\event\\telemetry\\duration', + 5 => 'phpunit\\event\\telemetry\\ensurenotnegative', + 6 => 'phpunit\\event\\telemetry\\ensurenanosecondsinrange', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/Snapshot.php' => + array ( + 0 => '9f1fa2ca96cd86afd8f2a2315b43c16600aeb841', + 1 => + array ( + 0 => 'phpunit\\event\\telemetry\\snapshot', + ), + 2 => + array ( + 0 => 'phpunit\\event\\telemetry\\__construct', + 1 => 'phpunit\\event\\telemetry\\time', + 2 => 'phpunit\\event\\telemetry\\memoryusage', + 3 => 'phpunit\\event\\telemetry\\peakmemoryusage', + 4 => 'phpunit\\event\\telemetry\\garbagecollectorstatus', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/SystemMemoryMeter.php' => + array ( + 0 => '41316410dac11b8092cc0258e23ccff73c915982', + 1 => + array ( + 0 => 'phpunit\\event\\telemetry\\systemmemorymeter', + ), + 2 => + array ( + 0 => 'phpunit\\event\\telemetry\\memoryusage', + 1 => 'phpunit\\event\\telemetry\\peakmemoryusage', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/GarbageCollectorStatusProvider.php' => + array ( + 0 => '7089792fed3262169a6e4eae1130b355015eb817', + 1 => + array ( + 0 => 'phpunit\\event\\telemetry\\garbagecollectorstatusprovider', + ), + 2 => + array ( + 0 => 'phpunit\\event\\telemetry\\status', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/System.php' => + array ( + 0 => '133c6033d3f2b22b01222d63b67bd44efa21646b', + 1 => + array ( + 0 => 'phpunit\\event\\telemetry\\system', + ), + 2 => + array ( + 0 => 'phpunit\\event\\telemetry\\__construct', + 1 => 'phpunit\\event\\telemetry\\snapshot', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/MemoryMeter.php' => + array ( + 0 => '1834da0e1a0f2c324f74635013d0be3a0624d834', + 1 => + array ( + 0 => 'phpunit\\event\\telemetry\\memorymeter', + ), + 2 => + array ( + 0 => 'phpunit\\event\\telemetry\\memoryusage', + 1 => 'phpunit\\event\\telemetry\\peakmemoryusage', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/Php81GarbageCollectorStatusProvider.php' => + array ( + 0 => 'dc341c569727529ce3a5c1fa3758ee47fcc4319d', + 1 => + array ( + 0 => 'phpunit\\event\\telemetry\\php81garbagecollectorstatusprovider', + ), + 2 => + array ( + 0 => 'phpunit\\event\\telemetry\\status', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/MemoryUsage.php' => + array ( + 0 => 'ba040f908d2bbfc8bc7c272b598f9a69f99d82c8', + 1 => + array ( + 0 => 'phpunit\\event\\telemetry\\memoryusage', + ), + 2 => + array ( + 0 => 'phpunit\\event\\telemetry\\frombytes', + 1 => 'phpunit\\event\\telemetry\\__construct', + 2 => 'phpunit\\event\\telemetry\\bytes', + 3 => 'phpunit\\event\\telemetry\\diff', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/Php83GarbageCollectorStatusProvider.php' => + array ( + 0 => 'a9156114c0f938d1c5d7ee9f096b1e138f4b9aba', + 1 => + array ( + 0 => 'phpunit\\event\\telemetry\\php83garbagecollectorstatusprovider', + ), + 2 => + array ( + 0 => 'phpunit\\event\\telemetry\\status', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/SystemStopWatchWithOffset.php' => + array ( + 0 => 'c84e019b6ea5b63b5a6047978d0a2e4f4803437b', + 1 => + array ( + 0 => 'phpunit\\event\\telemetry\\systemstopwatchwithoffset', + ), + 2 => + array ( + 0 => 'phpunit\\event\\telemetry\\__construct', + 1 => 'phpunit\\event\\telemetry\\current', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/Duration.php' => + array ( + 0 => '6aa3f35ddf4dbde71249a5dd087a37ddfc67ac52', + 1 => + array ( + 0 => 'phpunit\\event\\telemetry\\duration', + ), + 2 => + array ( + 0 => 'phpunit\\event\\telemetry\\fromsecondsandnanoseconds', + 1 => 'phpunit\\event\\telemetry\\__construct', + 2 => 'phpunit\\event\\telemetry\\seconds', + 3 => 'phpunit\\event\\telemetry\\nanoseconds', + 4 => 'phpunit\\event\\telemetry\\asfloat', + 5 => 'phpunit\\event\\telemetry\\asstring', + 6 => 'phpunit\\event\\telemetry\\equals', + 7 => 'phpunit\\event\\telemetry\\islessthan', + 8 => 'phpunit\\event\\telemetry\\isgreaterthan', + 9 => 'phpunit\\event\\telemetry\\ensurenotnegative', + 10 => 'phpunit\\event\\telemetry\\ensurenanosecondsinrange', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/ComparisonFailure.php' => + array ( + 0 => '5d2fd8cb193649f6a92bed08b609886e4d3f1141', + 1 => + array ( + 0 => 'phpunit\\event\\code\\comparisonfailure', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\__construct', + 1 => 'phpunit\\event\\code\\expected', + 2 => 'phpunit\\event\\code\\actual', + 3 => 'phpunit\\event\\code\\diff', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Throwable.php' => + array ( + 0 => '002d4c234dbb8cddd22fd2f037bc16a25a919a01', + 1 => + array ( + 0 => 'phpunit\\event\\code\\throwable', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\__construct', + 1 => 'phpunit\\event\\code\\asstring', + 2 => 'phpunit\\event\\code\\classname', + 3 => 'phpunit\\event\\code\\message', + 4 => 'phpunit\\event\\code\\description', + 5 => 'phpunit\\event\\code\\stacktrace', + 6 => 'phpunit\\event\\code\\hasprevious', + 7 => 'phpunit\\event\\code\\previous', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Subscriber.php' => + array ( + 0 => '3755a0e75b5f94b3d6d93e7f122b4a63087305a6', + 1 => + array ( + 0 => 'phpunit\\event\\subscriber', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/EventCollectionIterator.php' => + array ( + 0 => 'fe6326da7b6b5b83b9477ed04be5e3c616cc8698', + 1 => + array ( + 0 => 'phpunit\\event\\eventcollectioniterator', + ), + 2 => + array ( + 0 => 'phpunit\\event\\__construct', + 1 => 'phpunit\\event\\rewind', + 2 => 'phpunit\\event\\valid', + 3 => 'phpunit\\event\\key', + 4 => 'phpunit\\event\\current', + 5 => 'phpunit\\event\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/Started.php' => + array ( + 0 => '6d6172802e8189c71edc9cb26a7207c749003cc2', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\started', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\__construct', + 1 => 'phpunit\\event\\testrunner\\telemetryinfo', + 2 => 'phpunit\\event\\testrunner\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/GarbageCollectionEnabledSubscriber.php' => + array ( + 0 => '3e350eb0feba00deb98b73f4fbd1f065facf1630', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\garbagecollectionenabledsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExecutionAbortedSubscriber.php' => + array ( + 0 => '50d18825c4d4863a5e30eafcd3c25d3d104cf84d', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\executionabortedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ChildProcessFinished.php' => + array ( + 0 => '6f979cc15d9101931b38aa5989f73accbc5e4355', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\childprocessfinished', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\__construct', + 1 => 'phpunit\\event\\testrunner\\telemetryinfo', + 2 => 'phpunit\\event\\testrunner\\stdout', + 3 => 'phpunit\\event\\testrunner\\stderr', + 4 => 'phpunit\\event\\testrunner\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/EventFacadeSealed.php' => + array ( + 0 => '9278684da8f62262979da4cd58612516238416c2', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\eventfacadesealed', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\__construct', + 1 => 'phpunit\\event\\testrunner\\telemetryinfo', + 2 => 'phpunit\\event\\testrunner\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExtensionBootstrapped.php' => + array ( + 0 => '05217669c440a22f2de44f5312834d6d191782f0', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\extensionbootstrapped', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\__construct', + 1 => 'phpunit\\event\\testrunner\\telemetryinfo', + 2 => 'phpunit\\event\\testrunner\\classname', + 3 => 'phpunit\\event\\testrunner\\parameters', + 4 => 'phpunit\\event\\testrunner\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExecutionStarted.php' => + array ( + 0 => 'dbfe62d74bb4ed5324c723b7c17607d199fd832c', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\executionstarted', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\__construct', + 1 => 'phpunit\\event\\testrunner\\telemetryinfo', + 2 => 'phpunit\\event\\testrunner\\testsuite', + 3 => 'phpunit\\event\\testrunner\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/Configured.php' => + array ( + 0 => '36810df8fa711500c8b326161378550930afe366', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\configured', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\__construct', + 1 => 'phpunit\\event\\testrunner\\telemetryinfo', + 2 => 'phpunit\\event\\testrunner\\configuration', + 3 => 'phpunit\\event\\testrunner\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExecutionAborted.php' => + array ( + 0 => 'f8e822f94a998ea0061565bc9fb7d23ded8fe38e', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\executionaborted', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\__construct', + 1 => 'phpunit\\event\\testrunner\\telemetryinfo', + 2 => 'phpunit\\event\\testrunner\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/DeprecationTriggeredSubscriber.php' => + array ( + 0 => 'd9304d17a33c5973de2760c94a1e504840503743', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\deprecationtriggeredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ChildProcessStarted.php' => + array ( + 0 => 'e3d018c1a524783b055ffdeb04dd928de53db09d', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\childprocessstarted', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\__construct', + 1 => 'phpunit\\event\\testrunner\\telemetryinfo', + 2 => 'phpunit\\event\\testrunner\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExecutionStartedSubscriber.php' => + array ( + 0 => '565263ef9d2c365bb8d256e7f1daef2064189f99', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\executionstartedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/GarbageCollectionDisabled.php' => + array ( + 0 => 'e6b0ef5f1b2cd14801b68df2a449f6444953dd53', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\garbagecollectiondisabled', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\__construct', + 1 => 'phpunit\\event\\testrunner\\telemetryinfo', + 2 => 'phpunit\\event\\testrunner\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/GarbageCollectionEnabled.php' => + array ( + 0 => 'fc8fb46f2049c695c6d2b2a4d414d5bc645b19d5', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\garbagecollectionenabled', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\__construct', + 1 => 'phpunit\\event\\testrunner\\telemetryinfo', + 2 => 'phpunit\\event\\testrunner\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/BootstrapFinishedSubscriber.php' => + array ( + 0 => 'c311e93ecb80f95c26dc8f1db481058aca689805', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\bootstrapfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/EventFacadeSealedSubscriber.php' => + array ( + 0 => '2ff01ddd54f1e02b87a97d9216c03dcb081cd8e6', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\eventfacadesealedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/GarbageCollectionTriggeredSubscriber.php' => + array ( + 0 => '13a4fb1e51d5314c57408540e7ce8e8bccd737d0', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\garbagecollectiontriggeredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExecutionFinished.php' => + array ( + 0 => 'f7afed98e0182a5ecf48f7a3b693e89e0030ee97', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\executionfinished', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\__construct', + 1 => 'phpunit\\event\\testrunner\\telemetryinfo', + 2 => 'phpunit\\event\\testrunner\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExecutionFinishedSubscriber.php' => + array ( + 0 => 'a2c21c0a3c84162deb28672c92b35f97e6b45815', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\executionfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/Finished.php' => + array ( + 0 => 'e6fdacd1da8e434831a7a1edc25605375c76a8f7', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\finished', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\__construct', + 1 => 'phpunit\\event\\testrunner\\telemetryinfo', + 2 => 'phpunit\\event\\testrunner\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ConfiguredSubscriber.php' => + array ( + 0 => 'f9662faf434f3e805c5cfe84102d9014e1d1c1d2', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\configuredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/DeprecationTriggered.php' => + array ( + 0 => 'b835b2bcd1f103d5d107d9fcbff088e9a457dd32', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\deprecationtriggered', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\__construct', + 1 => 'phpunit\\event\\testrunner\\telemetryinfo', + 2 => 'phpunit\\event\\testrunner\\message', + 3 => 'phpunit\\event\\testrunner\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/GarbageCollectionDisabledSubscriber.php' => + array ( + 0 => 'fc6234876e77715cdaa795aa9fbace888ad5f1f4', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\garbagecollectiondisabledsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ChildProcessStartedSubscriber.php' => + array ( + 0 => '733c9935d0e4fe81442c243db35beeba641f909b', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\childprocessstartedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/GarbageCollectionTriggered.php' => + array ( + 0 => 'fe1d74fa0fbd46312e4ddda181101b305d90fd60', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\garbagecollectiontriggered', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\__construct', + 1 => 'phpunit\\event\\testrunner\\telemetryinfo', + 2 => 'phpunit\\event\\testrunner\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/WarningTriggeredSubscriber.php' => + array ( + 0 => '76b8e80b3876715cb986bf7fb4473d2bff7929d1', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\warningtriggeredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/BootstrapFinished.php' => + array ( + 0 => '1b603e04e1dfcbc72b6843cf884c8c35122ee778', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\bootstrapfinished', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\__construct', + 1 => 'phpunit\\event\\testrunner\\telemetryinfo', + 2 => 'phpunit\\event\\testrunner\\filename', + 3 => 'phpunit\\event\\testrunner\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/WarningTriggered.php' => + array ( + 0 => '11eed0ae2c05b4a1b7e8d277947a4ff476d1563b', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\warningtriggered', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\__construct', + 1 => 'phpunit\\event\\testrunner\\telemetryinfo', + 2 => 'phpunit\\event\\testrunner\\message', + 3 => 'phpunit\\event\\testrunner\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExtensionBootstrappedSubscriber.php' => + array ( + 0 => 'd2e3c231fad908eb08eb1ab02f41f296eefc8e2a', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\extensionbootstrappedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExtensionLoadedFromPhar.php' => + array ( + 0 => 'a8b04615008ce8941dbebbd8990f241d4c9175d7', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\extensionloadedfromphar', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\__construct', + 1 => 'phpunit\\event\\testrunner\\telemetryinfo', + 2 => 'phpunit\\event\\testrunner\\filename', + 3 => 'phpunit\\event\\testrunner\\name', + 4 => 'phpunit\\event\\testrunner\\version', + 5 => 'phpunit\\event\\testrunner\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExtensionLoadedFromPharSubscriber.php' => + array ( + 0 => '8e6080271186e83046c65f5136ad74a9f61d3421', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\extensionloadedfrompharsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/StartedSubscriber.php' => + array ( + 0 => 'a1cbb344bf6e5502947fd9bda914172057ea9d88', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\startedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ChildProcessFinishedSubscriber.php' => + array ( + 0 => 'adbaebb79a5dfeb847b372e6f47c0b0d1ed0087e', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\childprocessfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/FinishedSubscriber.php' => + array ( + 0 => '3d71bee2d7dc896ee1b1af190922ff3678c2ec6f', + 1 => + array ( + 0 => 'phpunit\\event\\testrunner\\finishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testrunner\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Event.php' => + array ( + 0 => '11ef92f33839539412fc3945e422c6039c56a5ab', + 1 => + array ( + 0 => 'phpunit\\event\\event', + ), + 2 => + array ( + 0 => 'phpunit\\event\\telemetryinfo', + 1 => 'phpunit\\event\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/PrintedUnexpectedOutputSubscriber.php' => + array ( + 0 => '84d8b60f058fd6fa5b2c68e64db7b0f4bae484f4', + 1 => + array ( + 0 => 'phpunit\\event\\test\\printedunexpectedoutputsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodCalledSubscriber.php' => + array ( + 0 => 'ccd688f5971fbbeb8ffe56ecf95260306da0560e', + 1 => + array ( + 0 => 'phpunit\\event\\test\\beforetestmethodcalledsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodErrored.php' => + array ( + 0 => 'e8c0e6e77275dcb6ef72d3d6cf69e0b6132f58e8', + 1 => + array ( + 0 => 'phpunit\\event\\test\\beforetestmethoderrored', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testclassname', + 3 => 'phpunit\\event\\test\\calledmethod', + 4 => 'phpunit\\event\\test\\throwable', + 5 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionErroredSubscriber.php' => + array ( + 0 => '9a55c0470576989bdff50075d40f077116f82f74', + 1 => + array ( + 0 => 'phpunit\\event\\test\\preconditionerroredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionCalled.php' => + array ( + 0 => 'ed58965da4ced008a74fe87bfc5857f760e33bb1', + 1 => + array ( + 0 => 'phpunit\\event\\test\\preconditioncalled', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testclassname', + 3 => 'phpunit\\event\\test\\calledmethod', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionErrored.php' => + array ( + 0 => 'bbaa398c37f75a303593c68878d64ef59af2dc84', + 1 => + array ( + 0 => 'phpunit\\event\\test\\preconditionerrored', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testclassname', + 3 => 'phpunit\\event\\test\\calledmethod', + 4 => 'phpunit\\event\\test\\throwable', + 5 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodFinishedSubscriber.php' => + array ( + 0 => 'f7bed12371346805535a022b199c32258ca188dd', + 1 => + array ( + 0 => 'phpunit\\event\\test\\beforetestmethodfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionErrored.php' => + array ( + 0 => '03e6bb933ff4ce0f2d71c72e2095e689f90f11b9', + 1 => + array ( + 0 => 'phpunit\\event\\test\\postconditionerrored', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testclassname', + 3 => 'phpunit\\event\\test\\calledmethod', + 4 => 'phpunit\\event\\test\\throwable', + 5 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodFinished.php' => + array ( + 0 => 'b733e6e09ccbc608acb68d639b500bb3d04f6ef6', + 1 => + array ( + 0 => 'phpunit\\event\\test\\beforefirsttestmethodfinished', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testclassname', + 3 => 'phpunit\\event\\test\\calledmethods', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionFinished.php' => + array ( + 0 => '94934c0761dec721b87cc15d0ff3c6b1b5c02483', + 1 => + array ( + 0 => 'phpunit\\event\\test\\preconditionfinished', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testclassname', + 3 => 'phpunit\\event\\test\\calledmethods', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodCalled.php' => + array ( + 0 => '9e279d4d71573afcd402c8a0db2246daf14d49a4', + 1 => + array ( + 0 => 'phpunit\\event\\test\\beforetestmethodcalled', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testclassname', + 3 => 'phpunit\\event\\test\\calledmethod', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodErroredSubscriber.php' => + array ( + 0 => 'd06d71d0709cb91b117a63233dd8580dd65af6c8', + 1 => + array ( + 0 => 'phpunit\\event\\test\\afterlasttestmethoderroredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodErroredSubscriber.php' => + array ( + 0 => '6f0a629fff8a3f5ba1eb6bf7e6b4fb98792e9e77', + 1 => + array ( + 0 => 'phpunit\\event\\test\\beforetestmethoderroredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionFinished.php' => + array ( + 0 => 'a0588f2073dde238b3f93457d921c6db5a147380', + 1 => + array ( + 0 => 'phpunit\\event\\test\\postconditionfinished', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testclassname', + 3 => 'phpunit\\event\\test\\calledmethods', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionCalledSubscriber.php' => + array ( + 0 => '8c7ba4aab6c94a385c08d1b85fd82bb193973d5e', + 1 => + array ( + 0 => 'phpunit\\event\\test\\postconditioncalledsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionFinishedSubscriber.php' => + array ( + 0 => '7ad5a7d119c5cb8a4b9fc135fbcaf46dbeca6c88', + 1 => + array ( + 0 => 'phpunit\\event\\test\\preconditionfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodFinished.php' => + array ( + 0 => 'ae6268e31620fbe8ddc7d5a98c37ecce35818e2d', + 1 => + array ( + 0 => 'phpunit\\event\\test\\aftertestmethodfinished', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testclassname', + 3 => 'phpunit\\event\\test\\calledmethods', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodCalledSubscriber.php' => + array ( + 0 => '3e45ff5fe012f586911512375c45565e3afb2b0e', + 1 => + array ( + 0 => 'phpunit\\event\\test\\beforefirsttestmethodcalledsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodFinishedSubscriber.php' => + array ( + 0 => '840288cb405be123f16943f96ebcbbb25f525ab7', + 1 => + array ( + 0 => 'phpunit\\event\\test\\aftertestmethodfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodCalledSubscriber.php' => + array ( + 0 => '954bd4a4dc53df250bc2dc0452c3c407b0b50f73', + 1 => + array ( + 0 => 'phpunit\\event\\test\\aftertestmethodcalledsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodFinishedSubscriber.php' => + array ( + 0 => 'aea3a910bb0a52cd880ecf67178dfe07594e9613', + 1 => + array ( + 0 => 'phpunit\\event\\test\\beforefirsttestmethodfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodErrored.php' => + array ( + 0 => 'c5f9682b7db9eac6b35511c65ee4420e6c41e299', + 1 => + array ( + 0 => 'phpunit\\event\\test\\afterlasttestmethoderrored', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testclassname', + 3 => 'phpunit\\event\\test\\calledmethod', + 4 => 'phpunit\\event\\test\\throwable', + 5 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodErroredSubscriber.php' => + array ( + 0 => '6166a28d2f75436f32d58939731a9c9916894651', + 1 => + array ( + 0 => 'phpunit\\event\\test\\beforefirsttestmethoderroredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodErrored.php' => + array ( + 0 => '7559bc205e020b4f4254732fbde4ee3f04c4fa2b', + 1 => + array ( + 0 => 'phpunit\\event\\test\\beforefirsttestmethoderrored', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testclassname', + 3 => 'phpunit\\event\\test\\calledmethod', + 4 => 'phpunit\\event\\test\\throwable', + 5 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodFinished.php' => + array ( + 0 => '5dc6ccdd02824d514bd1bd2a08382412a7560dec', + 1 => + array ( + 0 => 'phpunit\\event\\test\\beforetestmethodfinished', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testclassname', + 3 => 'phpunit\\event\\test\\calledmethods', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodErroredSubscriber.php' => + array ( + 0 => '1cc609c3d58bfad41fc21c72e0bd488b91dc5f68', + 1 => + array ( + 0 => 'phpunit\\event\\test\\aftertestmethoderroredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodCalledSubscriber.php' => + array ( + 0 => '36cf43768db15b1c0f39a4e5e0f6674a598ce019', + 1 => + array ( + 0 => 'phpunit\\event\\test\\afterlasttestmethodcalledsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionCalledSubscriber.php' => + array ( + 0 => 'ff765b294e9a74bbccce9ec942b6f4a92c35e7fc', + 1 => + array ( + 0 => 'phpunit\\event\\test\\preconditioncalledsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodFinishedSubscriber.php' => + array ( + 0 => '88b0667a5de9a547ffa96c57547f68b2b1d326b9', + 1 => + array ( + 0 => 'phpunit\\event\\test\\afterlasttestmethodfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionFinishedSubscriber.php' => + array ( + 0 => '49dbe74e6ad96d212afc262a3dc4bdd32b2090de', + 1 => + array ( + 0 => 'phpunit\\event\\test\\postconditionfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionCalled.php' => + array ( + 0 => '0a856d25546ec88cf5a6e75db3bc430d39e95a9f', + 1 => + array ( + 0 => 'phpunit\\event\\test\\postconditioncalled', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testclassname', + 3 => 'phpunit\\event\\test\\calledmethod', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodErrored.php' => + array ( + 0 => 'da4a2ca8233208cff4134b0d98147811adff1cfc', + 1 => + array ( + 0 => 'phpunit\\event\\test\\aftertestmethoderrored', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testclassname', + 3 => 'phpunit\\event\\test\\calledmethod', + 4 => 'phpunit\\event\\test\\throwable', + 5 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionErroredSubscriber.php' => + array ( + 0 => 'd97da07aa3e8f1347523b363a860e723225b1214', + 1 => + array ( + 0 => 'phpunit\\event\\test\\postconditionerroredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodFinished.php' => + array ( + 0 => '9f2b69fd8e38a636c776ae4d715bc7b1a94a0599', + 1 => + array ( + 0 => 'phpunit\\event\\test\\afterlasttestmethodfinished', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testclassname', + 3 => 'phpunit\\event\\test\\calledmethods', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodCalled.php' => + array ( + 0 => 'ae41278bad99d397968f98ead0a881cafb06ef4d', + 1 => + array ( + 0 => 'phpunit\\event\\test\\aftertestmethodcalled', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testclassname', + 3 => 'phpunit\\event\\test\\calledmethod', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodCalled.php' => + array ( + 0 => '0c08d5fe4faed77dbf8f2259c3aca922a3b7e8a3', + 1 => + array ( + 0 => 'phpunit\\event\\test\\beforefirsttestmethodcalled', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testclassname', + 3 => 'phpunit\\event\\test\\calledmethod', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodCalled.php' => + array ( + 0 => '017701d3a80dd4c387dcd043fa62bebe66e4db2d', + 1 => + array ( + 0 => 'phpunit\\event\\test\\afterlasttestmethodcalled', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testclassname', + 3 => 'phpunit\\event\\test\\calledmethod', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/PrintedUnexpectedOutput.php' => + array ( + 0 => 'c0b7aea6fb0c8c106cb63abd31054f58931c2d1c', + 1 => + array ( + 0 => 'phpunit\\event\\test\\printedunexpectedoutput', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\output', + 3 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/DataProviderMethodCalledSubscriber.php' => + array ( + 0 => 'f170cce661ff38d52de4f0351cbea26afe1cbd83', + 1 => + array ( + 0 => 'phpunit\\event\\test\\dataprovidermethodcalledsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparationStartedSubscriber.php' => + array ( + 0 => '047704f864defb25b439642b156cd578e41eec68', + 1 => + array ( + 0 => 'phpunit\\event\\test\\preparationstartedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparationStarted.php' => + array ( + 0 => '08d04f99c11cf449b8f22e2ef46814bdc75907c9', + 1 => + array ( + 0 => 'phpunit\\event\\test\\preparationstarted', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparationFailed.php' => + array ( + 0 => '5faaa89f01eac4e11e0ad4e6a63268b67b636bf2', + 1 => + array ( + 0 => 'phpunit\\event\\test\\preparationfailed', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/DataProviderMethodFinished.php' => + array ( + 0 => '6a95a4a6dfc7e2d1d17f36f5eb31a92f32c125c1', + 1 => + array ( + 0 => 'phpunit\\event\\test\\dataprovidermethodfinished', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testmethod', + 3 => 'phpunit\\event\\test\\calledmethods', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/DataProviderMethodFinishedSubscriber.php' => + array ( + 0 => '2a67853b5b57a0c25468372d77e9986d5aeb9904', + 1 => + array ( + 0 => 'phpunit\\event\\test\\dataprovidermethodfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparedSubscriber.php' => + array ( + 0 => '2e932ebb4eef9ade9f7be59bba9afca080b8df30', + 1 => + array ( + 0 => 'phpunit\\event\\test\\preparedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/DataProviderMethodCalled.php' => + array ( + 0 => '03b042d0c41b2cfa5c3ea9e1d603bd1f4812db77', + 1 => + array ( + 0 => 'phpunit\\event\\test\\dataprovidermethodcalled', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\testmethod', + 3 => 'phpunit\\event\\test\\dataprovidermethod', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/Prepared.php' => + array ( + 0 => '053654e564967a7d37cf859dbe09a7770db1b335', + 1 => + array ( + 0 => 'phpunit\\event\\test\\prepared', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/Finished.php' => + array ( + 0 => 'ad7b787feed96db865da2e69dbbce74d38d73886', + 1 => + array ( + 0 => 'phpunit\\event\\test\\finished', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\numberofassertionsperformed', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparationFailedSubscriber.php' => + array ( + 0 => '07d0c651f103a8bf402e422ce30d196e4ecfb6f3', + 1 => + array ( + 0 => 'phpunit\\event\\test\\preparationfailedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/FinishedSubscriber.php' => + array ( + 0 => '814bba5fb67dd3820fd6ffee79f3f919029b36e7', + 1 => + array ( + 0 => 'phpunit\\event\\test\\finishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/Skipped.php' => + array ( + 0 => 'ee85acbb10f0fa924dad6f81f6ad7e59a06adae0', + 1 => + array ( + 0 => 'phpunit\\event\\test\\skipped', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\message', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/MarkedIncomplete.php' => + array ( + 0 => '0383b034be345ea4fe75720f3d953194c40f8c46', + 1 => + array ( + 0 => 'phpunit\\event\\test\\markedincomplete', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\throwable', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/Failed.php' => + array ( + 0 => '6eed07f0316bf24c0b2cee0a77ca08096b185f1f', + 1 => + array ( + 0 => 'phpunit\\event\\test\\failed', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\throwable', + 4 => 'phpunit\\event\\test\\hascomparisonfailure', + 5 => 'phpunit\\event\\test\\comparisonfailure', + 6 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/SkippedSubscriber.php' => + array ( + 0 => '1de197cd52e8dec133906148b91b92b978013548', + 1 => + array ( + 0 => 'phpunit\\event\\test\\skippedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/MarkedIncompleteSubscriber.php' => + array ( + 0 => '7ce3b786bc152e819be4f1ec1004901edf67cd0a', + 1 => + array ( + 0 => 'phpunit\\event\\test\\markedincompletesubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/ErroredSubscriber.php' => + array ( + 0 => '6a4343fe5a1dcf5b079a93e4bd348da9635da7c3', + 1 => + array ( + 0 => 'phpunit\\event\\test\\erroredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/Passed.php' => + array ( + 0 => '6b7c443038544a1c597fe5372b7a66fece620008', + 1 => + array ( + 0 => 'phpunit\\event\\test\\passed', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/FailedSubscriber.php' => + array ( + 0 => 'c194671227196809fbec1f105fda24864f9331a3', + 1 => + array ( + 0 => 'phpunit\\event\\test\\failedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/PassedSubscriber.php' => + array ( + 0 => '7b33ed749c9f985991f7de6c0f04c7bde7fbb0c7', + 1 => + array ( + 0 => 'phpunit\\event\\test\\passedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/Errored.php' => + array ( + 0 => '56b55ca862bb0bb3f0fc688922883822e5a3cd0f', + 1 => + array ( + 0 => 'phpunit\\event\\test\\errored', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\throwable', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/ComparatorRegistered.php' => + array ( + 0 => 'd7ab5f3b41d422ddd4a31830f60210404d2580c1', + 1 => + array ( + 0 => 'phpunit\\event\\test\\comparatorregistered', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\classname', + 3 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitWarningTriggered.php' => + array ( + 0 => 'eba9ce664edb71638b727873147a7015d83faf75', + 1 => + array ( + 0 => 'phpunit\\event\\test\\phpunitwarningtriggered', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\message', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpWarningTriggered.php' => + array ( + 0 => '35fce423bbfe81e99e1334ed398ba463ab1fc649', + 1 => + array ( + 0 => 'phpunit\\event\\test\\phpwarningtriggered', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\message', + 4 => 'phpunit\\event\\test\\file', + 5 => 'phpunit\\event\\test\\line', + 6 => 'phpunit\\event\\test\\wassuppressed', + 7 => 'phpunit\\event\\test\\ignoredbybaseline', + 8 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/ErrorTriggered.php' => + array ( + 0 => '868e6ed3412c76a51a32821dbb4176d17d215cce', + 1 => + array ( + 0 => 'phpunit\\event\\test\\errortriggered', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\message', + 4 => 'phpunit\\event\\test\\file', + 5 => 'phpunit\\event\\test\\line', + 6 => 'phpunit\\event\\test\\wassuppressed', + 7 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/DeprecationTriggeredSubscriber.php' => + array ( + 0 => '850cf7d9b9d40ec7a422b36b03d403b28d347901', + 1 => + array ( + 0 => 'phpunit\\event\\test\\deprecationtriggeredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpNoticeTriggered.php' => + array ( + 0 => 'cd46338af01948c20cc07f0265f159806a96a4e3', + 1 => + array ( + 0 => 'phpunit\\event\\test\\phpnoticetriggered', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\message', + 4 => 'phpunit\\event\\test\\file', + 5 => 'phpunit\\event\\test\\line', + 6 => 'phpunit\\event\\test\\wassuppressed', + 7 => 'phpunit\\event\\test\\ignoredbybaseline', + 8 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpDeprecationTriggered.php' => + array ( + 0 => '4c53d9e61c783e4d08e05b013ca82bc82b89abed', + 1 => + array ( + 0 => 'phpunit\\event\\test\\phpdeprecationtriggered', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\message', + 4 => 'phpunit\\event\\test\\file', + 5 => 'phpunit\\event\\test\\line', + 6 => 'phpunit\\event\\test\\wassuppressed', + 7 => 'phpunit\\event\\test\\ignoredbybaseline', + 8 => 'phpunit\\event\\test\\ignoredbytest', + 9 => 'phpunit\\event\\test\\trigger', + 10 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/NoticeTriggeredSubscriber.php' => + array ( + 0 => 'e63053401066843f21107fe937e61234ff8cbc18', + 1 => + array ( + 0 => 'phpunit\\event\\test\\noticetriggeredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitErrorTriggeredSubscriber.php' => + array ( + 0 => '720efe5cde28b26318fb5abdbea1492b65fa372f', + 1 => + array ( + 0 => 'phpunit\\event\\test\\phpuniterrortriggeredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpNoticeTriggeredSubscriber.php' => + array ( + 0 => 'c6745484a5ed9416eac3e88adaa5a7ec1abe8fc9', + 1 => + array ( + 0 => 'phpunit\\event\\test\\phpnoticetriggeredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/ErrorTriggeredSubscriber.php' => + array ( + 0 => '8a15d3eb426e6f4aeff01aeed98f259d50a1453b', + 1 => + array ( + 0 => 'phpunit\\event\\test\\errortriggeredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitDeprecationTriggered.php' => + array ( + 0 => '608fbb3e3d716bb9b90db826594d38e2a25a4f93', + 1 => + array ( + 0 => 'phpunit\\event\\test\\phpunitdeprecationtriggered', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\message', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitWarningTriggeredSubscriber.php' => + array ( + 0 => '5dc77a8ae93d86b6b77afc861a4200ddfb295de9', + 1 => + array ( + 0 => 'phpunit\\event\\test\\phpunitwarningtriggeredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitDeprecationTriggeredSubscriber.php' => + array ( + 0 => '79e2f4c3cbf21b7f36c14d0db32bd9b393d7a80e', + 1 => + array ( + 0 => 'phpunit\\event\\test\\phpunitdeprecationtriggeredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/DeprecationTriggered.php' => + array ( + 0 => '0d5cb36b194faa0a90a2efe3f5ca180ad4c10fcf', + 1 => + array ( + 0 => 'phpunit\\event\\test\\deprecationtriggered', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\message', + 4 => 'phpunit\\event\\test\\file', + 5 => 'phpunit\\event\\test\\line', + 6 => 'phpunit\\event\\test\\wassuppressed', + 7 => 'phpunit\\event\\test\\ignoredbybaseline', + 8 => 'phpunit\\event\\test\\ignoredbytest', + 9 => 'phpunit\\event\\test\\trigger', + 10 => 'phpunit\\event\\test\\stacktrace', + 11 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/WarningTriggeredSubscriber.php' => + array ( + 0 => '3648ee586c7f41306b13714994f85b19e0ddcbbd', + 1 => + array ( + 0 => 'phpunit\\event\\test\\warningtriggeredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpWarningTriggeredSubscriber.php' => + array ( + 0 => 'd8e961fc889e258eaa853bb290863cb1ec5cb8d4', + 1 => + array ( + 0 => 'phpunit\\event\\test\\phpwarningtriggeredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/ConsideredRiskySubscriber.php' => + array ( + 0 => 'bffdfb520ebd7d1f76eaf71e3a52c3d9f2bcbe1f', + 1 => + array ( + 0 => 'phpunit\\event\\test\\consideredriskysubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/WarningTriggered.php' => + array ( + 0 => '79fd6c2f123e163081846afcf0ca474c80423bd4', + 1 => + array ( + 0 => 'phpunit\\event\\test\\warningtriggered', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\message', + 4 => 'phpunit\\event\\test\\file', + 5 => 'phpunit\\event\\test\\line', + 6 => 'phpunit\\event\\test\\wassuppressed', + 7 => 'phpunit\\event\\test\\ignoredbybaseline', + 8 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitErrorTriggered.php' => + array ( + 0 => 'da55720018b849c3d38db70f24890d84355a046e', + 1 => + array ( + 0 => 'phpunit\\event\\test\\phpuniterrortriggered', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\message', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/ConsideredRisky.php' => + array ( + 0 => '10d5c04b0a22f9a40fea298402d4060eec24a663', + 1 => + array ( + 0 => 'phpunit\\event\\test\\consideredrisky', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\message', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/NoticeTriggered.php' => + array ( + 0 => '25cc3c098a7e48e12557e114dae226ea752133e5', + 1 => + array ( + 0 => 'phpunit\\event\\test\\noticetriggered', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\test', + 3 => 'phpunit\\event\\test\\message', + 4 => 'phpunit\\event\\test\\file', + 5 => 'phpunit\\event\\test\\line', + 6 => 'phpunit\\event\\test\\wassuppressed', + 7 => 'phpunit\\event\\test\\ignoredbybaseline', + 8 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpDeprecationTriggeredSubscriber.php' => + array ( + 0 => '323f7f6e25be1a58b243641f2f042c3a5a958d5d', + 1 => + array ( + 0 => 'phpunit\\event\\test\\phpdeprecationtriggeredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/ComparatorRegisteredSubscriber.php' => + array ( + 0 => 'f833d57a285480fd0bfdfc8b44655ed0615a153a', + 1 => + array ( + 0 => 'phpunit\\event\\test\\comparatorregisteredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectForTraitCreated.php' => + array ( + 0 => '337026f095a3e423af6660689ab5a2c6a6db0dd9', + 1 => + array ( + 0 => 'phpunit\\event\\test\\mockobjectfortraitcreated', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\traitname', + 3 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/TestStubCreated.php' => + array ( + 0 => '1d395f46fc52b1e82465c88033c807d4b59003c5', + 1 => + array ( + 0 => 'phpunit\\event\\test\\teststubcreated', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\classname', + 3 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/TestStubForIntersectionOfInterfacesCreatedSubscriber.php' => + array ( + 0 => '01346a44307314e91818d93a94376b9ce56846ba', + 1 => + array ( + 0 => 'phpunit\\event\\test\\teststubforintersectionofinterfacescreatedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectFromWsdlCreatedSubscriber.php' => + array ( + 0 => '9a82444dabdf23d5942c9f92e3ec0dfc84510e98', + 1 => + array ( + 0 => 'phpunit\\event\\test\\mockobjectfromwsdlcreatedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/PartialMockObjectCreatedSubscriber.php' => + array ( + 0 => '009b9905a0f4e1f62fecfae9a3e058303febed8c', + 1 => + array ( + 0 => 'phpunit\\event\\test\\partialmockobjectcreatedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/TestProxyCreated.php' => + array ( + 0 => 'af63e5bd45acc72487940c7bf6f59cf5bb66f86a', + 1 => + array ( + 0 => 'phpunit\\event\\test\\testproxycreated', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\classname', + 3 => 'phpunit\\event\\test\\constructorarguments', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/TestProxyCreatedSubscriber.php' => + array ( + 0 => 'd532b47521a5d2d72584da875a0f2237c47ac8d0', + 1 => + array ( + 0 => 'phpunit\\event\\test\\testproxycreatedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectForAbstractClassCreated.php' => + array ( + 0 => '261acc731cbb02e36f23946ff3ca671fbefea3b1', + 1 => + array ( + 0 => 'phpunit\\event\\test\\mockobjectforabstractclasscreated', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\classname', + 3 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/TestStubForIntersectionOfInterfacesCreated.php' => + array ( + 0 => 'f782c3b13d7a1e7f9ebde76c363549c81084b0df', + 1 => + array ( + 0 => 'phpunit\\event\\test\\teststubforintersectionofinterfacescreated', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\interfaces', + 3 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectForTraitCreatedSubscriber.php' => + array ( + 0 => '17565d5acb031e9dc2508ab02f9d0c1fee7e2266', + 1 => + array ( + 0 => 'phpunit\\event\\test\\mockobjectfortraitcreatedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectForIntersectionOfInterfacesCreated.php' => + array ( + 0 => '831d71759a068234a81496a74f983ddba41375c8', + 1 => + array ( + 0 => 'phpunit\\event\\test\\mockobjectforintersectionofinterfacescreated', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\interfaces', + 3 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectCreated.php' => + array ( + 0 => '32041115bf22abdd203adea82bdca00a0d981aba', + 1 => + array ( + 0 => 'phpunit\\event\\test\\mockobjectcreated', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\classname', + 3 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectForAbstractClassCreatedSubscriber.php' => + array ( + 0 => 'd2b5f56864a320b073b902af64472640238a7bf0', + 1 => + array ( + 0 => 'phpunit\\event\\test\\mockobjectforabstractclasscreatedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectForIntersectionOfInterfacesCreatedSubscriber.php' => + array ( + 0 => '5d5fc6c79aba59e998d0df24a69ea1f8658a1223', + 1 => + array ( + 0 => 'phpunit\\event\\test\\mockobjectforintersectionofinterfacescreatedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/PartialMockObjectCreated.php' => + array ( + 0 => 'efeee405d4106d2a7aa4e5bd54168a59d29a6b33', + 1 => + array ( + 0 => 'phpunit\\event\\test\\partialmockobjectcreated', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\classname', + 3 => 'phpunit\\event\\test\\methodnames', + 4 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectCreatedSubscriber.php' => + array ( + 0 => 'd5976d06ddb2dd3aa46f52bf84a03458ebea2310', + 1 => + array ( + 0 => 'phpunit\\event\\test\\mockobjectcreatedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectFromWsdlCreated.php' => + array ( + 0 => 'bac3fc26e684d5e421776e30f62283c7c2218da3', + 1 => + array ( + 0 => 'phpunit\\event\\test\\mockobjectfromwsdlcreated', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\__construct', + 1 => 'phpunit\\event\\test\\telemetryinfo', + 2 => 'phpunit\\event\\test\\wsdlfile', + 3 => 'phpunit\\event\\test\\originalclassname', + 4 => 'phpunit\\event\\test\\mockclassname', + 5 => 'phpunit\\event\\test\\methods', + 6 => 'phpunit\\event\\test\\calloriginalconstructor', + 7 => 'phpunit\\event\\test\\options', + 8 => 'phpunit\\event\\test\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/TestStubCreatedSubscriber.php' => + array ( + 0 => '96512e7319afdf237276da314ead175ef51cbd51', + 1 => + array ( + 0 => 'phpunit\\event\\test\\teststubcreatedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\test\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/Started.php' => + array ( + 0 => '24d4e338d702886ef843a434fb3b7ff02847a2d9', + 1 => + array ( + 0 => 'phpunit\\event\\testsuite\\started', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testsuite\\__construct', + 1 => 'phpunit\\event\\testsuite\\telemetryinfo', + 2 => 'phpunit\\event\\testsuite\\testsuite', + 3 => 'phpunit\\event\\testsuite\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/Loaded.php' => + array ( + 0 => 'e4c8699aea3db102af0c007137ce61e9134170e7', + 1 => + array ( + 0 => 'phpunit\\event\\testsuite\\loaded', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testsuite\\__construct', + 1 => 'phpunit\\event\\testsuite\\telemetryinfo', + 2 => 'phpunit\\event\\testsuite\\testsuite', + 3 => 'phpunit\\event\\testsuite\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/Skipped.php' => + array ( + 0 => '5a31b35d5a241030df00c8e73d77ffcf227e0501', + 1 => + array ( + 0 => 'phpunit\\event\\testsuite\\skipped', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testsuite\\__construct', + 1 => 'phpunit\\event\\testsuite\\telemetryinfo', + 2 => 'phpunit\\event\\testsuite\\testsuite', + 3 => 'phpunit\\event\\testsuite\\message', + 4 => 'phpunit\\event\\testsuite\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/SortedSubscriber.php' => + array ( + 0 => '20d6d173def5f3ae0476c20bd9cc33988dbc3a1c', + 1 => + array ( + 0 => 'phpunit\\event\\testsuite\\sortedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testsuite\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/Filtered.php' => + array ( + 0 => 'd1b556e42101aa469732c5ca767ff6309d0ff516', + 1 => + array ( + 0 => 'phpunit\\event\\testsuite\\filtered', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testsuite\\__construct', + 1 => 'phpunit\\event\\testsuite\\telemetryinfo', + 2 => 'phpunit\\event\\testsuite\\testsuite', + 3 => 'phpunit\\event\\testsuite\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/SkippedSubscriber.php' => + array ( + 0 => 'be8612409db213bc5af8440d7b51b52488fa4394', + 1 => + array ( + 0 => 'phpunit\\event\\testsuite\\skippedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testsuite\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/LoadedSubscriber.php' => + array ( + 0 => '4544a5754b993bdd15b48b3b3169a21c7e49676f', + 1 => + array ( + 0 => 'phpunit\\event\\testsuite\\loadedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testsuite\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/Sorted.php' => + array ( + 0 => '6c2d2aac3263e552bff86f4d40040ef7566fadb9', + 1 => + array ( + 0 => 'phpunit\\event\\testsuite\\sorted', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testsuite\\__construct', + 1 => 'phpunit\\event\\testsuite\\telemetryinfo', + 2 => 'phpunit\\event\\testsuite\\executionorder', + 3 => 'phpunit\\event\\testsuite\\executionorderdefects', + 4 => 'phpunit\\event\\testsuite\\resolvedependencies', + 5 => 'phpunit\\event\\testsuite\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/Finished.php' => + array ( + 0 => 'f0190ec3311347712478c4eab44b18f4969e36d3', + 1 => + array ( + 0 => 'phpunit\\event\\testsuite\\finished', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testsuite\\__construct', + 1 => 'phpunit\\event\\testsuite\\telemetryinfo', + 2 => 'phpunit\\event\\testsuite\\testsuite', + 3 => 'phpunit\\event\\testsuite\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/FilteredSubscriber.php' => + array ( + 0 => 'a4b10515eae863253c20d68dff9b639f5cbe4280', + 1 => + array ( + 0 => 'phpunit\\event\\testsuite\\filteredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testsuite\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/StartedSubscriber.php' => + array ( + 0 => '57e81d7795efb67a5a5a7786b53d1f4f82fe5cc4', + 1 => + array ( + 0 => 'phpunit\\event\\testsuite\\startedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testsuite\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/FinishedSubscriber.php' => + array ( + 0 => '9c7b1dcfde5946a51b150306f5d29a7ff3bd418f', + 1 => + array ( + 0 => 'phpunit\\event\\testsuite\\finishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\testsuite\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Application/Started.php' => + array ( + 0 => '4055343068eaad625c406ebe145656a007153a37', + 1 => + array ( + 0 => 'phpunit\\event\\application\\started', + ), + 2 => + array ( + 0 => 'phpunit\\event\\application\\__construct', + 1 => 'phpunit\\event\\application\\telemetryinfo', + 2 => 'phpunit\\event\\application\\runtime', + 3 => 'phpunit\\event\\application\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Application/Finished.php' => + array ( + 0 => 'babaa2195b94b3a6190db626b81cc81b9990bb70', + 1 => + array ( + 0 => 'phpunit\\event\\application\\finished', + ), + 2 => + array ( + 0 => 'phpunit\\event\\application\\__construct', + 1 => 'phpunit\\event\\application\\telemetryinfo', + 2 => 'phpunit\\event\\application\\shellexitcode', + 3 => 'phpunit\\event\\application\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Application/StartedSubscriber.php' => + array ( + 0 => '5871e42fdc035a1cb2ce8acc80c9fe94b94bdc03', + 1 => + array ( + 0 => 'phpunit\\event\\application\\startedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\application\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Application/FinishedSubscriber.php' => + array ( + 0 => '5e94fbe68de25acfd724a44f2796fb8dfe58b6fb', + 1 => + array ( + 0 => 'phpunit\\event\\application\\finishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\event\\application\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/EventCollection.php' => + array ( + 0 => 'a303f39ca3c267fe7b0ecefc833a2338bdc4c507', + 1 => + array ( + 0 => 'phpunit\\event\\eventcollection', + ), + 2 => + array ( + 0 => 'phpunit\\event\\add', + 1 => 'phpunit\\event\\asarray', + 2 => 'phpunit\\event\\count', + 3 => 'phpunit\\event\\isempty', + 4 => 'phpunit\\event\\isnotempty', + 5 => 'phpunit\\event\\getiterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/TypeMap.php' => + array ( + 0 => '2f1846abdbb7d8701da3ff931535b87c6f1feb36', + 1 => + array ( + 0 => 'phpunit\\event\\typemap', + ), + 2 => + array ( + 0 => 'phpunit\\event\\addmapping', + 1 => 'phpunit\\event\\isknownsubscribertype', + 2 => 'phpunit\\event\\isknowneventtype', + 3 => 'phpunit\\event\\map', + 4 => 'phpunit\\event\\ensuresubscriberinterfaceexists', + 5 => 'phpunit\\event\\ensureeventclassexists', + 6 => 'phpunit\\event\\ensuresubscriberinterfaceextendsinterface', + 7 => 'phpunit\\event\\ensureeventclassimplementseventinterface', + 8 => 'phpunit\\event\\ensuresubscriberwasnotalreadyregistered', + 9 => 'phpunit\\event\\ensureeventwasnotalreadyassigned', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/UnknownEventTypeException.php' => + array ( + 0 => '744c2352e323169a22038a724ea2a29f6a39897a', + 1 => + array ( + 0 => 'phpunit\\event\\unknowneventtypeexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/UnknownEventException.php' => + array ( + 0 => '59fa5ec8542a3fda5d1b7ed2eda5e76b175b900a', + 1 => + array ( + 0 => 'phpunit\\event\\unknowneventexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/InvalidSubscriberException.php' => + array ( + 0 => '4cb3fb9391929d6477d59bd68b0e7e65d6ae7496', + 1 => + array ( + 0 => 'phpunit\\event\\invalidsubscriberexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/NoTestCaseObjectOnCallStackException.php' => + array ( + 0 => '82b7cba12fc332001dd207c69cdfa0f217837a49', + 1 => + array ( + 0 => 'phpunit\\event\\code\\notestcaseobjectoncallstackexception', + ), + 2 => + array ( + 0 => 'phpunit\\event\\code\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/RuntimeException.php' => + array ( + 0 => 'f4f962615eeab9ba85d908f41a700306e5e697fa', + 1 => + array ( + 0 => 'phpunit\\event\\runtimeexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/NoComparisonFailureException.php' => + array ( + 0 => '34134db3b3e58cfa04fcdad52702402dd111ba14', + 1 => + array ( + 0 => 'phpunit\\event\\test\\nocomparisonfailureexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/EventFacadeIsSealedException.php' => + array ( + 0 => 'b7e05797eeffddb5d00170510c015935f6e9bafe', + 1 => + array ( + 0 => 'phpunit\\event\\eventfacadeissealedexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/InvalidArgumentException.php' => + array ( + 0 => '02967b342c1f626c9120a8e4bfc335d1192467e6', + 1 => + array ( + 0 => 'phpunit\\event\\invalidargumentexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/NoPreviousThrowableException.php' => + array ( + 0 => '88a8caffc9113463080cd1b26971aff29ccf4f9c', + 1 => + array ( + 0 => 'phpunit\\event\\nopreviousthrowableexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/UnknownSubscriberTypeException.php' => + array ( + 0 => '9e9f6d0e00ec7970d7fbfbdd498af748718d5494', + 1 => + array ( + 0 => 'phpunit\\event\\unknownsubscribertypeexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/EventAlreadyAssignedException.php' => + array ( + 0 => '82721698929ece20f7a498a5c94f124fa70b815b', + 1 => + array ( + 0 => 'phpunit\\event\\eventalreadyassignedexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/SubscriberTypeAlreadyRegisteredException.php' => + array ( + 0 => 'ec0690787b168bfcdb18a148a6b9c9ca6914b6e9', + 1 => + array ( + 0 => 'phpunit\\event\\subscribertypealreadyregisteredexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/NoDataSetFromDataProviderException.php' => + array ( + 0 => '11025e8837e709e9d6d8952abeb056861dea21cb', + 1 => + array ( + 0 => 'phpunit\\event\\testdata\\nodatasetfromdataproviderexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/InvalidEventException.php' => + array ( + 0 => '48a46996b2aca4e1424a3e7cc37f265fccb0eeb7', + 1 => + array ( + 0 => 'phpunit\\event\\invalideventexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/MapError.php' => + array ( + 0 => '803cfd67a59a90b90e26a89b933d8c189614e7cd', + 1 => + array ( + 0 => 'phpunit\\event\\maperror', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/Exception.php' => + array ( + 0 => '71b54ecaf6e136baaf9aa53ec0d6485277d51703', + 1 => + array ( + 0 => 'phpunit\\event\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/UnknownSubscriberException.php' => + array ( + 0 => 'f007419a99a9bc9383ec72d898b86b92666b1956', + 1 => + array ( + 0 => 'phpunit\\event\\unknownsubscriberexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Facade.php' => + array ( + 0 => 'e678dbfe7e7c46c06e6a483884e0184f0dfb31da', + 1 => + array ( + 0 => 'phpunit\\event\\facade', + ), + 2 => + array ( + 0 => 'phpunit\\event\\instance', + 1 => 'phpunit\\event\\emitter', + 2 => 'phpunit\\event\\__construct', + 3 => 'phpunit\\event\\registersubscribers', + 4 => 'phpunit\\event\\registersubscriber', + 5 => 'phpunit\\event\\registertracer', + 6 => 'phpunit\\event\\initforisolation', + 7 => 'phpunit\\event\\forward', + 8 => 'phpunit\\event\\seal', + 9 => 'phpunit\\event\\createdispatchingemitter', + 10 => 'phpunit\\event\\createtelemetrysystem', + 11 => 'phpunit\\event\\deferreddispatcher', + 12 => 'phpunit\\event\\typemap', + 13 => 'phpunit\\event\\registerdefaulttypes', + 14 => 'phpunit\\event\\garbagecollectorstatusprovider', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Before.php' => + array ( + 0 => '86f2501393f42b32bca87e0ddf4347f52f200545', + 1 => + array ( + 0 => 'phpunit\\metadata\\before', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isbefore', + 2 => 'phpunit\\metadata\\priority', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RunClassInSeparateProcess.php' => + array ( + 0 => '187f82b00d52b64ed987ffc6801aa47f438ea450', + 1 => + array ( + 0 => 'phpunit\\metadata\\runclassinseparateprocess', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\isrunclassinseparateprocess', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/CoversTrait.php' => + array ( + 0 => '842833daca8b6731fa357ff5d6dc40f394f1d842', + 1 => + array ( + 0 => 'phpunit\\metadata\\coverstrait', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\iscoverstrait', + 2 => 'phpunit\\metadata\\traitname', + 3 => 'phpunit\\metadata\\asstringforcodeunitmapper', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RequiresPhp.php' => + array ( + 0 => '8f8fc777fb7047defb44cdb34bda1fbcc1ce6a86', + 1 => + array ( + 0 => 'phpunit\\metadata\\requiresphp', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isrequiresphp', + 2 => 'phpunit\\metadata\\versionrequirement', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RequiresOperatingSystemFamily.php' => + array ( + 0 => '68b94ca5ba9d3a1354b194a196749cb187f35b7d', + 1 => + array ( + 0 => 'phpunit\\metadata\\requiresoperatingsystemfamily', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isrequiresoperatingsystemfamily', + 2 => 'phpunit\\metadata\\operatingsystemfamily', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Group.php' => + array ( + 0 => '31b15a872a277c2b23d257f7ad21eee09ac5b317', + 1 => + array ( + 0 => 'phpunit\\metadata\\group', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isgroup', + 2 => 'phpunit\\metadata\\groupname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/UsesTrait.php' => + array ( + 0 => '24f3502570bdcb2b8e7190cd54d8ce9d98199242', + 1 => + array ( + 0 => 'phpunit\\metadata\\usestrait', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isusestrait', + 2 => 'phpunit\\metadata\\traitname', + 3 => 'phpunit\\metadata\\asstringforcodeunitmapper', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/CoversMethod.php' => + array ( + 0 => '92cf35cf4a7fe48dc5cc2d3a436c3a3eb177f76d', + 1 => + array ( + 0 => 'phpunit\\metadata\\coversmethod', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\iscoversmethod', + 2 => 'phpunit\\metadata\\classname', + 3 => 'phpunit\\metadata\\methodname', + 4 => 'phpunit\\metadata\\asstringforcodeunitmapper', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/After.php' => + array ( + 0 => 'e77ee3890289200536f69959b17b596182a7dd98', + 1 => + array ( + 0 => 'phpunit\\metadata\\after', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isafter', + 2 => 'phpunit\\metadata\\priority', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/TestDox.php' => + array ( + 0 => 'e2cca2f74fdd745a9eb84c659c73daac30260927', + 1 => + array ( + 0 => 'phpunit\\metadata\\testdox', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\istestdox', + 2 => 'phpunit\\metadata\\text', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/CoversDefaultClass.php' => + array ( + 0 => '48c2dc90398903cde7f990e53a25e729715d6aee', + 1 => + array ( + 0 => 'phpunit\\metadata\\coversdefaultclass', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\iscoversdefaultclass', + 2 => 'phpunit\\metadata\\classname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RequiresSetting.php' => + array ( + 0 => 'ff3da3a291c70d92d96264eeaa9791900c683a4f', + 1 => + array ( + 0 => 'phpunit\\metadata\\requiressetting', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isrequiressetting', + 2 => 'phpunit\\metadata\\setting', + 3 => 'phpunit\\metadata\\value', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/DependsOnMethod.php' => + array ( + 0 => '0a6438f4f72e58d7ea9ea6b9d34eceae73fcbb34', + 1 => + array ( + 0 => 'phpunit\\metadata\\dependsonmethod', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isdependsonmethod', + 2 => 'phpunit\\metadata\\classname', + 3 => 'phpunit\\metadata\\methodname', + 4 => 'phpunit\\metadata\\deepclone', + 5 => 'phpunit\\metadata\\shallowclone', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/DependsOnClass.php' => + array ( + 0 => 'df3ce346e5260aa56f35657e2b0336ef3ab599ea', + 1 => + array ( + 0 => 'phpunit\\metadata\\dependsonclass', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isdependsonclass', + 2 => 'phpunit\\metadata\\classname', + 3 => 'phpunit\\metadata\\deepclone', + 4 => 'phpunit\\metadata\\shallowclone', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/DataProvider.php' => + array ( + 0 => '1fa176f51a85e406ee8ecc7d840dba5bcafbe830', + 1 => + array ( + 0 => 'phpunit\\metadata\\dataprovider', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isdataprovider', + 2 => 'phpunit\\metadata\\classname', + 3 => 'phpunit\\metadata\\methodname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Metadata.php' => + array ( + 0 => 'ad325fc75af713894590a888e15b22b0a29017d8', + 1 => + array ( + 0 => 'phpunit\\metadata\\metadata', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\after', + 1 => 'phpunit\\metadata\\afterclass', + 2 => 'phpunit\\metadata\\backupglobalsonclass', + 3 => 'phpunit\\metadata\\backupglobalsonmethod', + 4 => 'phpunit\\metadata\\backupstaticpropertiesonclass', + 5 => 'phpunit\\metadata\\backupstaticpropertiesonmethod', + 6 => 'phpunit\\metadata\\before', + 7 => 'phpunit\\metadata\\beforeclass', + 8 => 'phpunit\\metadata\\coversclass', + 9 => 'phpunit\\metadata\\coverstrait', + 10 => 'phpunit\\metadata\\coversmethod', + 11 => 'phpunit\\metadata\\coversfunction', + 12 => 'phpunit\\metadata\\coversonclass', + 13 => 'phpunit\\metadata\\coversonmethod', + 14 => 'phpunit\\metadata\\coversdefaultclass', + 15 => 'phpunit\\metadata\\coversnothingonclass', + 16 => 'phpunit\\metadata\\coversnothingonmethod', + 17 => 'phpunit\\metadata\\dataprovider', + 18 => 'phpunit\\metadata\\dependsonclass', + 19 => 'phpunit\\metadata\\dependsonmethod', + 20 => 'phpunit\\metadata\\disablereturnvaluegenerationfortestdoubles', + 21 => 'phpunit\\metadata\\doesnotperformassertionsonclass', + 22 => 'phpunit\\metadata\\doesnotperformassertionsonmethod', + 23 => 'phpunit\\metadata\\excludeglobalvariablefrombackuponclass', + 24 => 'phpunit\\metadata\\excludeglobalvariablefrombackuponmethod', + 25 => 'phpunit\\metadata\\excludestaticpropertyfrombackuponclass', + 26 => 'phpunit\\metadata\\excludestaticpropertyfrombackuponmethod', + 27 => 'phpunit\\metadata\\grouponclass', + 28 => 'phpunit\\metadata\\grouponmethod', + 29 => 'phpunit\\metadata\\ignoredeprecationsonclass', + 30 => 'phpunit\\metadata\\ignoredeprecationsonmethod', + 31 => 'phpunit\\metadata\\ignorephpunitdeprecationsonclass', + 32 => 'phpunit\\metadata\\ignorephpunitdeprecationsonmethod', + 33 => 'phpunit\\metadata\\postcondition', + 34 => 'phpunit\\metadata\\precondition', + 35 => 'phpunit\\metadata\\preserveglobalstateonclass', + 36 => 'phpunit\\metadata\\preserveglobalstateonmethod', + 37 => 'phpunit\\metadata\\requiresfunctiononclass', + 38 => 'phpunit\\metadata\\requiresfunctiononmethod', + 39 => 'phpunit\\metadata\\requiresmethodonclass', + 40 => 'phpunit\\metadata\\requiresmethodonmethod', + 41 => 'phpunit\\metadata\\requiresoperatingsystemonclass', + 42 => 'phpunit\\metadata\\requiresoperatingsystemonmethod', + 43 => 'phpunit\\metadata\\requiresoperatingsystemfamilyonclass', + 44 => 'phpunit\\metadata\\requiresoperatingsystemfamilyonmethod', + 45 => 'phpunit\\metadata\\requiresphponclass', + 46 => 'phpunit\\metadata\\requiresphponmethod', + 47 => 'phpunit\\metadata\\requiresphpextensiononclass', + 48 => 'phpunit\\metadata\\requiresphpextensiononmethod', + 49 => 'phpunit\\metadata\\requiresphpunitonclass', + 50 => 'phpunit\\metadata\\requiresphpunitonmethod', + 51 => 'phpunit\\metadata\\requiresphpunitextensiononclass', + 52 => 'phpunit\\metadata\\requiresphpunitextensiononmethod', + 53 => 'phpunit\\metadata\\requiressettingonclass', + 54 => 'phpunit\\metadata\\requiressettingonmethod', + 55 => 'phpunit\\metadata\\runclassinseparateprocess', + 56 => 'phpunit\\metadata\\runtestsinseparateprocesses', + 57 => 'phpunit\\metadata\\runinseparateprocess', + 58 => 'phpunit\\metadata\\test', + 59 => 'phpunit\\metadata\\testdoxonclass', + 60 => 'phpunit\\metadata\\testdoxonmethod', + 61 => 'phpunit\\metadata\\testwith', + 62 => 'phpunit\\metadata\\usesclass', + 63 => 'phpunit\\metadata\\usestrait', + 64 => 'phpunit\\metadata\\usesfunction', + 65 => 'phpunit\\metadata\\usesmethod', + 66 => 'phpunit\\metadata\\usesonclass', + 67 => 'phpunit\\metadata\\usesonmethod', + 68 => 'phpunit\\metadata\\usesdefaultclass', + 69 => 'phpunit\\metadata\\withouterrorhandler', + 70 => 'phpunit\\metadata\\__construct', + 71 => 'phpunit\\metadata\\isclasslevel', + 72 => 'phpunit\\metadata\\ismethodlevel', + 73 => 'phpunit\\metadata\\isafter', + 74 => 'phpunit\\metadata\\isafterclass', + 75 => 'phpunit\\metadata\\isbackupglobals', + 76 => 'phpunit\\metadata\\isbackupstaticproperties', + 77 => 'phpunit\\metadata\\isbeforeclass', + 78 => 'phpunit\\metadata\\isbefore', + 79 => 'phpunit\\metadata\\iscovers', + 80 => 'phpunit\\metadata\\iscoversclass', + 81 => 'phpunit\\metadata\\iscoversdefaultclass', + 82 => 'phpunit\\metadata\\iscoverstrait', + 83 => 'phpunit\\metadata\\iscoversfunction', + 84 => 'phpunit\\metadata\\iscoversmethod', + 85 => 'phpunit\\metadata\\iscoversnothing', + 86 => 'phpunit\\metadata\\isdataprovider', + 87 => 'phpunit\\metadata\\isdependsonclass', + 88 => 'phpunit\\metadata\\isdependsonmethod', + 89 => 'phpunit\\metadata\\isdisablereturnvaluegenerationfortestdoubles', + 90 => 'phpunit\\metadata\\isdoesnotperformassertions', + 91 => 'phpunit\\metadata\\isexcludeglobalvariablefrombackup', + 92 => 'phpunit\\metadata\\isexcludestaticpropertyfrombackup', + 93 => 'phpunit\\metadata\\isgroup', + 94 => 'phpunit\\metadata\\isignoredeprecations', + 95 => 'phpunit\\metadata\\isignorephpunitdeprecations', + 96 => 'phpunit\\metadata\\isrunclassinseparateprocess', + 97 => 'phpunit\\metadata\\isruninseparateprocess', + 98 => 'phpunit\\metadata\\isruntestsinseparateprocesses', + 99 => 'phpunit\\metadata\\istest', + 100 => 'phpunit\\metadata\\isprecondition', + 101 => 'phpunit\\metadata\\ispostcondition', + 102 => 'phpunit\\metadata\\ispreserveglobalstate', + 103 => 'phpunit\\metadata\\isrequiresmethod', + 104 => 'phpunit\\metadata\\isrequiresfunction', + 105 => 'phpunit\\metadata\\isrequiresoperatingsystem', + 106 => 'phpunit\\metadata\\isrequiresoperatingsystemfamily', + 107 => 'phpunit\\metadata\\isrequiresphp', + 108 => 'phpunit\\metadata\\isrequiresphpextension', + 109 => 'phpunit\\metadata\\isrequiresphpunit', + 110 => 'phpunit\\metadata\\isrequiresphpunitextension', + 111 => 'phpunit\\metadata\\isrequiressetting', + 112 => 'phpunit\\metadata\\istestdox', + 113 => 'phpunit\\metadata\\istestwith', + 114 => 'phpunit\\metadata\\isuses', + 115 => 'phpunit\\metadata\\isusesclass', + 116 => 'phpunit\\metadata\\isusesdefaultclass', + 117 => 'phpunit\\metadata\\isusestrait', + 118 => 'phpunit\\metadata\\isusesfunction', + 119 => 'phpunit\\metadata\\isusesmethod', + 120 => 'phpunit\\metadata\\iswithouterrorhandler', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RunInSeparateProcess.php' => + array ( + 0 => 'd4b2556df0523f2e9b2081202b90acdf0ee6e2e8', + 1 => + array ( + 0 => 'phpunit\\metadata\\runinseparateprocess', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\isruninseparateprocess', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/UsesFunction.php' => + array ( + 0 => '15f41f035ec4a4260ae77e31a9714ed0dd4687ba', + 1 => + array ( + 0 => 'phpunit\\metadata\\usesfunction', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isusesfunction', + 2 => 'phpunit\\metadata\\functionname', + 3 => 'phpunit\\metadata\\asstringforcodeunitmapper', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/UsesMethod.php' => + array ( + 0 => '75520d79f98ca0cdf49f6c726fb51257a6977ce6', + 1 => + array ( + 0 => 'phpunit\\metadata\\usesmethod', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isusesmethod', + 2 => 'phpunit\\metadata\\classname', + 3 => 'phpunit\\metadata\\methodname', + 4 => 'phpunit\\metadata\\asstringforcodeunitmapper', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/AfterClass.php' => + array ( + 0 => 'b86aeffbb9630c276a7486fff8cda8e0f751103b', + 1 => + array ( + 0 => 'phpunit\\metadata\\afterclass', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isafterclass', + 2 => 'phpunit\\metadata\\priority', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Uses.php' => + array ( + 0 => 'e7a4528f99e337a4ac6c0ae5a75327a7a122540c', + 1 => + array ( + 0 => 'phpunit\\metadata\\uses', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isuses', + 2 => 'phpunit\\metadata\\target', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Parser/AttributeParser.php' => + array ( + 0 => '5087d8f595a4778c1ae8a564372c4ada0ece7720', + 1 => + array ( + 0 => 'phpunit\\metadata\\parser\\attributeparser', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\parser\\forclass', + 1 => 'phpunit\\metadata\\parser\\formethod', + 2 => 'phpunit\\metadata\\parser\\forclassandmethod', + 3 => 'phpunit\\metadata\\parser\\issizegroup', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Parser/Parser.php' => + array ( + 0 => 'c93648c1649b75f147371b1a3516146168f3d0e3', + 1 => + array ( + 0 => 'phpunit\\metadata\\parser\\parser', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\parser\\forclass', + 1 => 'phpunit\\metadata\\parser\\formethod', + 2 => 'phpunit\\metadata\\parser\\forclassandmethod', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Parser/Registry.php' => + array ( + 0 => '3ab731226fc6e8b7bb27bb549d164a557277e13f', + 1 => + array ( + 0 => 'phpunit\\metadata\\parser\\registry', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\parser\\parser', + 1 => 'phpunit\\metadata\\parser\\build', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Parser/CachingParser.php' => + array ( + 0 => '504641e0361d27cf399ae12b2caff038c91785d8', + 1 => + array ( + 0 => 'phpunit\\metadata\\parser\\cachingparser', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\parser\\__construct', + 1 => 'phpunit\\metadata\\parser\\forclass', + 2 => 'phpunit\\metadata\\parser\\formethod', + 3 => 'phpunit\\metadata\\parser\\forclassandmethod', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Parser/Annotation/Registry.php' => + array ( + 0 => '51bc710191b9ebec05875657f11df2d70ff5b4f7', + 1 => + array ( + 0 => 'phpunit\\metadata\\annotation\\parser\\registry', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\annotation\\parser\\getinstance', + 1 => 'phpunit\\metadata\\annotation\\parser\\forclassname', + 2 => 'phpunit\\metadata\\annotation\\parser\\formethod', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Parser/Annotation/DocBlock.php' => + array ( + 0 => 'ed07043174124ee00f4a59bd31684e5bac12b022', + 1 => + array ( + 0 => 'phpunit\\metadata\\annotation\\parser\\docblock', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\annotation\\parser\\ofclass', + 1 => 'phpunit\\metadata\\annotation\\parser\\ofmethod', + 2 => 'phpunit\\metadata\\annotation\\parser\\__construct', + 3 => 'phpunit\\metadata\\annotation\\parser\\requirements', + 4 => 'phpunit\\metadata\\annotation\\parser\\symbolannotations', + 5 => 'phpunit\\metadata\\annotation\\parser\\parsedocblock', + 6 => 'phpunit\\metadata\\annotation\\parser\\extractannotationsfromreflector', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Parser/AnnotationParser.php' => + array ( + 0 => 'a9b172a26d151b691f819c2eef833bfab4b77168', + 1 => + array ( + 0 => 'phpunit\\metadata\\parser\\annotationparser', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\parser\\forclass', + 1 => 'phpunit\\metadata\\parser\\formethod', + 2 => 'phpunit\\metadata\\parser\\forclassandmethod', + 3 => 'phpunit\\metadata\\parser\\stringtobool', + 4 => 'phpunit\\metadata\\parser\\cleanupcoversorusestarget', + 5 => 'phpunit\\metadata\\parser\\parserequirements', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Parser/ParserChain.php' => + array ( + 0 => 'dcc533e7e394248bdd63f62e9e125d1868053a6e', + 1 => + array ( + 0 => 'phpunit\\metadata\\parser\\parserchain', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\parser\\__construct', + 1 => 'phpunit\\metadata\\parser\\forclass', + 2 => 'phpunit\\metadata\\parser\\formethod', + 3 => 'phpunit\\metadata\\parser\\forclassandmethod', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/UsesDefaultClass.php' => + array ( + 0 => '1eea84c33879aa776e29b9f6bfebd3ad77ec1dd1', + 1 => + array ( + 0 => 'phpunit\\metadata\\usesdefaultclass', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isusesdefaultclass', + 2 => 'phpunit\\metadata\\classname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/PreserveGlobalState.php' => + array ( + 0 => '32f5d27a4251c6e2b7dd6e0d14cbe58af6bf4f18', + 1 => + array ( + 0 => 'phpunit\\metadata\\preserveglobalstate', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\ispreserveglobalstate', + 2 => 'phpunit\\metadata\\enabled', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RequiresPhpunitExtension.php' => + array ( + 0 => 'b17905b07a3dc0bd28699935622fcb01040c6117', + 1 => + array ( + 0 => 'phpunit\\metadata\\requiresphpunitextension', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isrequiresphpunitextension', + 2 => 'phpunit\\metadata\\extensionclass', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/MetadataCollection.php' => + array ( + 0 => '843353e3b92e3a27bb0cfeee89849038745cbb18', + 1 => + array ( + 0 => 'phpunit\\metadata\\metadatacollection', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\fromarray', + 1 => 'phpunit\\metadata\\__construct', + 2 => 'phpunit\\metadata\\asarray', + 3 => 'phpunit\\metadata\\count', + 4 => 'phpunit\\metadata\\isempty', + 5 => 'phpunit\\metadata\\isnotempty', + 6 => 'phpunit\\metadata\\getiterator', + 7 => 'phpunit\\metadata\\mergewith', + 8 => 'phpunit\\metadata\\isclasslevel', + 9 => 'phpunit\\metadata\\ismethodlevel', + 10 => 'phpunit\\metadata\\isafter', + 11 => 'phpunit\\metadata\\isafterclass', + 12 => 'phpunit\\metadata\\isbackupglobals', + 13 => 'phpunit\\metadata\\isbackupstaticproperties', + 14 => 'phpunit\\metadata\\isbeforeclass', + 15 => 'phpunit\\metadata\\isbefore', + 16 => 'phpunit\\metadata\\iscovers', + 17 => 'phpunit\\metadata\\iscoversclass', + 18 => 'phpunit\\metadata\\iscoversdefaultclass', + 19 => 'phpunit\\metadata\\iscoverstrait', + 20 => 'phpunit\\metadata\\iscoversfunction', + 21 => 'phpunit\\metadata\\iscoversmethod', + 22 => 'phpunit\\metadata\\isexcludeglobalvariablefrombackup', + 23 => 'phpunit\\metadata\\isexcludestaticpropertyfrombackup', + 24 => 'phpunit\\metadata\\iscoversnothing', + 25 => 'phpunit\\metadata\\isdataprovider', + 26 => 'phpunit\\metadata\\isdepends', + 27 => 'phpunit\\metadata\\isdependsonclass', + 28 => 'phpunit\\metadata\\isdependsonmethod', + 29 => 'phpunit\\metadata\\isdisablereturnvaluegenerationfortestdoubles', + 30 => 'phpunit\\metadata\\isdoesnotperformassertions', + 31 => 'phpunit\\metadata\\isgroup', + 32 => 'phpunit\\metadata\\isignoredeprecations', + 33 => 'phpunit\\metadata\\isignorephpunitdeprecations', + 34 => 'phpunit\\metadata\\isrunclassinseparateprocess', + 35 => 'phpunit\\metadata\\isruninseparateprocess', + 36 => 'phpunit\\metadata\\isruntestsinseparateprocesses', + 37 => 'phpunit\\metadata\\istest', + 38 => 'phpunit\\metadata\\isprecondition', + 39 => 'phpunit\\metadata\\ispostcondition', + 40 => 'phpunit\\metadata\\ispreserveglobalstate', + 41 => 'phpunit\\metadata\\isrequiresmethod', + 42 => 'phpunit\\metadata\\isrequiresfunction', + 43 => 'phpunit\\metadata\\isrequiresoperatingsystem', + 44 => 'phpunit\\metadata\\isrequiresoperatingsystemfamily', + 45 => 'phpunit\\metadata\\isrequiresphp', + 46 => 'phpunit\\metadata\\isrequiresphpextension', + 47 => 'phpunit\\metadata\\isrequiresphpunit', + 48 => 'phpunit\\metadata\\isrequiresphpunitextension', + 49 => 'phpunit\\metadata\\isrequiressetting', + 50 => 'phpunit\\metadata\\istestdox', + 51 => 'phpunit\\metadata\\istestwith', + 52 => 'phpunit\\metadata\\isuses', + 53 => 'phpunit\\metadata\\isusesclass', + 54 => 'phpunit\\metadata\\isusesdefaultclass', + 55 => 'phpunit\\metadata\\isusestrait', + 56 => 'phpunit\\metadata\\isusesfunction', + 57 => 'phpunit\\metadata\\isusesmethod', + 58 => 'phpunit\\metadata\\iswithouterrorhandler', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RequiresMethod.php' => + array ( + 0 => '3650956e25497a9a8ad8aa0ce7c4b4826266b3de', + 1 => + array ( + 0 => 'phpunit\\metadata\\requiresmethod', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isrequiresmethod', + 2 => 'phpunit\\metadata\\classname', + 3 => 'phpunit\\metadata\\methodname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Test.php' => + array ( + 0 => 'f5c2a2790f58a2105579268d4d0f6ff963a80fef', + 1 => + array ( + 0 => 'phpunit\\metadata\\test', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\istest', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RequiresPhpunit.php' => + array ( + 0 => '8dbba34c69edb5ef8ac0a92e99805208a1de13dd', + 1 => + array ( + 0 => 'phpunit\\metadata\\requiresphpunit', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isrequiresphpunit', + 2 => 'phpunit\\metadata\\versionrequirement', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/MetadataCollectionIterator.php' => + array ( + 0 => '1a81033d52da5baaaf19f8091be2c7963712027c', + 1 => + array ( + 0 => 'phpunit\\metadata\\metadatacollectioniterator', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\rewind', + 2 => 'phpunit\\metadata\\valid', + 3 => 'phpunit\\metadata\\key', + 4 => 'phpunit\\metadata\\current', + 5 => 'phpunit\\metadata\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/DisableReturnValueGenerationForTestDoubles.php' => + array ( + 0 => '14c8c8d615aa1db3fe8c5873cd1e40919be22631', + 1 => + array ( + 0 => 'phpunit\\metadata\\disablereturnvaluegenerationfortestdoubles', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\isdisablereturnvaluegenerationfortestdoubles', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/ExcludeGlobalVariableFromBackup.php' => + array ( + 0 => 'bf3d138a3aebab5b6970e5d22fe24e9fb8c596a3', + 1 => + array ( + 0 => 'phpunit\\metadata\\excludeglobalvariablefrombackup', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isexcludeglobalvariablefrombackup', + 2 => 'phpunit\\metadata\\globalvariablename', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/IgnorePhpunitDeprecations.php' => + array ( + 0 => '2b672f381e5f32851068b058ba03f4dd9d008fe1', + 1 => + array ( + 0 => 'phpunit\\metadata\\ignorephpunitdeprecations', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\isignorephpunitdeprecations', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/WithoutErrorHandler.php' => + array ( + 0 => 'c6e1e8c2ea375638b41921659546c0fb16aad57d', + 1 => + array ( + 0 => 'phpunit\\metadata\\withouterrorhandler', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\iswithouterrorhandler', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Version/ComparisonRequirement.php' => + array ( + 0 => '4d4898a8b9c9f9327a4dcf11d538030823e37313', + 1 => + array ( + 0 => 'phpunit\\metadata\\version\\comparisonrequirement', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\version\\__construct', + 1 => 'phpunit\\metadata\\version\\issatisfiedby', + 2 => 'phpunit\\metadata\\version\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Version/ConstraintRequirement.php' => + array ( + 0 => '792ab212266d1fb7d82373143990642204a04817', + 1 => + array ( + 0 => 'phpunit\\metadata\\version\\constraintrequirement', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\version\\__construct', + 1 => 'phpunit\\metadata\\version\\issatisfiedby', + 2 => 'phpunit\\metadata\\version\\asstring', + 3 => 'phpunit\\metadata\\version\\sanitize', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Version/Requirement.php' => + array ( + 0 => '882be26052e7693a185e2603d84365e1089e4a47', + 1 => + array ( + 0 => 'phpunit\\metadata\\version\\requirement', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\version\\from', + 1 => 'phpunit\\metadata\\version\\issatisfiedby', + 2 => 'phpunit\\metadata\\version\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RequiresFunction.php' => + array ( + 0 => '8b9dbcc2f1c75c8f9a10ddbb0d5635d5196b9aed', + 1 => + array ( + 0 => 'phpunit\\metadata\\requiresfunction', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isrequiresfunction', + 2 => 'phpunit\\metadata\\functionname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/ExcludeStaticPropertyFromBackup.php' => + array ( + 0 => 'caa2f11c2243d13a7d46bbfa5d947bd5bbb02e07', + 1 => + array ( + 0 => 'phpunit\\metadata\\excludestaticpropertyfrombackup', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isexcludestaticpropertyfrombackup', + 2 => 'phpunit\\metadata\\classname', + 3 => 'phpunit\\metadata\\propertyname', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RequiresPhpExtension.php' => + array ( + 0 => '204147ae46fc92d38f530b6fe789d79615fb02c9', + 1 => + array ( + 0 => 'phpunit\\metadata\\requiresphpextension', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isrequiresphpextension', + 2 => 'phpunit\\metadata\\extension', + 3 => 'phpunit\\metadata\\hasversionrequirement', + 4 => 'phpunit\\metadata\\versionrequirement', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/DoesNotPerformAssertions.php' => + array ( + 0 => 'b17d64d572cf95638a4bc6dc5f7fa17f60e96459', + 1 => + array ( + 0 => 'phpunit\\metadata\\doesnotperformassertions', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\isdoesnotperformassertions', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/PreCondition.php' => + array ( + 0 => 'd9fa6ffdfdd69d6c64b0b4999c9aadfb99040912', + 1 => + array ( + 0 => 'phpunit\\metadata\\precondition', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isprecondition', + 2 => 'phpunit\\metadata\\priority', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RequiresOperatingSystem.php' => + array ( + 0 => '5545b792a72561a6c01448e4b6260dd44de5be55', + 1 => + array ( + 0 => 'phpunit\\metadata\\requiresoperatingsystem', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isrequiresoperatingsystem', + 2 => 'phpunit\\metadata\\operatingsystem', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/BackupStaticProperties.php' => + array ( + 0 => 'd83217e880969d2cef5023bd2f7d262ef56f9a56', + 1 => + array ( + 0 => 'phpunit\\metadata\\backupstaticproperties', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isbackupstaticproperties', + 2 => 'phpunit\\metadata\\enabled', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Api/HookMethods.php' => + array ( + 0 => '48adb20b58aa47b8d5ec3b7e43e317e26e824a8a', + 1 => + array ( + 0 => 'phpunit\\metadata\\api\\hookmethods', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\api\\hookmethods', + 1 => 'phpunit\\metadata\\api\\emptyhookmethodsarray', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Api/CodeCoverage.php' => + array ( + 0 => 'bd09619575272229f6e2cba5defd8b09074b26bc', + 1 => + array ( + 0 => 'phpunit\\metadata\\api\\codecoverage', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\api\\linestobecovered', + 1 => 'phpunit\\metadata\\api\\linestobeused', + 2 => 'phpunit\\metadata\\api\\shouldcodecoveragebecollectedfor', + 3 => 'phpunit\\metadata\\api\\maptocodeunits', + 4 => 'phpunit\\metadata\\api\\names', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Api/DataProvider.php' => + array ( + 0 => '9b37a44bbb61c7624dc6e8880889e91ad5aff098', + 1 => + array ( + 0 => 'phpunit\\metadata\\api\\dataprovider', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\api\\provideddata', + 1 => 'phpunit\\metadata\\api\\dataprovidedbymethods', + 2 => 'phpunit\\metadata\\api\\dataprovidedbymetadata', + 3 => 'phpunit\\metadata\\api\\dataprovidedbytestwithannotation', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Api/Requirements.php' => + array ( + 0 => '20b68ad248f66f8b2dfc2844f26df82c9efdc149', + 1 => + array ( + 0 => 'phpunit\\metadata\\api\\requirements', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\api\\requirementsnotsatisfiedfor', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Api/Dependencies.php' => + array ( + 0 => '569085b18f9d67b7d17cc1d274e9c549e50bf0fc', + 1 => + array ( + 0 => 'phpunit\\metadata\\api\\dependencies', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\api\\dependencies', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Api/Groups.php' => + array ( + 0 => '4b9571f8257cb556c120f21bdb6b3039400658fa', + 1 => + array ( + 0 => 'phpunit\\metadata\\api\\groups', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\api\\groups', + 1 => 'phpunit\\metadata\\api\\size', + 2 => 'phpunit\\metadata\\api\\canonicalizename', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/TestWith.php' => + array ( + 0 => '8385a9bd1a369e2305a6bc55258626611897861c', + 1 => + array ( + 0 => 'phpunit\\metadata\\testwith', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\istestwith', + 2 => 'phpunit\\metadata\\data', + 3 => 'phpunit\\metadata\\hasname', + 4 => 'phpunit\\metadata\\name', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/CoversNothing.php' => + array ( + 0 => '193f8ab93b9d169d7163a87e409f9169649bb031', + 1 => + array ( + 0 => 'phpunit\\metadata\\coversnothing', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\iscoversnothing', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/CoversFunction.php' => + array ( + 0 => '6ad6aa9e6fe7854b80c209fc995d5877354be78b', + 1 => + array ( + 0 => 'phpunit\\metadata\\coversfunction', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\iscoversfunction', + 2 => 'phpunit\\metadata\\functionname', + 3 => 'phpunit\\metadata\\asstringforcodeunitmapper', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/UsesClass.php' => + array ( + 0 => '6fbfb19a5623aa546b26bde5c325421d29c8ffdb', + 1 => + array ( + 0 => 'phpunit\\metadata\\usesclass', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isusesclass', + 2 => 'phpunit\\metadata\\classname', + 3 => 'phpunit\\metadata\\asstringforcodeunitmapper', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/IgnoreDeprecations.php' => + array ( + 0 => 'dd917bfa994ae40dd21da384f1ebbd0149c4946e', + 1 => + array ( + 0 => 'phpunit\\metadata\\ignoredeprecations', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\isignoredeprecations', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/PostCondition.php' => + array ( + 0 => '570bfdf869d7a10bf1a84e1b646a4933475e855c', + 1 => + array ( + 0 => 'phpunit\\metadata\\postcondition', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\ispostcondition', + 2 => 'phpunit\\metadata\\priority', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/BeforeClass.php' => + array ( + 0 => '35cc21a394c580b66c1d3bd40144c0e798d526e5', + 1 => + array ( + 0 => 'phpunit\\metadata\\beforeclass', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isbeforeclass', + 2 => 'phpunit\\metadata\\priority', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Exception/InvalidVersionRequirementException.php' => + array ( + 0 => 'e62ba4e9fec73b10bae23917147c91d8094d5341', + 1 => + array ( + 0 => 'phpunit\\metadata\\invalidversionrequirementexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Exception/ReflectionException.php' => + array ( + 0 => '9c2fe91d15be7251fdd7409147b2394b71f43557', + 1 => + array ( + 0 => 'phpunit\\metadata\\reflectionexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Exception/AnnotationsAreNotSupportedForInternalClassesException.php' => + array ( + 0 => '245fc7c071d5d9c2366846535e658a60064d4346', + 1 => + array ( + 0 => 'phpunit\\metadata\\annotationsarenotsupportedforinternalclassesexception', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Exception/NoVersionRequirementException.php' => + array ( + 0 => 'cc7a64f2fce8f852a7861cfc34875b20b4370d4c', + 1 => + array ( + 0 => 'phpunit\\metadata\\noversionrequirementexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Exception/Exception.php' => + array ( + 0 => '07470204cc4cc5fb672463fae706beb5a7b7907c', + 1 => + array ( + 0 => 'phpunit\\metadata\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/CoversClass.php' => + array ( + 0 => '5b3b876abe8b5d67b894d1212a4b4357c2c5d12b', + 1 => + array ( + 0 => 'phpunit\\metadata\\coversclass', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\iscoversclass', + 2 => 'phpunit\\metadata\\classname', + 3 => 'phpunit\\metadata\\asstringforcodeunitmapper', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RunTestsInSeparateProcesses.php' => + array ( + 0 => 'ab4d9f54f1a8b2a72553cd378317033ac642ace3', + 1 => + array ( + 0 => 'phpunit\\metadata\\runtestsinseparateprocesses', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\isruntestsinseparateprocesses', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/BackupGlobals.php' => + array ( + 0 => 'b28760a8e76a674c724f8ddff70fff3b09e9c5f3', + 1 => + array ( + 0 => 'phpunit\\metadata\\backupglobals', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\isbackupglobals', + 2 => 'phpunit\\metadata\\enabled', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Covers.php' => + array ( + 0 => '247842a063305f69bad47cfcc2cde417e301115a', + 1 => + array ( + 0 => 'phpunit\\metadata\\covers', + ), + 2 => + array ( + 0 => 'phpunit\\metadata\\__construct', + 1 => 'phpunit\\metadata\\iscovers', + 2 => 'phpunit\\metadata\\target', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/EventLogger.php' => + array ( + 0 => '031d73a64ec2e63365244d82d56e510b7c7ec4df', + 1 => + array ( + 0 => 'phpunit\\logging\\eventlogger', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\__construct', + 1 => 'phpunit\\logging\\trace', + 2 => 'phpunit\\logging\\telemetryinfo', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestErroredSubscriber.php' => + array ( + 0 => 'da6c69ac0ce95b8be4ecbe79f49d462a0b13b64c', + 1 => + array ( + 0 => 'phpunit\\logging\\junit\\testerroredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\junit\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestPrintedUnexpectedOutputSubscriber.php' => + array ( + 0 => '24262943213ecb70a776510c79b68d0644cd6800', + 1 => + array ( + 0 => 'phpunit\\logging\\junit\\testprintedunexpectedoutputsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\junit\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestFailedSubscriber.php' => + array ( + 0 => '8cce4e184c755ba0de942dcd10e2944d9e69e585', + 1 => + array ( + 0 => 'phpunit\\logging\\junit\\testfailedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\junit\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestRunnerExecutionFinishedSubscriber.php' => + array ( + 0 => 'e8afd14f758c737e703ed60f925477192661eb4a', + 1 => + array ( + 0 => 'phpunit\\logging\\junit\\testrunnerexecutionfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\junit\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestSuiteFinishedSubscriber.php' => + array ( + 0 => '2eb99f21ac0b18993c8e877ff7f4cb1e2ca8ef9d', + 1 => + array ( + 0 => 'phpunit\\logging\\junit\\testsuitefinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\junit\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestMarkedIncompleteSubscriber.php' => + array ( + 0 => 'aca628e059279086d08feab91a0f17493eda53bc', + 1 => + array ( + 0 => 'phpunit\\logging\\junit\\testmarkedincompletesubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\junit\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestPreparedSubscriber.php' => + array ( + 0 => '05d979565bc4a4de74da2db5e80fa99165ece2c5', + 1 => + array ( + 0 => 'phpunit\\logging\\junit\\testpreparedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\junit\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestPreparationStartedSubscriber.php' => + array ( + 0 => '9644fbab4c42f7eb1e354328ef204a16ea954821', + 1 => + array ( + 0 => 'phpunit\\logging\\junit\\testpreparationstartedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\junit\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestSuiteStartedSubscriber.php' => + array ( + 0 => '7d83b461164ce450e5202194a298279e53e887d4', + 1 => + array ( + 0 => 'phpunit\\logging\\junit\\testsuitestartedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\junit\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestPreparationFailedSubscriber.php' => + array ( + 0 => '8ef7d57de2047424f4444a03e7074e8105321347', + 1 => + array ( + 0 => 'phpunit\\logging\\junit\\testpreparationfailedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\junit\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/Subscriber.php' => + array ( + 0 => '9c47cc22c8221f2194cd16d4df3da34d3b9bf0f0', + 1 => + array ( + 0 => 'phpunit\\logging\\junit\\subscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\junit\\__construct', + 1 => 'phpunit\\logging\\junit\\logger', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestSkippedSubscriber.php' => + array ( + 0 => 'cf184a15259a73998ff88bdbb3236e3bedc342fb', + 1 => + array ( + 0 => 'phpunit\\logging\\junit\\testskippedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\junit\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestFinishedSubscriber.php' => + array ( + 0 => 'da9432957a2b7101bcb070016646ca6ead84ab09', + 1 => + array ( + 0 => 'phpunit\\logging\\junit\\testfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\junit\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/JunitXmlLogger.php' => + array ( + 0 => '98aae36893fd57b61d2d237adeb296e3d659c010', + 1 => + array ( + 0 => 'phpunit\\logging\\junit\\junitxmllogger', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\junit\\__construct', + 1 => 'phpunit\\logging\\junit\\flush', + 2 => 'phpunit\\logging\\junit\\testsuitestarted', + 3 => 'phpunit\\logging\\junit\\testsuitefinished', + 4 => 'phpunit\\logging\\junit\\testpreparationstarted', + 5 => 'phpunit\\logging\\junit\\testpreparationfailed', + 6 => 'phpunit\\logging\\junit\\testprepared', + 7 => 'phpunit\\logging\\junit\\testprintedunexpectedoutput', + 8 => 'phpunit\\logging\\junit\\testfinished', + 9 => 'phpunit\\logging\\junit\\testmarkedincomplete', + 10 => 'phpunit\\logging\\junit\\testskipped', + 11 => 'phpunit\\logging\\junit\\testerrored', + 12 => 'phpunit\\logging\\junit\\testfailed', + 13 => 'phpunit\\logging\\junit\\handlefinish', + 14 => 'phpunit\\logging\\junit\\registersubscribers', + 15 => 'phpunit\\logging\\junit\\createdocument', + 16 => 'phpunit\\logging\\junit\\handlefault', + 17 => 'phpunit\\logging\\junit\\handleincompleteorskipped', + 18 => 'phpunit\\logging\\junit\\testasstring', + 19 => 'phpunit\\logging\\junit\\name', + 20 => 'phpunit\\logging\\junit\\createtestcase', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/TeamCityLogger.php' => + array ( + 0 => 'c1cf100d38ff107afbb8ff904c09f73e04af6708', + 1 => + array ( + 0 => 'phpunit\\logging\\teamcity\\teamcitylogger', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\teamcity\\__construct', + 1 => 'phpunit\\logging\\teamcity\\testsuitestarted', + 2 => 'phpunit\\logging\\teamcity\\testsuitefinished', + 3 => 'phpunit\\logging\\teamcity\\testprepared', + 4 => 'phpunit\\logging\\teamcity\\testmarkedincomplete', + 5 => 'phpunit\\logging\\teamcity\\testskipped', + 6 => 'phpunit\\logging\\teamcity\\testsuiteskipped', + 7 => 'phpunit\\logging\\teamcity\\beforefirsttestmethoderrored', + 8 => 'phpunit\\logging\\teamcity\\testerrored', + 9 => 'phpunit\\logging\\teamcity\\testfailed', + 10 => 'phpunit\\logging\\teamcity\\testconsideredrisky', + 11 => 'phpunit\\logging\\teamcity\\testfinished', + 12 => 'phpunit\\logging\\teamcity\\flush', + 13 => 'phpunit\\logging\\teamcity\\registersubscribers', + 14 => 'phpunit\\logging\\teamcity\\setflowid', + 15 => 'phpunit\\logging\\teamcity\\writemessage', + 16 => 'phpunit\\logging\\teamcity\\duration', + 17 => 'phpunit\\logging\\teamcity\\escape', + 18 => 'phpunit\\logging\\teamcity\\message', + 19 => 'phpunit\\logging\\teamcity\\details', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestErroredSubscriber.php' => + array ( + 0 => '759aa675a931ae49465eb0599a3d3e6e31943cfb', + 1 => + array ( + 0 => 'phpunit\\logging\\teamcity\\testerroredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\teamcity\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestConsideredRiskySubscriber.php' => + array ( + 0 => '4afc90eacbd462a7da74de4090e0976718220ed9', + 1 => + array ( + 0 => 'phpunit\\logging\\teamcity\\testconsideredriskysubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\teamcity\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestFailedSubscriber.php' => + array ( + 0 => 'b11808a16f6214f1bdeb6514194807eb8e0c85cc', + 1 => + array ( + 0 => 'phpunit\\logging\\teamcity\\testfailedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\teamcity\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSuiteSkippedSubscriber.php' => + array ( + 0 => '3d5f5792cc425b419000298846201917d40b8c5b', + 1 => + array ( + 0 => 'phpunit\\logging\\teamcity\\testsuiteskippedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\teamcity\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestRunnerExecutionFinishedSubscriber.php' => + array ( + 0 => '1e829e85cfffc573c842ffe818342ab1c233e147', + 1 => + array ( + 0 => 'phpunit\\logging\\teamcity\\testrunnerexecutionfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\teamcity\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSuiteFinishedSubscriber.php' => + array ( + 0 => 'b138a415c81597ccc787b801b97b85430c9eba58', + 1 => + array ( + 0 => 'phpunit\\logging\\teamcity\\testsuitefinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\teamcity\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestMarkedIncompleteSubscriber.php' => + array ( + 0 => 'b92bec35c43adc52992174cdf5a10647259c1467', + 1 => + array ( + 0 => 'phpunit\\logging\\teamcity\\testmarkedincompletesubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\teamcity\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestPreparedSubscriber.php' => + array ( + 0 => '3c0ff77336ab9f4fbcbc85b7c12c413aa5dbfc98', + 1 => + array ( + 0 => 'phpunit\\logging\\teamcity\\testpreparedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\teamcity\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSuiteStartedSubscriber.php' => + array ( + 0 => 'f7d352194ad30736a09df3f9e718d347dfe51c1a', + 1 => + array ( + 0 => 'phpunit\\logging\\teamcity\\testsuitestartedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\teamcity\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSuiteBeforeFirstTestMethodErroredSubscriber.php' => + array ( + 0 => '9422313954cdc7baeabed70671ab42dfdc663bdf', + 1 => + array ( + 0 => 'phpunit\\logging\\teamcity\\testsuitebeforefirsttestmethoderroredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\teamcity\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/Subscriber.php' => + array ( + 0 => '154bfdc93955a2ef6becf85152f3b8277ede2d02', + 1 => + array ( + 0 => 'phpunit\\logging\\teamcity\\subscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\teamcity\\__construct', + 1 => 'phpunit\\logging\\teamcity\\logger', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSkippedSubscriber.php' => + array ( + 0 => 'dd8a538ca885d4091049da0ef176ebe2024199a0', + 1 => + array ( + 0 => 'phpunit\\logging\\teamcity\\testskippedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\teamcity\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestFinishedSubscriber.php' => + array ( + 0 => 'f2c269759fb38845e3dffe42ca4ea15685777482', + 1 => + array ( + 0 => 'phpunit\\logging\\teamcity\\testfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\teamcity\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/PlainTextRenderer.php' => + array ( + 0 => 'c68e644c9a5c18fde556bea39f735c8002197fcf', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\plaintextrenderer', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\render', + 1 => 'phpunit\\logging\\testdox\\reduce', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/TestResult.php' => + array ( + 0 => '886885ce7ea20be66d1ca4efc37519ef5cda88cb', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testresult', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\__construct', + 1 => 'phpunit\\logging\\testdox\\test', + 2 => 'phpunit\\logging\\testdox\\status', + 3 => 'phpunit\\logging\\testdox\\hasthrowable', + 4 => 'phpunit\\logging\\testdox\\throwable', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/TestResultCollector.php' => + array ( + 0 => '3e31dbef729cfed453f4f1dde0e9b523dec7f224', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testresultcollector', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\__construct', + 1 => 'phpunit\\logging\\testdox\\testmethodsgroupedbyclass', + 2 => 'phpunit\\logging\\testdox\\testprepared', + 3 => 'phpunit\\logging\\testdox\\testerrored', + 4 => 'phpunit\\logging\\testdox\\testfailed', + 5 => 'phpunit\\logging\\testdox\\testpassed', + 6 => 'phpunit\\logging\\testdox\\testskipped', + 7 => 'phpunit\\logging\\testdox\\testmarkedincomplete', + 8 => 'phpunit\\logging\\testdox\\testconsideredrisky', + 9 => 'phpunit\\logging\\testdox\\testtriggereddeprecation', + 10 => 'phpunit\\logging\\testdox\\testtriggerednotice', + 11 => 'phpunit\\logging\\testdox\\testtriggeredwarning', + 12 => 'phpunit\\logging\\testdox\\testtriggeredphpdeprecation', + 13 => 'phpunit\\logging\\testdox\\testtriggeredphpnotice', + 14 => 'phpunit\\logging\\testdox\\testtriggeredphpwarning', + 15 => 'phpunit\\logging\\testdox\\testtriggeredphpunitdeprecation', + 16 => 'phpunit\\logging\\testdox\\testtriggeredphpuniterror', + 17 => 'phpunit\\logging\\testdox\\testtriggeredphpunitwarning', + 18 => 'phpunit\\logging\\testdox\\testfinished', + 19 => 'phpunit\\logging\\testdox\\registersubscribers', + 20 => 'phpunit\\logging\\testdox\\updateteststatus', + 21 => 'phpunit\\logging\\testdox\\process', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/TestResultCollection.php' => + array ( + 0 => '8a366256058b8c179173f40277a4657a60ffbabd', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testresultcollection', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\fromarray', + 1 => 'phpunit\\logging\\testdox\\__construct', + 2 => 'phpunit\\logging\\testdox\\asarray', + 3 => 'phpunit\\logging\\testdox\\getiterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestErroredSubscriber.php' => + array ( + 0 => '300b7f5e5232f49475c9b02c6496f7aeb32f74c0', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testerroredsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestConsideredRiskySubscriber.php' => + array ( + 0 => 'b7e35be31fa798a94344adb2119f623dc17eeaef', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testconsideredriskysubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestTriggeredNoticeSubscriber.php' => + array ( + 0 => 'bb2b36b1d979cb5626e95974a3188b27dcc4ec37', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testtriggerednoticesubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestTriggeredPhpunitWarningSubscriber.php' => + array ( + 0 => 'c5d862cf50a14a0f72acecd6e3779d90fc636cae', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testtriggeredphpunitwarningsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestFailedSubscriber.php' => + array ( + 0 => '1291bc2f9c33b5b01ba06536293587e7402c93c2', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testfailedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestTriggeredPhpunitErrorSubscriber.php' => + array ( + 0 => 'fe8dcd7e06894cb703d62cbb077f23bcd86b016e', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testtriggeredphpuniterrorsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestPassedSubscriber.php' => + array ( + 0 => '9196ad7b09bca9642481cf04b22c15077687b4ba', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testpassedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestTriggeredWarningSubscriber.php' => + array ( + 0 => 'fbc9e71af65470c8a7d631111e2689492574099e', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testtriggeredwarningsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestTriggeredDeprecationSubscriber.php' => + array ( + 0 => '3344bc4669e7238efbdf64fcad8d23180982ceda', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testtriggereddeprecationsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestTriggeredPhpDeprecationSubscriber.php' => + array ( + 0 => 'b1762737517b0d10fec0161e2b43cdcc6950702e', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testtriggeredphpdeprecationsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestMarkedIncompleteSubscriber.php' => + array ( + 0 => 'b6f1ed6717426330a77d5ab648e50d1299f7a756', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testmarkedincompletesubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestPreparedSubscriber.php' => + array ( + 0 => '986a4828443d2196ed91ced731d34d72a54bda00', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testpreparedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestTriggeredPhpWarningSubscriber.php' => + array ( + 0 => '923c93a4fa62f1a63c6e97e1420893cf29b9725d', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testtriggeredphpwarningsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/Subscriber.php' => + array ( + 0 => '440215500e3db8b0516dad35c52592abfe92121e', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\subscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\__construct', + 1 => 'phpunit\\logging\\testdox\\collector', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestSkippedSubscriber.php' => + array ( + 0 => 'd2989b9ab69206308c1cb135dff0ede2a7cee203', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testskippedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestFinishedSubscriber.php' => + array ( + 0 => '0c5e1887f1e20c0cd48915d9718f8ab0023b75bd', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testfinishedsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestTriggeredPhpunitDeprecationSubscriber.php' => + array ( + 0 => 'c81f90119f2f048a935f4e67ee26d0a030c213da', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testtriggeredphpunitdeprecationsubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestTriggeredPhpNoticeSubscriber.php' => + array ( + 0 => 'c51a494d35662a15d76abd38bd81971faac9fe87', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testtriggeredphpnoticesubscriber', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\notify', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/TestResultCollectionIterator.php' => + array ( + 0 => '9b793f044708fed6a2902961f05c0350b1004fcc', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\testresultcollectioniterator', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\__construct', + 1 => 'phpunit\\logging\\testdox\\rewind', + 2 => 'phpunit\\logging\\testdox\\valid', + 3 => 'phpunit\\logging\\testdox\\key', + 4 => 'phpunit\\logging\\testdox\\current', + 5 => 'phpunit\\logging\\testdox\\next', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/NamePrettifier.php' => + array ( + 0 => '47ca6c5e596da83b84719f99fdb724918c334709', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\nameprettifier', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\prettifytestclassname', + 1 => 'phpunit\\logging\\testdox\\prettifytestmethodname', + 2 => 'phpunit\\logging\\testdox\\prettifytestcase', + 3 => 'phpunit\\logging\\testdox\\prettifydataset', + 4 => 'phpunit\\logging\\testdox\\maptestmethodparameternamestoprovideddatavalues', + 5 => 'phpunit\\logging\\testdox\\objecttostring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/HtmlRenderer.php' => + array ( + 0 => '9684183c5c89339093cc8621db8a2f225eba4e08', + 1 => + array ( + 0 => 'phpunit\\logging\\testdox\\htmlrenderer', + ), + 2 => + array ( + 0 => 'phpunit\\logging\\testdox\\render', + 1 => 'phpunit\\logging\\testdox\\reduce', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/84/a4/84a40994bab1ce5efea436d89f9ce568b53ecfe6.php b/build/phpstan/cache/PHPStan/84/a4/84a40994bab1ce5efea436d89f9ce568b53ecfe6.php new file mode 100644 index 0000000..a384939 --- /dev/null +++ b/build/phpstan/cache/PHPStan/84/a4/84a40994bab1ce5efea436d89f9ce568b53ecfe6.php @@ -0,0 +1,283 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Diff.php' => + array ( + 0 => '867d968b67880c397228d32a4b347efffce8aaaa', + 1 => + array ( + 0 => 'sebastianbergmann\\diff\\diff', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\diff\\__construct', + 1 => 'sebastianbergmann\\diff\\from', + 2 => 'sebastianbergmann\\diff\\to', + 3 => 'sebastianbergmann\\diff\\chunks', + 4 => 'sebastianbergmann\\diff\\setchunks', + 5 => 'sebastianbergmann\\diff\\getiterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Parser.php' => + array ( + 0 => '93087cfad4c8a2b687acc1b36bacfaa54c5cec21', + 1 => + array ( + 0 => 'sebastianbergmann\\diff\\parser', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\diff\\parse', + 1 => 'sebastianbergmann\\diff\\parsefilediff', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php' => + array ( + 0 => '463678f06839786edb3b1838cd5eee94f3280f28', + 1 => + array ( + 0 => 'sebastianbergmann\\diff\\timeefficientlongestcommonsubsequencecalculator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\diff\\calculate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php' => + array ( + 0 => '9c751fa05c0afc12c4272bf6ee5f4dfeeb6a24e9', + 1 => + array ( + 0 => 'sebastianbergmann\\diff\\output\\diffonlyoutputbuilder', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\diff\\output\\__construct', + 1 => 'sebastianbergmann\\diff\\output\\getdiff', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Output/DiffOutputBuilderInterface.php' => + array ( + 0 => '8aaef38bcbed8458e9ae4e919544c234ec45f916', + 1 => + array ( + 0 => 'sebastianbergmann\\diff\\output\\diffoutputbuilderinterface', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\diff\\output\\getdiff', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php' => + array ( + 0 => '2535e3d63eb2d2b40d854a82b803a4a96b131d17', + 1 => + array ( + 0 => 'sebastianbergmann\\diff\\output\\unifieddiffoutputbuilder', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\diff\\output\\__construct', + 1 => 'sebastianbergmann\\diff\\output\\getdiff', + 2 => 'sebastianbergmann\\diff\\output\\writediffhunks', + 3 => 'sebastianbergmann\\diff\\output\\writehunk', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Output/StrictUnifiedDiffOutputBuilder.php' => + array ( + 0 => 'f102ae8102c820874f6bcc20858850363a52a2e2', + 1 => + array ( + 0 => 'sebastianbergmann\\diff\\output\\strictunifieddiffoutputbuilder', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\diff\\output\\__construct', + 1 => 'sebastianbergmann\\diff\\output\\getdiff', + 2 => 'sebastianbergmann\\diff\\output\\writediffhunks', + 3 => 'sebastianbergmann\\diff\\output\\writehunk', + 4 => 'sebastianbergmann\\diff\\output\\assertstring', + 5 => 'sebastianbergmann\\diff\\output\\assertstringornull', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php' => + array ( + 0 => '9abcd9bfe1d5427a12c8dcd86bad72ef3c35446e', + 1 => + array ( + 0 => 'sebastianbergmann\\diff\\output\\abstractchunkoutputbuilder', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\diff\\output\\getcommonchunks', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/LongestCommonSubsequenceCalculator.php' => + array ( + 0 => '48dc5b3654bf8d4950bbdb6af729f6dcf13bda16', + 1 => + array ( + 0 => 'sebastianbergmann\\diff\\longestcommonsubsequencecalculator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\diff\\calculate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Chunk.php' => + array ( + 0 => '96b80df1ddfc182ce203db60604f488806c4c2c5', + 1 => + array ( + 0 => 'sebastianbergmann\\diff\\chunk', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\diff\\__construct', + 1 => 'sebastianbergmann\\diff\\start', + 2 => 'sebastianbergmann\\diff\\startrange', + 3 => 'sebastianbergmann\\diff\\end', + 4 => 'sebastianbergmann\\diff\\endrange', + 5 => 'sebastianbergmann\\diff\\lines', + 6 => 'sebastianbergmann\\diff\\setlines', + 7 => 'sebastianbergmann\\diff\\getiterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Differ.php' => + array ( + 0 => '54a64c5803afd2df69db5dfc539647cb8c9d0056', + 1 => + array ( + 0 => 'sebastianbergmann\\diff\\differ', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\diff\\__construct', + 1 => 'sebastianbergmann\\diff\\diff', + 2 => 'sebastianbergmann\\diff\\difftoarray', + 3 => 'sebastianbergmann\\diff\\splitstringbylines', + 4 => 'sebastianbergmann\\diff\\selectlcsimplementation', + 5 => 'sebastianbergmann\\diff\\calculateestimatedfootprint', + 6 => 'sebastianbergmann\\diff\\detectunmatchedlineendings', + 7 => 'sebastianbergmann\\diff\\getlinebreak', + 8 => 'sebastianbergmann\\diff\\getarraydiffparted', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Line.php' => + array ( + 0 => '4868ab2e8cc004c3d95900dc8cca3533f7d54c6b', + 1 => + array ( + 0 => 'sebastianbergmann\\diff\\line', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\diff\\__construct', + 1 => 'sebastianbergmann\\diff\\content', + 2 => 'sebastianbergmann\\diff\\type', + 3 => 'sebastianbergmann\\diff\\isadded', + 4 => 'sebastianbergmann\\diff\\isremoved', + 5 => 'sebastianbergmann\\diff\\isunchanged', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Exception/ConfigurationException.php' => + array ( + 0 => '571cbfb177038436a3e578ac8c70aadeecd6e1bd', + 1 => + array ( + 0 => 'sebastianbergmann\\diff\\configurationexception', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\diff\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Exception/InvalidArgumentException.php' => + array ( + 0 => 'b28e42d650f365b33fbdea839fcabdc7caec6327', + 1 => + array ( + 0 => 'sebastianbergmann\\diff\\invalidargumentexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Exception/Exception.php' => + array ( + 0 => '865e3da032089b0a5694654f5f4f50be667a495b', + 1 => + array ( + 0 => 'sebastianbergmann\\diff\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php' => + array ( + 0 => '1094567a27eb68b63a68e3fb9781698c0786f8ea', + 1 => + array ( + 0 => 'sebastianbergmann\\diff\\memoryefficientlongestcommonsubsequencecalculator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\diff\\calculate', + 1 => 'sebastianbergmann\\diff\\length', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/8a/14/8a14f3d3b3e606f04b1918b7e196a0be3465009d.php b/build/phpstan/cache/PHPStan/8a/14/8a14f3d3b3e606f04b1918b7e196a0be3465009d.php new file mode 100644 index 0000000..4d7c72f --- /dev/null +++ b/build/phpstan/cache/PHPStan/8a/14/8a14f3d3b3e606f04b1918b7e196a0be3465009d.php @@ -0,0 +1,100 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/cli-parser/src/Parser.php' => + array ( + 0 => '517dbea4d8a6272691f0225149eb79b272a53694', + 1 => + array ( + 0 => 'sebastianbergmann\\cliparser\\parser', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\cliparser\\parse', + 1 => 'sebastianbergmann\\cliparser\\parseshortoption', + 2 => 'sebastianbergmann\\cliparser\\parselongoption', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/cli-parser/src/exceptions/AmbiguousOptionException.php' => + array ( + 0 => '5cbf71bd59993fba2e04573fd2af3e896ba6cb44', + 1 => + array ( + 0 => 'sebastianbergmann\\cliparser\\ambiguousoptionexception', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\cliparser\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/cli-parser/src/exceptions/UnknownOptionException.php' => + array ( + 0 => 'f0605798d3c3ae00645df1385df6c8d62f211b0f', + 1 => + array ( + 0 => 'sebastianbergmann\\cliparser\\unknownoptionexception', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\cliparser\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/cli-parser/src/exceptions/OptionDoesNotAllowArgumentException.php' => + array ( + 0 => 'cda9342e391e62cf0d074e78b888e34325ac1d58', + 1 => + array ( + 0 => 'sebastianbergmann\\cliparser\\optiondoesnotallowargumentexception', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\cliparser\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/cli-parser/src/exceptions/Exception.php' => + array ( + 0 => '9f4eed104c2dff7495ead0ec11c708ab090e9cef', + 1 => + array ( + 0 => 'sebastianbergmann\\cliparser\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/cli-parser/src/exceptions/RequiredOptionArgumentMissingException.php' => + array ( + 0 => '5f59479dd69423f980e20119ac5a3462e87cf3e9', + 1 => + array ( + 0 => 'sebastianbergmann\\cliparser\\requiredoptionargumentmissingexception', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\cliparser\\__construct', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/91/0a/910a030abadecf5c5fa70574719fa1a9e445819b.php b/build/phpstan/cache/PHPStan/91/0a/910a030abadecf5c5fa70574719fa1a9e445819b.php new file mode 100644 index 0000000..f455940 --- /dev/null +++ b/build/phpstan/cache/PHPStan/91/0a/910a030abadecf5c5fa70574719fa1a9e445819b.php @@ -0,0 +1,81 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php' => + array ( + 0 => 'e0e4bac5c82637b71bfdf01c897435f71d41cd02', + 1 => + array ( + 0 => 'phptoken', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php' => + array ( + 0 => 'fed6a92720e1d9b3692ac59205e682bcb8648c27', + 1 => + array ( + 0 => 'valueerror', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php' => + array ( + 0 => '47c6abc4ac611a90c5b2467dcb2ea538e007ba86', + 1 => + array ( + 0 => 'attribute', + ), + 2 => + array ( + 0 => '__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php' => + array ( + 0 => '84ba3b5c3e0a192c71d9dabad016b25f87206100', + 1 => + array ( + 0 => 'unhandledmatcherror', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php' => + array ( + 0 => 'e357f36e99e71a1ac08785024dd6fda3c0b6e50a', + 1 => + array ( + 0 => 'stringable', + ), + 2 => + array ( + 0 => '__tostring', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/93/a6/93a65a90404c0b8255b5d5ea24facd09461b9c65.php b/build/phpstan/cache/PHPStan/93/a6/93a65a90404c0b8255b5d5ea24facd09461b9c65.php new file mode 100644 index 0000000..662d142 --- /dev/null +++ b/build/phpstan/cache/PHPStan/93/a6/93a65a90404c0b8255b5d5ea24facd09461b9c65.php @@ -0,0 +1,60 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/staabm/side-effects-detector/lib/SideEffect.php' => + array ( + 0 => 'e82c420734a6cebde3936a3958834743054f3317', + 1 => + array ( + 0 => 'staabm\\sideeffectsdetector\\sideeffect', + ), + 2 => + array ( + 0 => 'staabm\\sideeffectsdetector\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/staabm/side-effects-detector/lib/SideEffectsDetector.php' => + array ( + 0 => '5310c220f3d865767580042159f29a44f831fed2', + 1 => + array ( + 0 => 'staabm\\sideeffectsdetector\\sideeffectsdetector', + ), + 2 => + array ( + 0 => 'staabm\\sideeffectsdetector\\__construct', + 1 => 'staabm\\sideeffectsdetector\\getsideeffects', + 2 => 'staabm\\sideeffectsdetector\\getfunctioncallsideeffect', + 3 => 'staabm\\sideeffectsdetector\\getfunctioncall', + 4 => 'staabm\\sideeffectsdetector\\getmethodcall', + 5 => 'staabm\\sideeffectsdetector\\getpropertyaccess', + 6 => 'staabm\\sideeffectsdetector\\isanonymousfunction', + 7 => 'staabm\\sideeffectsdetector\\isnonlocalvariable', + 8 => 'staabm\\sideeffectsdetector\\consumewhitespaces', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/staabm/side-effects-detector/lib/functionMetadata.php' => + array ( + 0 => '1aa618dad516dc9f87bd8ef9a71e91b294af1b37', + 1 => + array ( + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/a5/ef/a5ef67a94513bfca8b8d3367ec2281a467d31aa0.php b/build/phpstan/cache/PHPStan/a5/ef/a5ef67a94513bfca8b8d3367ec2281a467d31aa0.php new file mode 100644 index 0000000..eb97290 --- /dev/null +++ b/build/phpstan/cache/PHPStan/a5/ef/a5ef67a94513bfca8b8d3367ec2281a467d31aa0.php @@ -0,0 +1,155 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/SendCodeAttempt.php' => + array ( + 0 => '817192ee4c53c98ee66b95fa7a93ce36ce60da61', + 1 => + array ( + 0 => 'codebarag\\twilioverify\\dto\\sendcodeattempt', + ), + 2 => + array ( + 0 => 'codebarag\\twilioverify\\dto\\fromjson', + 1 => 'codebarag\\twilioverify\\dto\\__construct', + 2 => 'codebarag\\twilioverify\\dto\\fake', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Lookup.php' => + array ( + 0 => '663d718349590d62d061ff06d74b2bc3386eb400', + 1 => + array ( + 0 => 'codebarag\\twilioverify\\dto\\lookup', + ), + 2 => + array ( + 0 => 'codebarag\\twilioverify\\dto\\fromjson', + 1 => 'codebarag\\twilioverify\\dto\\__construct', + 2 => 'codebarag\\twilioverify\\dto\\fake', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Carrier.php' => + array ( + 0 => '7da5ffd7840bc0b774fc4a59e4e73b5052c0be0a', + 1 => + array ( + 0 => 'codebarag\\twilioverify\\dto\\carrier', + ), + 2 => + array ( + 0 => 'codebarag\\twilioverify\\dto\\fromjson', + 1 => 'codebarag\\twilioverify\\dto\\__construct', + 2 => 'codebarag\\twilioverify\\dto\\fake', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationCheck.php' => + array ( + 0 => '7693b0519141ae6da87c38cdda24993a049620b9', + 1 => + array ( + 0 => 'codebarag\\twilioverify\\dto\\verificationcheck', + ), + 2 => + array ( + 0 => 'codebarag\\twilioverify\\dto\\fromjson', + 1 => 'codebarag\\twilioverify\\dto\\__construct', + 2 => 'codebarag\\twilioverify\\dto\\fake', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationStart.php' => + array ( + 0 => '9b19f716cf38d10f62ca384113123ed4e1c7761e', + 1 => + array ( + 0 => 'codebarag\\twilioverify\\dto\\verificationstart', + ), + 2 => + array ( + 0 => 'codebarag\\twilioverify\\dto\\fromjson', + 1 => 'codebarag\\twilioverify\\dto\\__construct', + 2 => 'codebarag\\twilioverify\\dto\\fake', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Facades/TwilioVerify.php' => + array ( + 0 => '2d1f9c680b5984fd5d334c97f4c6f2f44de5b30c', + 1 => + array ( + 0 => 'codebarag\\twilioverify\\facades\\twilioverify', + ), + 2 => + array ( + 0 => 'codebarag\\twilioverify\\facades\\getfacadeaccessor', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerifyServiceProvider.php' => + array ( + 0 => '799286f4dc4761543a7b839ca514b05b8dc7da2d', + 1 => + array ( + 0 => 'codebarag\\twilioverify\\twilioverifyserviceprovider', + ), + 2 => + array ( + 0 => 'codebarag\\twilioverify\\configurepackage', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php' => + array ( + 0 => '96189db70fabdfc22c267a88f53770945bad83f8', + 1 => + array ( + 0 => 'codebarag\\twilioverify\\twilioverify', + ), + 2 => + array ( + 0 => 'codebarag\\twilioverify\\start', + 1 => 'codebarag\\twilioverify\\check', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Events/TwilioVerifyResponseLog.php' => + array ( + 0 => '63889fe332ad4f651fb52fa89071509a626381d6', + 1 => + array ( + 0 => 'codebarag\\twilioverify\\events\\twilioverifyresponselog', + ), + 2 => + array ( + 0 => 'codebarag\\twilioverify\\events\\__construct', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/b2/e0/b2e02cf2732c9617965041b7a99ee064bc826cd0.php b/build/phpstan/cache/PHPStan/b2/e0/b2e02cf2732c9617965041b7a99ee064bc826cd0.php new file mode 100644 index 0000000..13012c3 --- /dev/null +++ b/build/phpstan/cache/PHPStan/b2/e0/b2e02cf2732c9617965041b7a99ee064bc826cd0.php @@ -0,0 +1,80 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-file-iterator/src/Factory.php' => + array ( + 0 => 'e69d15c6d5f465604fad3df75be7607ddcf9543b', + 1 => + array ( + 0 => 'sebastianbergmann\\fileiterator\\factory', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\fileiterator\\getfileiterator', + 1 => 'sebastianbergmann\\fileiterator\\resolvewildcards', + 2 => 'sebastianbergmann\\fileiterator\\globstar', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-file-iterator/src/ExcludeIterator.php' => + array ( + 0 => 'bbc6dea49a445f0aebb485d20ab9a8a6626a9b72', + 1 => + array ( + 0 => 'sebastianbergmann\\fileiterator\\excludeiterator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\fileiterator\\__construct', + 1 => 'sebastianbergmann\\fileiterator\\accept', + 2 => 'sebastianbergmann\\fileiterator\\haschildren', + 3 => 'sebastianbergmann\\fileiterator\\getchildren', + 4 => 'sebastianbergmann\\fileiterator\\getinneriterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-file-iterator/src/Iterator.php' => + array ( + 0 => '678ba73fbeb1648ef0ec82e55c8e273889a8bd91', + 1 => + array ( + 0 => 'sebastianbergmann\\fileiterator\\iterator', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\fileiterator\\__construct', + 1 => 'sebastianbergmann\\fileiterator\\accept', + 2 => 'sebastianbergmann\\fileiterator\\acceptpath', + 3 => 'sebastianbergmann\\fileiterator\\acceptprefix', + 4 => 'sebastianbergmann\\fileiterator\\acceptsuffix', + 5 => 'sebastianbergmann\\fileiterator\\acceptsubstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-file-iterator/src/Facade.php' => + array ( + 0 => 'f803b327d5045ca3f9fc605e30f734ca1e8a0c76', + 1 => + array ( + 0 => 'sebastianbergmann\\fileiterator\\facade', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\fileiterator\\getfilesasarray', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/c1/b4/c1b49cadb80a008d8cb2c27752c1a42874937f1d.php b/build/phpstan/cache/PHPStan/c1/b4/c1b49cadb80a008d8cb2c27752c1a42874937f1d.php new file mode 100644 index 0000000..0b2172b --- /dev/null +++ b/build/phpstan/cache/PHPStan/c1/b4/c1b49cadb80a008d8cb2c27752c1a42874937f1d.php @@ -0,0 +1,36 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/exporter/src/Exporter.php' => + array ( + 0 => 'dcc53ec1b74a7c6f1ec34c104365031cb1700326', + 1 => + array ( + 0 => 'sebastianbergmann\\exporter\\exporter', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\exporter\\__construct', + 1 => 'sebastianbergmann\\exporter\\export', + 2 => 'sebastianbergmann\\exporter\\shortenedrecursiveexport', + 3 => 'sebastianbergmann\\exporter\\shortenedexport', + 4 => 'sebastianbergmann\\exporter\\toarray', + 5 => 'sebastianbergmann\\exporter\\countproperties', + 6 => 'sebastianbergmann\\exporter\\shortenedcountedrecursiveexport', + 7 => 'sebastianbergmann\\exporter\\recursiveexport', + 8 => 'sebastianbergmann\\exporter\\exportfloat', + 9 => 'sebastianbergmann\\exporter\\exportstring', + 10 => 'sebastianbergmann\\exporter\\exportarray', + 11 => 'sebastianbergmann\\exporter\\exportobject', + 12 => 'sebastianbergmann\\exporter\\canbereflected', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/cache-cleared b/build/phpstan/cache/PHPStan/cache-cleared new file mode 100644 index 0000000..00d6e08 --- /dev/null +++ b/build/phpstan/cache/PHPStan/cache-cleared @@ -0,0 +1 @@ +v2-new \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/cd/78/cd78ea1a722f55fbdf8cc3074755796931e58d2c.php b/build/phpstan/cache/PHPStan/cd/78/cd78ea1a722f55fbdf8cc3074755796931e58d2c.php new file mode 100644 index 0000000..84187d0 --- /dev/null +++ b/build/phpstan/cache/PHPStan/cd/78/cd78ea1a722f55fbdf8cc3074755796931e58d2c.php @@ -0,0 +1,24 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/object-reflector/src/ObjectReflector.php' => + array ( + 0 => 'e6bf7acfc21191d4cb97019587e8155b56d5899e', + 1 => + array ( + 0 => 'sebastianbergmann\\objectreflector\\objectreflector', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\objectreflector\\getproperties', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/d3/49/d34941c9b51578194f0b34346537775aadaabad9.php b/build/phpstan/cache/PHPStan/d3/49/d34941c9b51578194f0b34346537775aadaabad9.php new file mode 100644 index 0000000..eb31a15 --- /dev/null +++ b/build/phpstan/cache/PHPStan/d3/49/d34941c9b51578194f0b34346537775aadaabad9.php @@ -0,0 +1,68 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-invoker/src/exceptions/ProcessControlExtensionNotLoadedException.php' => + array ( + 0 => 'beccc7e344258fc935b2fb16c70a3031dc8774f8', + 1 => + array ( + 0 => 'sebastianbergmann\\invoker\\processcontrolextensionnotloadedexception', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\invoker\\__construct', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-invoker/src/exceptions/Exception.php' => + array ( + 0 => 'e609d0d0f184625197ba28482c4c64be5522d7e7', + 1 => + array ( + 0 => 'sebastianbergmann\\invoker\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-invoker/src/exceptions/TimeoutException.php' => + array ( + 0 => 'a7dee3db7905c74e0e49f19523e8774516b7911a', + 1 => + array ( + 0 => 'sebastianbergmann\\invoker\\timeoutexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-invoker/src/Invoker.php' => + array ( + 0 => '775668352efb01412200aeeec37e20c07aee4fa6', + 1 => + array ( + 0 => 'sebastianbergmann\\invoker\\invoker', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\invoker\\invoke', + 1 => 'sebastianbergmann\\invoker\\caninvokewithtimeout', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/db/8c/db8c0db4ba2dd8fead2765782b3dc89efa80174d.php b/build/phpstan/cache/PHPStan/db/8c/db8c0db4ba2dd8fead2765782b3dc89efa80174d.php new file mode 100644 index 0000000..64537c3 --- /dev/null +++ b/build/phpstan/cache/PHPStan/db/8c/db8c0db4ba2dd8fead2765782b3dc89efa80174d.php @@ -0,0 +1,431 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/ReflectionMapper.php' => + array ( + 0 => '5f05b6d1b2c8df45a359adb5fe759804be2c3b29', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\reflectionmapper', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\fromparametertypes', + 1 => 'sebastianbergmann\\type\\fromreturntype', + 2 => 'sebastianbergmann\\type\\frompropertytype', + 3 => 'sebastianbergmann\\type\\mapnamedtype', + 4 => 'sebastianbergmann\\type\\mapuniontype', + 5 => 'sebastianbergmann\\type\\mapintersectiontype', + 6 => 'sebastianbergmann\\type\\hasreturntype', + 7 => 'sebastianbergmann\\type\\returntype', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/GenericObjectType.php' => + array ( + 0 => '90a21f1e803a2986b7eeee2f7ddf5b57b23fdbec', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\genericobjecttype', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\__construct', + 1 => 'sebastianbergmann\\type\\isassignable', + 2 => 'sebastianbergmann\\type\\name', + 3 => 'sebastianbergmann\\type\\allowsnull', + 4 => 'sebastianbergmann\\type\\isgenericobject', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/SimpleType.php' => + array ( + 0 => '03509b2ff7f7005b4c4afe6f6b3c89ccd8e12a2f', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\simpletype', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\__construct', + 1 => 'sebastianbergmann\\type\\isassignable', + 2 => 'sebastianbergmann\\type\\name', + 3 => 'sebastianbergmann\\type\\allowsnull', + 4 => 'sebastianbergmann\\type\\value', + 5 => 'sebastianbergmann\\type\\issimple', + 6 => 'sebastianbergmann\\type\\normalize', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/Type.php' => + array ( + 0 => '164ba4ce5de99b1ae2c6c0a1c5ad2f140409279a', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\type', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\fromvalue', + 1 => 'sebastianbergmann\\type\\fromname', + 2 => 'sebastianbergmann\\type\\asstring', + 3 => 'sebastianbergmann\\type\\iscallable', + 4 => 'sebastianbergmann\\type\\istrue', + 5 => 'sebastianbergmann\\type\\isfalse', + 6 => 'sebastianbergmann\\type\\isgenericobject', + 7 => 'sebastianbergmann\\type\\isintersection', + 8 => 'sebastianbergmann\\type\\isiterable', + 9 => 'sebastianbergmann\\type\\ismixed', + 10 => 'sebastianbergmann\\type\\isnever', + 11 => 'sebastianbergmann\\type\\isnull', + 12 => 'sebastianbergmann\\type\\isobject', + 13 => 'sebastianbergmann\\type\\issimple', + 14 => 'sebastianbergmann\\type\\isstatic', + 15 => 'sebastianbergmann\\type\\isunion', + 16 => 'sebastianbergmann\\type\\isunknown', + 17 => 'sebastianbergmann\\type\\isvoid', + 18 => 'sebastianbergmann\\type\\isassignable', + 19 => 'sebastianbergmann\\type\\name', + 20 => 'sebastianbergmann\\type\\allowsnull', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/NullType.php' => + array ( + 0 => '86694eff276f25f27f277549b5d9e91d00b7d0c0', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\nulltype', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\isassignable', + 1 => 'sebastianbergmann\\type\\name', + 2 => 'sebastianbergmann\\type\\asstring', + 3 => 'sebastianbergmann\\type\\allowsnull', + 4 => 'sebastianbergmann\\type\\isnull', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/ObjectType.php' => + array ( + 0 => 'addf53b5282463b386308b7e8cb8f3efab0e3721', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\objecttype', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\__construct', + 1 => 'sebastianbergmann\\type\\isassignable', + 2 => 'sebastianbergmann\\type\\name', + 3 => 'sebastianbergmann\\type\\allowsnull', + 4 => 'sebastianbergmann\\type\\classname', + 5 => 'sebastianbergmann\\type\\isobject', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/CallableType.php' => + array ( + 0 => '6bc5d9eb83a4b79327868a17fd739fdda69a791a', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\callabletype', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\__construct', + 1 => 'sebastianbergmann\\type\\isassignable', + 2 => 'sebastianbergmann\\type\\name', + 3 => 'sebastianbergmann\\type\\allowsnull', + 4 => 'sebastianbergmann\\type\\iscallable', + 5 => 'sebastianbergmann\\type\\isclosure', + 6 => 'sebastianbergmann\\type\\hasinvokemethod', + 7 => 'sebastianbergmann\\type\\isfunction', + 8 => 'sebastianbergmann\\type\\isobjectcallback', + 9 => 'sebastianbergmann\\type\\isclasscallback', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/UnionType.php' => + array ( + 0 => 'e00b10fc348196b3faa7f839c3e2c3d3ea328ef4', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\uniontype', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\__construct', + 1 => 'sebastianbergmann\\type\\isassignable', + 2 => 'sebastianbergmann\\type\\asstring', + 3 => 'sebastianbergmann\\type\\name', + 4 => 'sebastianbergmann\\type\\allowsnull', + 5 => 'sebastianbergmann\\type\\isunion', + 6 => 'sebastianbergmann\\type\\containsintersectiontypes', + 7 => 'sebastianbergmann\\type\\types', + 8 => 'sebastianbergmann\\type\\ensureminimumoftwotypes', + 9 => 'sebastianbergmann\\type\\ensureonlyvalidtypes', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/NeverType.php' => + array ( + 0 => 'd2bef1e0de9200890269e3f5fa716cb888eb46ce', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\nevertype', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\isassignable', + 1 => 'sebastianbergmann\\type\\name', + 2 => 'sebastianbergmann\\type\\allowsnull', + 3 => 'sebastianbergmann\\type\\isnever', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/StaticType.php' => + array ( + 0 => '6a25d1dcc8000c5e06af28c47cfc8fe70769b2ef', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\statictype', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\__construct', + 1 => 'sebastianbergmann\\type\\isassignable', + 2 => 'sebastianbergmann\\type\\name', + 3 => 'sebastianbergmann\\type\\allowsnull', + 4 => 'sebastianbergmann\\type\\isstatic', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/UnknownType.php' => + array ( + 0 => '5c35c049e5a939c13ab2eda15d976368664e514d', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\unknowntype', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\isassignable', + 1 => 'sebastianbergmann\\type\\name', + 2 => 'sebastianbergmann\\type\\asstring', + 3 => 'sebastianbergmann\\type\\allowsnull', + 4 => 'sebastianbergmann\\type\\isunknown', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/TrueType.php' => + array ( + 0 => 'fb53a4d00920f4333556e9238f978cee51e9c6d5', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\truetype', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\isassignable', + 1 => 'sebastianbergmann\\type\\name', + 2 => 'sebastianbergmann\\type\\allowsnull', + 3 => 'sebastianbergmann\\type\\istrue', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/VoidType.php' => + array ( + 0 => '36306fc76e3359a1948e2ca8541899f00352dc23', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\voidtype', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\isassignable', + 1 => 'sebastianbergmann\\type\\name', + 2 => 'sebastianbergmann\\type\\allowsnull', + 3 => 'sebastianbergmann\\type\\isvoid', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/IntersectionType.php' => + array ( + 0 => 'a8d302515d0ecb2e91526284cc2c1e187b8fd57b', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\intersectiontype', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\__construct', + 1 => 'sebastianbergmann\\type\\isassignable', + 2 => 'sebastianbergmann\\type\\asstring', + 3 => 'sebastianbergmann\\type\\name', + 4 => 'sebastianbergmann\\type\\allowsnull', + 5 => 'sebastianbergmann\\type\\isintersection', + 6 => 'sebastianbergmann\\type\\types', + 7 => 'sebastianbergmann\\type\\ensureminimumoftwotypes', + 8 => 'sebastianbergmann\\type\\ensureonlyvalidtypes', + 9 => 'sebastianbergmann\\type\\ensurenoduplicatetypes', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/MixedType.php' => + array ( + 0 => '876ce137de0543622c701676f2f4e5451136f2a0', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\mixedtype', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\isassignable', + 1 => 'sebastianbergmann\\type\\asstring', + 2 => 'sebastianbergmann\\type\\name', + 3 => 'sebastianbergmann\\type\\allowsnull', + 4 => 'sebastianbergmann\\type\\ismixed', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/IterableType.php' => + array ( + 0 => '3466f145571228db152bd492099b974a87968236', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\iterabletype', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\__construct', + 1 => 'sebastianbergmann\\type\\isassignable', + 2 => 'sebastianbergmann\\type\\name', + 3 => 'sebastianbergmann\\type\\allowsnull', + 4 => 'sebastianbergmann\\type\\isiterable', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/FalseType.php' => + array ( + 0 => '2ace94bb063bde06ae2c0219a77a98000860cdc5', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\falsetype', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\isassignable', + 1 => 'sebastianbergmann\\type\\name', + 2 => 'sebastianbergmann\\type\\allowsnull', + 3 => 'sebastianbergmann\\type\\isfalse', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/TypeName.php' => + array ( + 0 => '3542d9da97b5f6bc5238f7a0511251fb6c57afb5', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\typename', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\fromqualifiedname', + 1 => 'sebastianbergmann\\type\\fromreflection', + 2 => 'sebastianbergmann\\type\\__construct', + 3 => 'sebastianbergmann\\type\\namespacename', + 4 => 'sebastianbergmann\\type\\simplename', + 5 => 'sebastianbergmann\\type\\qualifiedname', + 6 => 'sebastianbergmann\\type\\isnamespaced', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/exception/RuntimeException.php' => + array ( + 0 => 'dc36595e29c96c23c5d6328d306db02cc76e63fb', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\runtimeexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/exception/Exception.php' => + array ( + 0 => 'ea8fc19a2156a69c8b69f4ca0aee6caec9ecc698', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/Parameter.php' => + array ( + 0 => '35330c0c3ed3e98ba399bc97496d37698bfabc2c', + 1 => + array ( + 0 => 'sebastianbergmann\\type\\parameter', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\type\\__construct', + 1 => 'sebastianbergmann\\type\\name', + 2 => 'sebastianbergmann\\type\\type', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/e3/77/e377435bc038aa32a919661780f5e0dc748fb2f3.php b/build/phpstan/cache/PHPStan/e3/77/e377435bc038aa32a919661780f5e0dc748fb2f3.php new file mode 100644 index 0000000..3496547 --- /dev/null +++ b/build/phpstan/cache/PHPStan/e3/77/e377435bc038aa32a919661780f5e0dc748fb2f3.php @@ -0,0 +1,24 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php84/Resources/stubs/Deprecated.php' => + array ( + 0 => 'ae070590b6e01ff65312d593de5fa704cca8b2ee', + 1 => + array ( + 0 => 'deprecated', + ), + 2 => + array ( + 0 => '__construct', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/f3/fa/f3faba961ca84af4300b2bdad07f065a411b1674.php b/build/phpstan/cache/PHPStan/f3/fa/f3faba961ca84af4300b2bdad07f065a411b1674.php new file mode 100644 index 0000000..34d092f --- /dev/null +++ b/build/phpstan/cache/PHPStan/f3/fa/f3faba961ca84af4300b2bdad07f065a411b1674.php @@ -0,0 +1,31 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/recursion-context/src/Context.php' => + array ( + 0 => '59cb254cf2efe5b02ba944e9d3c027041902c199', + 1 => + array ( + 0 => 'sebastianbergmann\\recursioncontext\\context', + ), + 2 => + array ( + 0 => 'sebastianbergmann\\recursioncontext\\__construct', + 1 => 'sebastianbergmann\\recursioncontext\\__destruct', + 2 => 'sebastianbergmann\\recursioncontext\\add', + 3 => 'sebastianbergmann\\recursioncontext\\contains', + 4 => 'sebastianbergmann\\recursioncontext\\addarray', + 5 => 'sebastianbergmann\\recursioncontext\\addobject', + 6 => 'sebastianbergmann\\recursioncontext\\containsarray', + 7 => 'sebastianbergmann\\recursioncontext\\containsobject', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/f4/d3/f4d3da1e3370f2b6dcebda97974db0b1f154bfaa.php b/build/phpstan/cache/PHPStan/f4/d3/f4d3da1e3370f2b6dcebda97974db0b1f154bfaa.php new file mode 100644 index 0000000..2b9c6f8 --- /dev/null +++ b/build/phpstan/cache/PHPStan/f4/d3/f4d3da1e3370f2b6dcebda97974db0b1f154bfaa.php @@ -0,0 +1,847 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/StaticClass.php' => + array ( + 0 => '2d40c3a3019f48cf7ba4d23f015e8391db85b322', + 1 => + array ( + 0 => 'nette\\staticclass', + ), + 2 => + array ( + 0 => 'nette\\__construct', + 1 => 'nette\\__callstatic', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Translator.php' => + array ( + 0 => '8290eb3f9a53dd09c63a7f2ed5d369639068185b', + 1 => + array ( + 0 => 'nette\\localization\\translator', + ), + 2 => + array ( + 0 => 'nette\\localization\\translate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/DateTime.php' => + array ( + 0 => '6dd5eb4474dd74aa2030ced8ad2aeed4ee961beb', + 1 => + array ( + 0 => 'nette\\utils\\datetime', + ), + 2 => + array ( + 0 => 'nette\\utils\\from', + 1 => 'nette\\utils\\fromparts', + 2 => 'nette\\utils\\createfromformat', + 3 => 'nette\\utils\\jsonserialize', + 4 => 'nette\\utils\\__tostring', + 5 => 'nette\\utils\\modifyclone', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Finder.php' => + array ( + 0 => '621b06ebaf68a9e0e67acee82d84e4afa821a3ef', + 1 => + array ( + 0 => 'nette\\utils\\finder', + ), + 2 => + array ( + 0 => 'nette\\utils\\find', + 1 => 'nette\\utils\\findfiles', + 2 => 'nette\\utils\\finddirectories', + 3 => 'nette\\utils\\files', + 4 => 'nette\\utils\\directories', + 5 => 'nette\\utils\\addmask', + 6 => 'nette\\utils\\in', + 7 => 'nette\\utils\\from', + 8 => 'nette\\utils\\addlocation', + 9 => 'nette\\utils\\childfirst', + 10 => 'nette\\utils\\ignoreunreadabledirs', + 11 => 'nette\\utils\\sortby', + 12 => 'nette\\utils\\sortbyname', + 13 => 'nette\\utils\\append', + 14 => 'nette\\utils\\exclude', + 15 => 'nette\\utils\\filter', + 16 => 'nette\\utils\\descentfilter', + 17 => 'nette\\utils\\limitdepth', + 18 => 'nette\\utils\\size', + 19 => 'nette\\utils\\date', + 20 => 'nette\\utils\\collect', + 21 => 'nette\\utils\\getiterator', + 22 => 'nette\\utils\\traversedir', + 23 => 'nette\\utils\\converttofiles', + 24 => 'nette\\utils\\provefilters', + 25 => 'nette\\utils\\buildplan', + 26 => 'nette\\utils\\splitrecursivepart', + 27 => 'nette\\utils\\buildpattern', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/ImageType.php' => + array ( + 0 => '5260583e471fb1325407187b0c2a73b9a54f4960', + 1 => + array ( + 0 => 'nette\\utils\\imagetype', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/ArrayList.php' => + array ( + 0 => '41fdbf1f4babe976591fe9dffe0f5fdf9d6cbc35', + 1 => + array ( + 0 => 'nette\\utils\\arraylist', + ), + 2 => + array ( + 0 => 'nette\\utils\\from', + 1 => 'nette\\utils\\getiterator', + 2 => 'nette\\utils\\count', + 3 => 'nette\\utils\\offsetset', + 4 => 'nette\\utils\\offsetget', + 5 => 'nette\\utils\\offsetexists', + 6 => 'nette\\utils\\offsetunset', + 7 => 'nette\\utils\\prepend', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Type.php' => + array ( + 0 => '3b13edc29c70dcd40105fc5fcf8e404040c7cf39', + 1 => + array ( + 0 => 'nette\\utils\\type', + ), + 2 => + array ( + 0 => 'nette\\utils\\fromreflection', + 1 => 'nette\\utils\\fromreflectiontype', + 2 => 'nette\\utils\\fromstring', + 3 => 'nette\\utils\\resolve', + 4 => 'nette\\utils\\__construct', + 5 => 'nette\\utils\\__tostring', + 6 => 'nette\\utils\\getnames', + 7 => 'nette\\utils\\gettypes', + 8 => 'nette\\utils\\getsinglename', + 9 => 'nette\\utils\\isunion', + 10 => 'nette\\utils\\isintersection', + 11 => 'nette\\utils\\issimple', + 12 => 'nette\\utils\\issingle', + 13 => 'nette\\utils\\isbuiltin', + 14 => 'nette\\utils\\isclass', + 15 => 'nette\\utils\\isclasskeyword', + 16 => 'nette\\utils\\allows', + 17 => 'nette\\utils\\allows2', + 18 => 'nette\\utils\\allows3', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Json.php' => + array ( + 0 => 'ebb5956053572eb8a10ce052f7770bcb61402bbe', + 1 => + array ( + 0 => 'nette\\utils\\json', + ), + 2 => + array ( + 0 => 'nette\\utils\\encode', + 1 => 'nette\\utils\\decode', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Paginator.php' => + array ( + 0 => 'a03076b5671cd149f45deea0e05f54d86f0b1a37', + 1 => + array ( + 0 => 'nette\\utils\\paginator', + ), + 2 => + array ( + 0 => 'nette\\utils\\setpage', + 1 => 'nette\\utils\\getpage', + 2 => 'nette\\utils\\getfirstpage', + 3 => 'nette\\utils\\getlastpage', + 4 => 'nette\\utils\\getfirstitemonpage', + 5 => 'nette\\utils\\getlastitemonpage', + 6 => 'nette\\utils\\setbase', + 7 => 'nette\\utils\\getbase', + 8 => 'nette\\utils\\getpageindex', + 9 => 'nette\\utils\\isfirst', + 10 => 'nette\\utils\\islast', + 11 => 'nette\\utils\\getpagecount', + 12 => 'nette\\utils\\setitemsperpage', + 13 => 'nette\\utils\\getitemsperpage', + 14 => 'nette\\utils\\setitemcount', + 15 => 'nette\\utils\\getitemcount', + 16 => 'nette\\utils\\getoffset', + 17 => 'nette\\utils\\getcountdownoffset', + 18 => 'nette\\utils\\getlength', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/ImageColor.php' => + array ( + 0 => '8889bbb3c776e13241dad50b557446bf45fee016', + 1 => + array ( + 0 => 'nette\\utils\\imagecolor', + ), + 2 => + array ( + 0 => 'nette\\utils\\rgb', + 1 => 'nette\\utils\\hex', + 2 => 'nette\\utils\\__construct', + 3 => 'nette\\utils\\torgba', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Arrays.php' => + array ( + 0 => 'ccc4714ae18178765c45498fcc61942415c6caec', + 1 => + array ( + 0 => 'nette\\utils\\arrays', + ), + 2 => + array ( + 0 => 'nette\\utils\\get', + 1 => 'nette\\utils\\getref', + 2 => 'nette\\utils\\mergetree', + 3 => 'nette\\utils\\getkeyoffset', + 4 => 'nette\\utils\\searchkey', + 5 => 'nette\\utils\\contains', + 6 => 'nette\\utils\\first', + 7 => 'nette\\utils\\last', + 8 => 'nette\\utils\\firstkey', + 9 => 'nette\\utils\\lastkey', + 10 => 'nette\\utils\\insertbefore', + 11 => 'nette\\utils\\insertafter', + 12 => 'nette\\utils\\renamekey', + 13 => 'nette\\utils\\grep', + 14 => 'nette\\utils\\flatten', + 15 => 'nette\\utils\\islist', + 16 => 'nette\\utils\\associate', + 17 => 'nette\\utils\\normalize', + 18 => 'nette\\utils\\pick', + 19 => 'nette\\utils\\some', + 20 => 'nette\\utils\\every', + 21 => 'nette\\utils\\filter', + 22 => 'nette\\utils\\map', + 23 => 'nette\\utils\\mapwithkeys', + 24 => 'nette\\utils\\invoke', + 25 => 'nette\\utils\\invokemethod', + 26 => 'nette\\utils\\toobject', + 27 => 'nette\\utils\\tokey', + 28 => 'nette\\utils\\wrap', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/FileSystem.php' => + array ( + 0 => '0e49655d2ce22192ea7ebaf636dcab0cbe2a2aa5', + 1 => + array ( + 0 => 'nette\\utils\\filesystem', + ), + 2 => + array ( + 0 => 'nette\\utils\\createdir', + 1 => 'nette\\utils\\copy', + 2 => 'nette\\utils\\open', + 3 => 'nette\\utils\\delete', + 4 => 'nette\\utils\\rename', + 5 => 'nette\\utils\\read', + 6 => 'nette\\utils\\readlines', + 7 => 'nette\\utils\\write', + 8 => 'nette\\utils\\makewritable', + 9 => 'nette\\utils\\isabsolute', + 10 => 'nette\\utils\\normalizepath', + 11 => 'nette\\utils\\joinpaths', + 12 => 'nette\\utils\\unixslashes', + 13 => 'nette\\utils\\platformslashes', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/ArrayHash.php' => + array ( + 0 => 'cee24efe8e549b816402dae0431c223a5ed88491', + 1 => + array ( + 0 => 'nette\\utils\\arrayhash', + ), + 2 => + array ( + 0 => 'nette\\utils\\from', + 1 => 'nette\\utils\\getiterator', + 2 => 'nette\\utils\\count', + 3 => 'nette\\utils\\offsetset', + 4 => 'nette\\utils\\offsetget', + 5 => 'nette\\utils\\offsetexists', + 6 => 'nette\\utils\\offsetunset', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/ObjectHelpers.php' => + array ( + 0 => '2aca9ccf014f50422f953eab312258aa71a69aff', + 1 => + array ( + 0 => 'nette\\utils\\objecthelpers', + ), + 2 => + array ( + 0 => 'nette\\utils\\strictget', + 1 => 'nette\\utils\\strictset', + 2 => 'nette\\utils\\strictcall', + 3 => 'nette\\utils\\strictstaticcall', + 4 => 'nette\\utils\\getmagicproperties', + 5 => 'nette\\utils\\getsuggestion', + 6 => 'nette\\utils\\parsefulldoc', + 7 => 'nette\\utils\\hasproperty', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Reflection.php' => + array ( + 0 => 'd8eb06ad1f96ef2761b7bb0385639c2a6b0b3e02', + 1 => + array ( + 0 => 'nette\\utils\\reflection', + ), + 2 => + array ( + 0 => 'nette\\utils\\isbuiltintype', + 1 => 'nette\\utils\\isclasskeyword', + 2 => 'nette\\utils\\getparameterdefaultvalue', + 3 => 'nette\\utils\\getpropertydeclaringclass', + 4 => 'nette\\utils\\getmethoddeclaringmethod', + 5 => 'nette\\utils\\arecommentsavailable', + 6 => 'nette\\utils\\tostring', + 7 => 'nette\\utils\\expandclassname', + 8 => 'nette\\utils\\getusestatements', + 9 => 'nette\\utils\\parseusestatements', + 10 => 'nette\\utils\\fetch', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Floats.php' => + array ( + 0 => '65039d7b30497a2a31b5c46c1d0885690fc50805', + 1 => + array ( + 0 => 'nette\\utils\\floats', + ), + 2 => + array ( + 0 => 'nette\\utils\\iszero', + 1 => 'nette\\utils\\isinteger', + 2 => 'nette\\utils\\compare', + 3 => 'nette\\utils\\areequal', + 4 => 'nette\\utils\\islessthan', + 5 => 'nette\\utils\\islessthanorequalto', + 6 => 'nette\\utils\\isgreaterthan', + 7 => 'nette\\utils\\isgreaterthanorequalto', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Strings.php' => + array ( + 0 => '1ff0966a5554bc83ecb93336e23b10ed14bb0f19', + 1 => + array ( + 0 => 'nette\\utils\\strings', + ), + 2 => + array ( + 0 => 'nette\\utils\\checkencoding', + 1 => 'nette\\utils\\fixencoding', + 2 => 'nette\\utils\\chr', + 3 => 'nette\\utils\\ord', + 4 => 'nette\\utils\\startswith', + 5 => 'nette\\utils\\endswith', + 6 => 'nette\\utils\\contains', + 7 => 'nette\\utils\\substring', + 8 => 'nette\\utils\\normalize', + 9 => 'nette\\utils\\normalizenewlines', + 10 => 'nette\\utils\\unixnewlines', + 11 => 'nette\\utils\\platformnewlines', + 12 => 'nette\\utils\\toascii', + 13 => 'nette\\utils\\webalize', + 14 => 'nette\\utils\\truncate', + 15 => 'nette\\utils\\indent', + 16 => 'nette\\utils\\lower', + 17 => 'nette\\utils\\firstlower', + 18 => 'nette\\utils\\upper', + 19 => 'nette\\utils\\firstupper', + 20 => 'nette\\utils\\capitalize', + 21 => 'nette\\utils\\compare', + 22 => 'nette\\utils\\findprefix', + 23 => 'nette\\utils\\length', + 24 => 'nette\\utils\\trim', + 25 => 'nette\\utils\\padleft', + 26 => 'nette\\utils\\padright', + 27 => 'nette\\utils\\reverse', + 28 => 'nette\\utils\\before', + 29 => 'nette\\utils\\after', + 30 => 'nette\\utils\\indexof', + 31 => 'nette\\utils\\pos', + 32 => 'nette\\utils\\split', + 33 => 'nette\\utils\\match', + 34 => 'nette\\utils\\matchall', + 35 => 'nette\\utils\\replace', + 36 => 'nette\\utils\\bytestochars', + 37 => 'nette\\utils\\pcre', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Random.php' => + array ( + 0 => '2aab86d308ae8ffb12a0ffd62540e2e227bc0e87', + 1 => + array ( + 0 => 'nette\\utils\\random', + ), + 2 => + array ( + 0 => 'nette\\utils\\generate', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Html.php' => + array ( + 0 => '15210683779dc48d764f0ff8ea23417fe590cfac', + 1 => + array ( + 0 => 'nette\\utils\\html', + ), + 2 => + array ( + 0 => 'nette\\utils\\el', + 1 => 'nette\\utils\\fromhtml', + 2 => 'nette\\utils\\fromtext', + 3 => 'nette\\utils\\tohtml', + 4 => 'nette\\utils\\totext', + 5 => 'nette\\utils\\htmltotext', + 6 => 'nette\\utils\\setname', + 7 => 'nette\\utils\\getname', + 8 => 'nette\\utils\\isempty', + 9 => 'nette\\utils\\addattributes', + 10 => 'nette\\utils\\appendattribute', + 11 => 'nette\\utils\\setattribute', + 12 => 'nette\\utils\\getattribute', + 13 => 'nette\\utils\\removeattribute', + 14 => 'nette\\utils\\removeattributes', + 15 => 'nette\\utils\\__set', + 16 => 'nette\\utils\\__get', + 17 => 'nette\\utils\\__isset', + 18 => 'nette\\utils\\__unset', + 19 => 'nette\\utils\\__call', + 20 => 'nette\\utils\\href', + 21 => 'nette\\utils\\data', + 22 => 'nette\\utils\\sethtml', + 23 => 'nette\\utils\\gethtml', + 24 => 'nette\\utils\\settext', + 25 => 'nette\\utils\\gettext', + 26 => 'nette\\utils\\addhtml', + 27 => 'nette\\utils\\addtext', + 28 => 'nette\\utils\\create', + 29 => 'nette\\utils\\insert', + 30 => 'nette\\utils\\offsetset', + 31 => 'nette\\utils\\offsetget', + 32 => 'nette\\utils\\offsetexists', + 33 => 'nette\\utils\\offsetunset', + 34 => 'nette\\utils\\count', + 35 => 'nette\\utils\\removechildren', + 36 => 'nette\\utils\\getiterator', + 37 => 'nette\\utils\\getchildren', + 38 => 'nette\\utils\\render', + 39 => 'nette\\utils\\__tostring', + 40 => 'nette\\utils\\starttag', + 41 => 'nette\\utils\\endtag', + 42 => 'nette\\utils\\attributes', + 43 => 'nette\\utils\\__clone', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Validators.php' => + array ( + 0 => '13d64e6f7d6bbad881932790d34eb71afaa9e659', + 1 => + array ( + 0 => 'nette\\utils\\validators', + ), + 2 => + array ( + 0 => 'nette\\utils\\assert', + 1 => 'nette\\utils\\assertfield', + 2 => 'nette\\utils\\is', + 3 => 'nette\\utils\\everyis', + 4 => 'nette\\utils\\isnumber', + 5 => 'nette\\utils\\isnumericint', + 6 => 'nette\\utils\\isnumeric', + 7 => 'nette\\utils\\iscallable', + 8 => 'nette\\utils\\isunicode', + 9 => 'nette\\utils\\isnone', + 10 => 'nette\\utils\\ismixed', + 11 => 'nette\\utils\\islist', + 12 => 'nette\\utils\\isinrange', + 13 => 'nette\\utils\\isemail', + 14 => 'nette\\utils\\isurl', + 15 => 'nette\\utils\\isuri', + 16 => 'nette\\utils\\istype', + 17 => 'nette\\utils\\isphpidentifier', + 18 => 'nette\\utils\\isbuiltintype', + 19 => 'nette\\utils\\isclasskeyword', + 20 => 'nette\\utils\\istypedeclaration', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/FileInfo.php' => + array ( + 0 => '0d09acdaca8285898e8b2e98accfdadded3ccf02', + 1 => + array ( + 0 => 'nette\\utils\\fileinfo', + ), + 2 => + array ( + 0 => 'nette\\utils\\__construct', + 1 => 'nette\\utils\\getrelativepath', + 2 => 'nette\\utils\\getrelativepathname', + 3 => 'nette\\utils\\read', + 4 => 'nette\\utils\\write', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Iterables.php' => + array ( + 0 => '7cd85b8037452a5e9d03f768fb81eb297d8357f9', + 1 => + array ( + 0 => 'nette\\utils\\iterables', + ), + 2 => + array ( + 0 => 'nette\\utils\\contains', + 1 => 'nette\\utils\\containskey', + 2 => 'nette\\utils\\first', + 3 => 'nette\\utils\\firstkey', + 4 => 'nette\\utils\\some', + 5 => 'nette\\utils\\every', + 6 => 'nette\\utils\\filter', + 7 => 'nette\\utils\\map', + 8 => 'nette\\utils\\mapwithkeys', + 9 => 'nette\\utils\\memoize', + 10 => 'nette\\utils\\__construct', + 11 => 'nette\\utils\\getiterator', + 12 => 'nette\\utils\\toiterator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Helpers.php' => + array ( + 0 => 'e62fc779c20a38dbfa07b7dadaaba56e090deae7', + 1 => + array ( + 0 => 'nette\\utils\\helpers', + ), + 2 => + array ( + 0 => 'nette\\utils\\capture', + 1 => 'nette\\utils\\getlasterror', + 2 => 'nette\\utils\\falsetonull', + 3 => 'nette\\utils\\clamp', + 4 => 'nette\\utils\\getsuggestion', + 5 => 'nette\\utils\\compare', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/exceptions.php' => + array ( + 0 => '2dffb56a116c9d3483151093c11ee75a22a4c240', + 1 => + array ( + 0 => 'nette\\utils\\imageexception', + 1 => 'nette\\utils\\unknownimagefileexception', + 2 => 'nette\\utils\\jsonexception', + 3 => 'nette\\utils\\regexpexception', + 4 => 'nette\\utils\\assertionexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/ReflectionMethod.php' => + array ( + 0 => 'f659a2fe5053a9c2d0d1d284266b6b9c548550e3', + 1 => + array ( + 0 => 'nette\\utils\\reflectionmethod', + ), + 2 => + array ( + 0 => 'nette\\utils\\__construct', + 1 => 'nette\\utils\\getoriginalclass', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Callback.php' => + array ( + 0 => 'd5171969cc8a2d6455e97d7387e95cc35d46a554', + 1 => + array ( + 0 => 'nette\\utils\\callback', + ), + 2 => + array ( + 0 => 'nette\\utils\\invokesafe', + 1 => 'nette\\utils\\check', + 2 => 'nette\\utils\\tostring', + 3 => 'nette\\utils\\toreflection', + 4 => 'nette\\utils\\isstatic', + 5 => 'nette\\utils\\unwrap', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Image.php' => + array ( + 0 => 'c992f525345007d233948733b854562ee1db676a', + 1 => + array ( + 0 => 'nette\\utils\\image', + ), + 2 => + array ( + 0 => 'nette\\utils\\rgb', + 1 => 'nette\\utils\\fromfile', + 2 => 'nette\\utils\\fromstring', + 3 => 'nette\\utils\\invokesafe', + 4 => 'nette\\utils\\fromblank', + 5 => 'nette\\utils\\detecttypefromfile', + 6 => 'nette\\utils\\detecttypefromstring', + 7 => 'nette\\utils\\typetoextension', + 8 => 'nette\\utils\\extensiontotype', + 9 => 'nette\\utils\\typetomimetype', + 10 => 'nette\\utils\\istypesupported', + 11 => 'nette\\utils\\getsupportedtypes', + 12 => 'nette\\utils\\__construct', + 13 => 'nette\\utils\\getwidth', + 14 => 'nette\\utils\\getheight', + 15 => 'nette\\utils\\setimageresource', + 16 => 'nette\\utils\\getimageresource', + 17 => 'nette\\utils\\resize', + 18 => 'nette\\utils\\calculatesize', + 19 => 'nette\\utils\\crop', + 20 => 'nette\\utils\\calculatecutout', + 21 => 'nette\\utils\\sharpen', + 22 => 'nette\\utils\\place', + 23 => 'nette\\utils\\calculatetextbox', + 24 => 'nette\\utils\\rectanglewh', + 25 => 'nette\\utils\\filledrectanglewh', + 26 => 'nette\\utils\\save', + 27 => 'nette\\utils\\tostring', + 28 => 'nette\\utils\\__tostring', + 29 => 'nette\\utils\\send', + 30 => 'nette\\utils\\output', + 31 => 'nette\\utils\\__call', + 32 => 'nette\\utils\\__clone', + 33 => 'nette\\utils\\ispercent', + 34 => 'nette\\utils\\__sleep', + 35 => 'nette\\utils\\resolvecolor', + 36 => 'nette\\utils\\ensureextension', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/SmartObject.php' => + array ( + 0 => '0f5e5f1ec5f84bccd662014e33e0986208747efc', + 1 => + array ( + 0 => 'nette\\smartobject', + ), + 2 => + array ( + 0 => 'nette\\__call', + 1 => 'nette\\__callstatic', + 2 => 'nette\\__get', + 3 => 'nette\\__set', + 4 => 'nette\\__unset', + 5 => 'nette\\__isset', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/exceptions.php' => + array ( + 0 => '1383200c2647e4b84933a79ccfa3007cb05f2728', + 1 => + array ( + 0 => 'nette\\argumentoutofrangeexception', + 1 => 'nette\\invalidstateexception', + 2 => 'nette\\notimplementedexception', + 3 => 'nette\\notsupportedexception', + 4 => 'nette\\deprecatedexception', + 5 => 'nette\\memberaccessexception', + 6 => 'nette\\ioexception', + 7 => 'nette\\filenotfoundexception', + 8 => 'nette\\directorynotfoundexception', + 9 => 'nette\\invalidargumentexception', + 10 => 'nette\\outofrangeexception', + 11 => 'nette\\unexpectedvalueexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/compatibility.php' => + array ( + 0 => 'f86a72734dee6132421b4334d6f03dd78fed0112', + 1 => + array ( + 0 => 'nette\\utils\\ihtmlstring', + 1 => 'nette\\localization\\itranslator', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Iterators/Mapper.php' => + array ( + 0 => 'c0ec5f53c56b99e228cea2e591bfb432a580892c', + 1 => + array ( + 0 => 'nette\\iterators\\mapper', + ), + 2 => + array ( + 0 => 'nette\\iterators\\__construct', + 1 => 'nette\\iterators\\current', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Iterators/CachingIterator.php' => + array ( + 0 => '643191ba2742f47c676cad088d40f0de2fe2b9d8', + 1 => + array ( + 0 => 'nette\\iterators\\cachingiterator', + ), + 2 => + array ( + 0 => 'nette\\iterators\\__construct', + 1 => 'nette\\iterators\\isfirst', + 2 => 'nette\\iterators\\islast', + 3 => 'nette\\iterators\\isempty', + 4 => 'nette\\iterators\\isodd', + 5 => 'nette\\iterators\\iseven', + 6 => 'nette\\iterators\\getcounter', + 7 => 'nette\\iterators\\count', + 8 => 'nette\\iterators\\next', + 9 => 'nette\\iterators\\rewind', + 10 => 'nette\\iterators\\getnextkey', + 11 => 'nette\\iterators\\getnextvalue', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/HtmlStringable.php' => + array ( + 0 => 'ce387d2957d3941be1b6d89cdae95839c5777012', + 1 => + array ( + 0 => 'nette\\htmlstringable', + ), + 2 => + array ( + 0 => 'nette\\__tostring', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/f8/7d/f87de80fa24c2edaa97ba02101dab3b0095e07d3.php b/build/phpstan/cache/PHPStan/f8/7d/f87de80fa24c2edaa97ba02101dab3b0095e07d3.php new file mode 100644 index 0000000..58c0bdd --- /dev/null +++ b/build/phpstan/cache/PHPStan/f8/7d/f87de80fa24c2edaa97ba02101dab3b0095e07d3.php @@ -0,0 +1,362 @@ + 'v1', + 'data' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/VersionConstraintParser.php' => + array ( + 0 => '9a03d1fcfe10968b84fafa941ca1710997e79341', + 1 => + array ( + 0 => 'phario\\version\\versionconstraintparser', + ), + 2 => + array ( + 0 => 'phario\\version\\parse', + 1 => 'phario\\version\\handleorgroup', + 2 => 'phario\\version\\handletildeoperator', + 3 => 'phario\\version\\handlecaretoperator', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/constraints/AnyVersionConstraint.php' => + array ( + 0 => '7b6997dda7e61a5a3e47f96b2ac20026a4ad1d51', + 1 => + array ( + 0 => 'phario\\version\\anyversionconstraint', + ), + 2 => + array ( + 0 => 'phario\\version\\complies', + 1 => 'phario\\version\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/constraints/AbstractVersionConstraint.php' => + array ( + 0 => 'fb4e0fb4a4e89c491e9bd47da3f4bcf5e65c84c0', + 1 => + array ( + 0 => 'phario\\version\\abstractversionconstraint', + ), + 2 => + array ( + 0 => 'phario\\version\\__construct', + 1 => 'phario\\version\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/constraints/VersionConstraint.php' => + array ( + 0 => '495be7eb8e0d23c2829f3418b2551feb54b268e9', + 1 => + array ( + 0 => 'phario\\version\\versionconstraint', + ), + 2 => + array ( + 0 => 'phario\\version\\complies', + 1 => 'phario\\version\\asstring', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/constraints/GreaterThanOrEqualToVersionConstraint.php' => + array ( + 0 => '31d8c4914a7c2f16bf36f538563ee412f856cdb3', + 1 => + array ( + 0 => 'phario\\version\\greaterthanorequaltoversionconstraint', + ), + 2 => + array ( + 0 => 'phario\\version\\__construct', + 1 => 'phario\\version\\complies', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/constraints/OrVersionConstraintGroup.php' => + array ( + 0 => '004772604023115b3ef7c28ec4fb7d3301dc4dca', + 1 => + array ( + 0 => 'phario\\version\\orversionconstraintgroup', + ), + 2 => + array ( + 0 => 'phario\\version\\__construct', + 1 => 'phario\\version\\complies', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/constraints/AndVersionConstraintGroup.php' => + array ( + 0 => 'cfd803b2ea9d969e10383a2748a56dced4b73cce', + 1 => + array ( + 0 => 'phario\\version\\andversionconstraintgroup', + ), + 2 => + array ( + 0 => 'phario\\version\\__construct', + 1 => 'phario\\version\\complies', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/constraints/ExactVersionConstraint.php' => + array ( + 0 => '098c09d62983d3e6fd71485e87116115d4a80924', + 1 => + array ( + 0 => 'phario\\version\\exactversionconstraint', + ), + 2 => + array ( + 0 => 'phario\\version\\complies', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/constraints/SpecificMajorVersionConstraint.php' => + array ( + 0 => 'efb81e3e5493d3908a9c3d51ad16e0329f5fbc68', + 1 => + array ( + 0 => 'phario\\version\\specificmajorversionconstraint', + ), + 2 => + array ( + 0 => 'phario\\version\\__construct', + 1 => 'phario\\version\\complies', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/constraints/SpecificMajorAndMinorVersionConstraint.php' => + array ( + 0 => '8c0b72e8a6fcb8f48e20e49abf6d8103d987b1a5', + 1 => + array ( + 0 => 'phario\\version\\specificmajorandminorversionconstraint', + ), + 2 => + array ( + 0 => 'phario\\version\\__construct', + 1 => 'phario\\version\\complies', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/VersionConstraintValue.php' => + array ( + 0 => '9cf0c4f77d86b54c45d730a708ce9dbcb1a53ae8', + 1 => + array ( + 0 => 'phario\\version\\versionconstraintvalue', + ), + 2 => + array ( + 0 => 'phario\\version\\__construct', + 1 => 'phario\\version\\getlabel', + 2 => 'phario\\version\\getbuildmetadata', + 3 => 'phario\\version\\getversionstring', + 4 => 'phario\\version\\getmajor', + 5 => 'phario\\version\\getminor', + 6 => 'phario\\version\\getpatch', + 7 => 'phario\\version\\parseversion', + 8 => 'phario\\version\\extractbuildmetadata', + 9 => 'phario\\version\\extractlabel', + 10 => 'phario\\version\\strippotentialvprefix', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/BuildMetaData.php' => + array ( + 0 => '95ad9aaa6c32718b2f6eef38225240b35b1f0dd2', + 1 => + array ( + 0 => 'phario\\version\\buildmetadata', + ), + 2 => + array ( + 0 => 'phario\\version\\__construct', + 1 => 'phario\\version\\asstring', + 2 => 'phario\\version\\equals', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/exceptions/InvalidVersionException.php' => + array ( + 0 => 'b5af6590c57b8aab0245a2c491f96c4614225664', + 1 => + array ( + 0 => 'phario\\version\\invalidversionexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/exceptions/InvalidPreReleaseSuffixException.php' => + array ( + 0 => 'd295ffaf424bd318b52ca58a22e134a757adc551', + 1 => + array ( + 0 => 'phario\\version\\invalidprereleasesuffixexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/exceptions/UnsupportedVersionConstraintException.php' => + array ( + 0 => '8ba115bff96f1628f72295ac082b41ae9d2da288', + 1 => + array ( + 0 => 'phario\\version\\unsupportedversionconstraintexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/exceptions/NoPreReleaseSuffixException.php' => + array ( + 0 => '30b1fabe90aa1cc2841f4d05e8b40a46679ba879', + 1 => + array ( + 0 => 'phario\\version\\noprereleasesuffixexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/exceptions/NoBuildMetaDataException.php' => + array ( + 0 => '2fbcf83ac53911226fefa01823ebc6b6cd7e2e41', + 1 => + array ( + 0 => 'phario\\version\\nobuildmetadataexception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/exceptions/Exception.php' => + array ( + 0 => '80bf09b2245e8a57b9fa84102198062b05d28491', + 1 => + array ( + 0 => 'phario\\version\\exception', + ), + 2 => + array ( + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/PreReleaseSuffix.php' => + array ( + 0 => 'bb71a0619caa8bbac829636ca159c5b36b9fb53c', + 1 => + array ( + 0 => 'phario\\version\\prereleasesuffix', + ), + 2 => + array ( + 0 => 'phario\\version\\__construct', + 1 => 'phario\\version\\asstring', + 2 => 'phario\\version\\getvalue', + 3 => 'phario\\version\\getnumber', + 4 => 'phario\\version\\isgreaterthan', + 5 => 'phario\\version\\mapvaluetoscore', + 6 => 'phario\\version\\parsevalue', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/Version.php' => + array ( + 0 => 'b9cafee10b996648c21658a7f93de53410158b42', + 1 => + array ( + 0 => 'phario\\version\\version', + ), + 2 => + array ( + 0 => 'phario\\version\\__construct', + 1 => 'phario\\version\\getprereleasesuffix', + 2 => 'phario\\version\\getoriginalstring', + 3 => 'phario\\version\\getversionstring', + 4 => 'phario\\version\\hasprereleasesuffix', + 5 => 'phario\\version\\equals', + 6 => 'phario\\version\\isgreaterthan', + 7 => 'phario\\version\\getmajor', + 8 => 'phario\\version\\getminor', + 9 => 'phario\\version\\getpatch', + 10 => 'phario\\version\\hasbuildmetadata', + 11 => 'phario\\version\\getbuildmetadata', + 12 => 'phario\\version\\parseversion', + 13 => 'phario\\version\\ensureversionstringisvalid', + ), + 3 => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/VersionNumber.php' => + array ( + 0 => 'ec8c13c18e185e2163ec31423a3c0c6d05f89bca', + 1 => + array ( + 0 => 'phario\\version\\versionnumber', + ), + 2 => + array ( + 0 => 'phario\\version\\__construct', + 1 => 'phario\\version\\isany', + 2 => 'phario\\version\\getvalue', + ), + 3 => + array ( + ), + ), + ), +)); \ No newline at end of file diff --git a/build/phpstan/cache/nette.configurator/Container_c5db45e753.php b/build/phpstan/cache/nette.configurator/Container_c5db45e753.php new file mode 100644 index 0000000..8dc7f00 --- /dev/null +++ b/build/phpstan/cache/nette.configurator/Container_c5db45e753.php @@ -0,0 +1,8669 @@ + [ + '04' => true, + '05' => true, + '06' => true, + '07' => true, + '08' => true, + '09' => true, + '010' => true, + '011' => true, + '012' => true, + '013' => true, + '014' => true, + '015' => true, + '016' => true, + '017' => true, + '018' => true, + '019' => true, + '020' => true, + '021' => true, + '022' => true, + '088' => true, + '089' => true, + ], + 'phpstan.stubFilesExtension' => ['044' => true, '046' => true, '047' => true, '048' => true, '0514' => true], + 'phpstan.diagnoseExtension' => ['091' => true], + 'phpstan.broker.dynamicMethodReturnTypeExtension' => [ + '0106' => true, + '0107' => true, + '0108' => true, + '0119' => true, + '0120' => true, + '0226' => true, + '0237' => true, + '0243' => true, + '0244' => true, + '0249' => true, + '0284' => true, + '0311' => true, + '0338' => true, + '0339' => true, + '0346' => true, + '0347' => true, + '0348' => true, + '0349' => true, + '0350' => true, + '0351' => true, + '0450' => true, + '0451' => true, + '0452' => true, + '0453' => true, + '0454' => true, + '0456' => true, + '0462' => true, + '0464' => true, + '0465' => true, + '0466' => true, + '0467' => true, + '0468' => true, + '0469' => true, + '0470' => true, + '0472' => true, + '0473' => true, + '0481' => true, + '0482' => true, + '0483' => true, + '0484' => true, + '0502' => true, + '0523' => true, + '0524' => true, + '0525' => true, + '0526' => true, + '0527' => true, + '0528' => true, + '0529' => true, + '0546' => true, + '0547' => true, + '0548' => true, + ], + 'phpstan.broker.methodsClassReflectionExtension' => [ + '0116' => true, + '0436' => true, + '0437' => true, + '0438' => true, + '0439' => true, + '0440' => true, + '0441' => true, + '0442' => true, + '0443' => true, + '0444' => true, + '0445' => true, + '0446' => true, + '0536' => true, + ], + 'phpstan.broker.allowedSubTypesClassReflectionExtension' => ['0117' => true], + 'phpstan.broker.propertiesClassReflectionExtension' => [ + '0118' => true, + '0282' => true, + '0447' => true, + '0448' => true, + '0449' => true, + '0455' => true, + ], + 'phpstan.broker.dynamicFunctionReturnTypeExtension' => [ + '0186' => true, + '0187' => true, + '0188' => true, + '0189' => true, + '0190' => true, + '0191' => true, + '0192' => true, + '0193' => true, + '0194' => true, + '0195' => true, + '0197' => true, + '0198' => true, + '0199' => true, + '0200' => true, + '0201' => true, + '0203' => true, + '0204' => true, + '0205' => true, + '0206' => true, + '0207' => true, + '0208' => true, + '0209' => true, + '0210' => true, + '0211' => true, + '0212' => true, + '0213' => true, + '0214' => true, + '0215' => true, + '0216' => true, + '0217' => true, + '0219' => true, + '0220' => true, + '0223' => true, + '0224' => true, + '0228' => true, + '0229' => true, + '0231' => true, + '0232' => true, + '0234' => true, + '0236' => true, + '0238' => true, + '0241' => true, + '0242' => true, + '0251' => true, + '0252' => true, + '0254' => true, + '0255' => true, + '0256' => true, + '0257' => true, + '0258' => true, + '0259' => true, + '0260' => true, + '0261' => true, + '0262' => true, + '0263' => true, + '0264' => true, + '0265' => true, + '0267' => true, + '0284' => true, + '0287' => true, + '0288' => true, + '0289' => true, + '0290' => true, + '0291' => true, + '0293' => true, + '0294' => true, + '0295' => true, + '0296' => true, + '0297' => true, + '0298' => true, + '0299' => true, + '0300' => true, + '0301' => true, + '0302' => true, + '0303' => true, + '0305' => true, + '0306' => true, + '0307' => true, + '0308' => true, + '0309' => true, + '0310' => true, + '0312' => true, + '0313' => true, + '0314' => true, + '0315' => true, + '0316' => true, + '0317' => true, + '0318' => true, + '0319' => true, + '0320' => true, + '0323' => true, + '0332' => true, + '0336' => true, + '0337' => true, + '0340' => true, + '0341' => true, + '0342' => true, + '0343' => true, + '0344' => true, + '0345' => true, + '0475' => true, + '0476' => true, + '0477' => true, + '0478' => true, + '0479' => true, + '0480' => true, + '0489' => true, + '0490' => true, + '0491' => true, + '0492' => true, + '0530' => true, + '0531' => true, + ], + 'phpstan.typeSpecifier.functionTypeSpecifyingExtension' => [ + '0202' => true, + '0218' => true, + '0233' => true, + '0271' => true, + '0281' => true, + '0285' => true, + '0286' => true, + '0304' => true, + '0321' => true, + '0322' => true, + '0324' => true, + '0325' => true, + '0326' => true, + '0327' => true, + '0328' => true, + '0329' => true, + '0330' => true, + '0331' => true, + '0333' => true, + '0335' => true, + '0485' => true, + '0486' => true, + '0487' => true, + '0488' => true, + '0543' => true, + ], + 'phpstan.dynamicFunctionThrowTypeExtension' => ['0221' => true, '0266' => true, '0268' => true], + 'phpstan.broker.dynamicStaticMethodReturnTypeExtension' => [ + '0222' => true, + '0225' => true, + '0227' => true, + '0240' => true, + '0346' => true, + '0352' => true, + '0457' => true, + '0458' => true, + '0459' => true, + '0460' => true, + '0461' => true, + '0463' => true, + '0471' => true, + '0493' => true, + ], + 'phpstan.dynamicStaticMethodThrowTypeExtension' => [ + '0239' => true, + '0245' => true, + '0248' => true, + '0277' => true, + '0278' => true, + '0279' => true, + '0280' => true, + '0283' => true, + ], + 'phpstan.dynamicMethodThrowTypeExtension' => ['0246' => true, '0247' => true, '0250' => true], + 'phpstan.functionParameterOutTypeExtension' => ['0269' => true, '0270' => true, '0272' => true], + 'phpstan.functionParameterClosureTypeExtension' => ['0273' => true], + 'phpstan.typeSpecifier.methodTypeSpecifyingExtension' => ['0292' => true, '0544' => true], + 'phpstan.rules.rule' => [ + '0363' => true, + '0364' => true, + '0365' => true, + '0366' => true, + '0367' => true, + '0368' => true, + '0369' => true, + '0370' => true, + '0371' => true, + '0372' => true, + '0373' => true, + '0374' => true, + '0375' => true, + '0376' => true, + '0377' => true, + '0378' => true, + '0379' => true, + '0380' => true, + '0381' => true, + '0382' => true, + '0383' => true, + '0385' => true, + '0386' => true, + '0387' => true, + '0388' => true, + '0389' => true, + '0390' => true, + '0391' => true, + '0392' => true, + '0393' => true, + '0394' => true, + '0395' => true, + '0396' => true, + '0397' => true, + '0398' => true, + '0399' => true, + '0400' => true, + '0401' => true, + '0409' => true, + '0410' => true, + '0411' => true, + '0412' => true, + '0413' => true, + '0414' => true, + '0415' => true, + '0416' => true, + '0417' => true, + '0418' => true, + '0419' => true, + '0420' => true, + '0421' => true, + '0422' => true, + '0423' => true, + '0424' => true, + '0425' => true, + '0426' => true, + '0427' => true, + '0428' => true, + '0431' => true, + '0432' => true, + '0433' => true, + '0434' => true, + '0496' => true, + '0498' => true, + '0499' => true, + '0500' => true, + '0510' => true, + '0511' => true, + '0512' => true, + '0553' => true, + 'rules.0' => true, + 'rules.1' => true, + 'rules.10' => true, + 'rules.100' => true, + 'rules.101' => true, + 'rules.102' => true, + 'rules.103' => true, + 'rules.104' => true, + 'rules.105' => true, + 'rules.106' => true, + 'rules.107' => true, + 'rules.108' => true, + 'rules.109' => true, + 'rules.11' => true, + 'rules.110' => true, + 'rules.111' => true, + 'rules.112' => true, + 'rules.113' => true, + 'rules.114' => true, + 'rules.115' => true, + 'rules.116' => true, + 'rules.117' => true, + 'rules.118' => true, + 'rules.119' => true, + 'rules.12' => true, + 'rules.120' => true, + 'rules.121' => true, + 'rules.122' => true, + 'rules.123' => true, + 'rules.124' => true, + 'rules.125' => true, + 'rules.126' => true, + 'rules.127' => true, + 'rules.128' => true, + 'rules.129' => true, + 'rules.13' => true, + 'rules.130' => true, + 'rules.131' => true, + 'rules.132' => true, + 'rules.133' => true, + 'rules.134' => true, + 'rules.135' => true, + 'rules.136' => true, + 'rules.137' => true, + 'rules.138' => true, + 'rules.139' => true, + 'rules.14' => true, + 'rules.140' => true, + 'rules.141' => true, + 'rules.142' => true, + 'rules.143' => true, + 'rules.144' => true, + 'rules.145' => true, + 'rules.146' => true, + 'rules.147' => true, + 'rules.148' => true, + 'rules.149' => true, + 'rules.15' => true, + 'rules.150' => true, + 'rules.151' => true, + 'rules.152' => true, + 'rules.153' => true, + 'rules.154' => true, + 'rules.155' => true, + 'rules.156' => true, + 'rules.157' => true, + 'rules.158' => true, + 'rules.159' => true, + 'rules.16' => true, + 'rules.160' => true, + 'rules.161' => true, + 'rules.162' => true, + 'rules.163' => true, + 'rules.164' => true, + 'rules.165' => true, + 'rules.166' => true, + 'rules.167' => true, + 'rules.168' => true, + 'rules.169' => true, + 'rules.17' => true, + 'rules.170' => true, + 'rules.171' => true, + 'rules.172' => true, + 'rules.173' => true, + 'rules.174' => true, + 'rules.175' => true, + 'rules.176' => true, + 'rules.177' => true, + 'rules.178' => true, + 'rules.179' => true, + 'rules.18' => true, + 'rules.180' => true, + 'rules.181' => true, + 'rules.182' => true, + 'rules.183' => true, + 'rules.184' => true, + 'rules.185' => true, + 'rules.186' => true, + 'rules.187' => true, + 'rules.188' => true, + 'rules.189' => true, + 'rules.19' => true, + 'rules.190' => true, + 'rules.191' => true, + 'rules.192' => true, + 'rules.193' => true, + 'rules.194' => true, + 'rules.195' => true, + 'rules.196' => true, + 'rules.197' => true, + 'rules.198' => true, + 'rules.199' => true, + 'rules.2' => true, + 'rules.20' => true, + 'rules.200' => true, + 'rules.201' => true, + 'rules.202' => true, + 'rules.203' => true, + 'rules.204' => true, + 'rules.205' => true, + 'rules.206' => true, + 'rules.207' => true, + 'rules.208' => true, + 'rules.209' => true, + 'rules.21' => true, + 'rules.210' => true, + 'rules.211' => true, + 'rules.212' => true, + 'rules.213' => true, + 'rules.214' => true, + 'rules.215' => true, + 'rules.216' => true, + 'rules.217' => true, + 'rules.218' => true, + 'rules.219' => true, + 'rules.22' => true, + 'rules.220' => true, + 'rules.221' => true, + 'rules.222' => true, + 'rules.223' => true, + 'rules.224' => true, + 'rules.225' => true, + 'rules.226' => true, + 'rules.227' => true, + 'rules.228' => true, + 'rules.229' => true, + 'rules.23' => true, + 'rules.230' => true, + 'rules.231' => true, + 'rules.232' => true, + 'rules.233' => true, + 'rules.234' => true, + 'rules.235' => true, + 'rules.236' => true, + 'rules.237' => true, + 'rules.238' => true, + 'rules.239' => true, + 'rules.24' => true, + 'rules.240' => true, + 'rules.241' => true, + 'rules.242' => true, + 'rules.243' => true, + 'rules.244' => true, + 'rules.245' => true, + 'rules.246' => true, + 'rules.247' => true, + 'rules.248' => true, + 'rules.249' => true, + 'rules.25' => true, + 'rules.250' => true, + 'rules.251' => true, + 'rules.252' => true, + 'rules.253' => true, + 'rules.254' => 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, + 'rules.98' => true, + 'rules.99' => true, + ], + 'phpstan.collector' => [ + '0402' => true, + '0403' => true, + '0404' => true, + '0405' => true, + '0406' => true, + '0407' => true, + '0408' => true, + '0429' => true, + '0430' => true, + '0516' => true, + '0517' => true, + '0518' => true, + '0519' => true, + '0520' => true, + ], + 'phpstan.phpDoc.typeNodeResolverExtension' => [ + '0494' => true, + '0495' => true, + '0501' => true, + '0503' => true, + '0542' => true, + ], + 'phpstan.deprecations.deprecatedScopeResolver' => ['0540' => true], + 'phpstan.typeSpecifier.staticMethodTypeSpecifyingExtension' => ['0545' => true], + ]; + + protected $types = ['container' => '_PHPStan_24e2736d6\Nette\DI\Container']; + protected $aliases = []; + + protected $wiring = [ + '_PHPStan_24e2736d6\Nette\DI\Container' => [['container']], + 'PHPStan\Rules\Rule' => [ + [ + '0141', + '0142', + '0143', + '0159', + '0174', + '0363', + '0364', + '0365', + '0366', + '0367', + '0368', + '0369', + '0370', + '0371', + '0372', + '0373', + '0374', + '0375', + '0376', + '0377', + '0378', + '0379', + '0380', + '0381', + '0382', + '0383', + '0385', + '0386', + '0387', + '0388', + '0389', + '0390', + '0391', + '0392', + '0393', + '0394', + '0395', + '0396', + '0397', + '0398', + '0399', + '0400', + '0401', + '0409', + '0410', + '0411', + '0412', + '0413', + '0414', + '0415', + '0416', + '0417', + '0418', + '0419', + '0420', + '0421', + '0422', + '0423', + '0424', + '0425', + '0426', + '0427', + '0428', + '0431', + '0432', + '0433', + '0434', + '0435', + '0496', + '0497', + '0498', + '0499', + '0500', + '0510', + '0511', + '0512', + '0515', + '0541', + '0553', + '0554', + ], + [ + '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', + 'rules.98', + 'rules.99', + 'rules.100', + 'rules.101', + 'rules.102', + 'rules.103', + 'rules.104', + 'rules.105', + 'rules.106', + 'rules.107', + 'rules.108', + 'rules.109', + 'rules.110', + 'rules.111', + 'rules.112', + 'rules.113', + 'rules.114', + 'rules.115', + 'rules.116', + 'rules.117', + 'rules.118', + 'rules.119', + 'rules.120', + 'rules.121', + 'rules.122', + 'rules.123', + 'rules.124', + 'rules.125', + 'rules.126', + 'rules.127', + 'rules.128', + 'rules.129', + 'rules.130', + 'rules.131', + 'rules.132', + 'rules.133', + 'rules.134', + 'rules.135', + 'rules.136', + 'rules.137', + 'rules.138', + 'rules.139', + 'rules.140', + 'rules.141', + 'rules.142', + 'rules.143', + 'rules.144', + 'rules.145', + 'rules.146', + 'rules.147', + 'rules.148', + 'rules.149', + 'rules.150', + 'rules.151', + 'rules.152', + 'rules.153', + 'rules.154', + 'rules.155', + 'rules.156', + 'rules.157', + 'rules.158', + 'rules.159', + 'rules.160', + 'rules.161', + 'rules.162', + 'rules.163', + 'rules.164', + 'rules.165', + 'rules.166', + 'rules.167', + 'rules.168', + 'rules.169', + 'rules.170', + 'rules.171', + 'rules.172', + 'rules.173', + 'rules.174', + 'rules.175', + 'rules.176', + 'rules.177', + 'rules.178', + 'rules.179', + 'rules.180', + 'rules.181', + 'rules.182', + 'rules.183', + 'rules.184', + 'rules.185', + 'rules.186', + 'rules.187', + 'rules.188', + 'rules.189', + 'rules.190', + 'rules.191', + 'rules.192', + 'rules.193', + 'rules.194', + 'rules.195', + 'rules.196', + 'rules.197', + 'rules.198', + 'rules.199', + 'rules.200', + 'rules.201', + 'rules.202', + 'rules.203', + 'rules.204', + 'rules.205', + 'rules.206', + 'rules.207', + 'rules.208', + 'rules.209', + 'rules.210', + 'rules.211', + 'rules.212', + 'rules.213', + 'rules.214', + 'rules.215', + 'rules.216', + 'rules.217', + 'rules.218', + 'rules.219', + 'rules.220', + 'rules.221', + 'rules.222', + 'rules.223', + 'rules.224', + 'rules.225', + 'rules.226', + 'rules.227', + 'rules.228', + 'rules.229', + 'rules.230', + 'rules.231', + 'rules.232', + 'rules.233', + 'rules.234', + 'rules.235', + 'rules.236', + 'rules.237', + 'rules.238', + 'rules.239', + 'rules.240', + 'rules.241', + 'rules.242', + 'rules.243', + 'rules.244', + 'rules.245', + 'rules.246', + 'rules.247', + 'rules.248', + 'rules.249', + 'rules.250', + 'rules.251', + 'rules.252', + 'rules.253', + 'rules.254', + ], + ], + 'PHPStan\Rules\Debug\DebugScopeRule' => [['rules.0']], + 'PHPStan\Rules\Debug\DumpPhpDocTypeRule' => [['rules.1']], + 'PHPStan\Rules\Debug\DumpTypeRule' => [['rules.2']], + 'PHPStan\Rules\Debug\FileAssertRule' => [['rules.3']], + 'PHPStan\Rules\Api\ApiInstanceofRule' => [['rules.4']], + 'PHPStan\Rules\Api\ApiInstanceofTypeRule' => [['rules.5']], + 'PHPStan\Rules\Api\ApiInstantiationRule' => [['rules.6']], + 'PHPStan\Rules\Api\ApiClassConstFetchRule' => [['rules.7']], + 'PHPStan\Rules\Api\ApiClassExtendsRule' => [['rules.8']], + 'PHPStan\Rules\Api\ApiClassImplementsRule' => [['rules.9']], + 'PHPStan\Rules\Api\ApiInterfaceExtendsRule' => [['rules.10']], + 'PHPStan\Rules\Api\ApiMethodCallRule' => [['rules.11']], + 'PHPStan\Rules\Api\ApiStaticCallRule' => [['rules.12']], + 'PHPStan\Rules\Api\ApiTraitUseRule' => [['rules.13']], + 'PHPStan\Rules\Api\GetTemplateTypeRule' => [['rules.14']], + 'PHPStan\Rules\Api\NodeConnectingVisitorAttributesRule' => [['rules.15']], + 'PHPStan\Rules\Api\OldPhpParser4ClassRule' => [['rules.16']], + 'PHPStan\Rules\Api\PhpStanNamespaceIn3rdPartyPackageRule' => [['rules.17']], + 'PHPStan\Rules\Api\RuntimeReflectionInstantiationRule' => [['rules.18']], + 'PHPStan\Rules\Api\RuntimeReflectionFunctionRule' => [['rules.19']], + 'PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule' => [['rules.20']], + 'PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule' => [['rules.21']], + 'PHPStan\Rules\Cast\UnsetCastRule' => [['rules.22']], + 'PHPStan\Rules\Classes\AllowedSubTypesRule' => [['rules.23']], + 'PHPStan\Rules\Classes\ClassAttributesRule' => [['rules.24']], + 'PHPStan\Rules\Classes\ClassConstantAttributesRule' => [['rules.25']], + 'PHPStan\Rules\Classes\ClassConstantRule' => [['rules.26']], + 'PHPStan\Rules\Classes\DuplicateDeclarationRule' => [['rules.27']], + 'PHPStan\Rules\Classes\EnumSanityRule' => [['rules.28']], + 'PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule' => [['rules.29']], + 'PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule' => [['rules.30']], + 'PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule' => [['rules.31']], + 'PHPStan\Rules\Classes\ExistingClassInTraitUseRule' => [['rules.32']], + 'PHPStan\Rules\Classes\InstantiationRule' => [['rules.33']], + 'PHPStan\Rules\Classes\InstantiationCallableRule' => [['rules.34']], + 'PHPStan\Rules\Classes\InvalidPromotedPropertiesRule' => [['rules.35']], + 'PHPStan\Rules\Classes\LocalTypeAliasesRule' => [['rules.36']], + 'PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule' => [['rules.37']], + 'PHPStan\Rules\Classes\LocalTypeTraitAliasesRule' => [['rules.38']], + 'PHPStan\Rules\Classes\NewStaticRule' => [['rules.39']], + 'PHPStan\Rules\Classes\NonClassAttributeClassRule' => [['rules.40']], + 'PHPStan\Rules\Classes\ReadOnlyClassRule' => [['rules.41']], + 'PHPStan\Rules\Classes\TraitAttributeClassRule' => [['rules.42']], + 'PHPStan\Rules\Constants\ClassAsClassConstantRule' => [['rules.43']], + 'PHPStan\Rules\Constants\DynamicClassConstantFetchRule' => [['rules.44']], + 'PHPStan\Rules\Constants\FinalConstantRule' => [['rules.45']], + 'PHPStan\Rules\Constants\MagicConstantContextRule' => [['rules.46']], + 'PHPStan\Rules\Constants\NativeTypedClassConstantRule' => [['rules.47']], + 'PHPStan\Rules\EnumCases\EnumCaseAttributesRule' => [['rules.48']], + 'PHPStan\Rules\Exceptions\NoncapturingCatchRule' => [['rules.49']], + 'PHPStan\Rules\Exceptions\ThrowExpressionRule' => [['rules.50']], + 'PHPStan\Rules\Functions\ArrowFunctionAttributesRule' => [['rules.51']], + 'PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule' => [['rules.52']], + 'PHPStan\Rules\Functions\ClosureAttributesRule' => [['rules.53']], + 'PHPStan\Rules\Functions\DefineParametersRule' => [['rules.54']], + 'PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule' => [['rules.55']], + 'PHPStan\Rules\Functions\CallToFunctionParametersRule' => [['rules.56']], + 'PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule' => [['rules.57']], + 'PHPStan\Rules\Functions\ExistingClassesInTypehintsRule' => [['rules.58']], + 'PHPStan\Rules\Functions\FunctionAttributesRule' => [['rules.59']], + 'PHPStan\Rules\Functions\InnerFunctionRule' => [['rules.60']], + 'PHPStan\Rules\Functions\InvalidLexicalVariablesInClosureUseRule' => [['rules.61']], + 'PHPStan\Rules\Functions\ParamAttributesRule' => [['rules.62']], + 'PHPStan\Rules\Functions\PrintfArrayParametersRule' => [['rules.63']], + 'PHPStan\Rules\Functions\PrintfParametersRule' => [['rules.64']], + 'PHPStan\Rules\Functions\RedefinedParametersRule' => [['rules.65']], + 'PHPStan\Rules\Functions\ReturnNullsafeByRefRule' => [['rules.66']], + 'PHPStan\Rules\Ignore\IgnoreParseErrorRule' => [['rules.67']], + 'PHPStan\Rules\Functions\VariadicParametersDeclarationRule' => [['rules.68']], + 'PHPStan\Rules\Keywords\ContinueBreakInLoopRule' => [['rules.69']], + 'PHPStan\Rules\Keywords\DeclareStrictTypesRule' => [['rules.70']], + 'PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule' => [['rules.71']], + 'PHPStan\Rules\Methods\AbstractPrivateMethodRule' => [['rules.72']], + 'PHPStan\Rules\Methods\CallMethodsRule' => [['rules.73']], + 'PHPStan\Rules\Methods\CallStaticMethodsRule' => [['rules.74']], + 'PHPStan\Rules\Methods\ConsistentConstructorRule' => [['rules.75']], + 'PHPStan\Rules\Methods\ConstructorReturnTypeRule' => [['rules.76']], + 'PHPStan\Rules\Methods\ExistingClassesInTypehintsRule' => [['rules.77']], + 'PHPStan\Rules\Methods\FinalPrivateMethodRule' => [['rules.78']], + 'PHPStan\Rules\Methods\MethodCallableRule' => [['rules.79']], + 'PHPStan\Rules\Methods\MethodVisibilityInInterfaceRule' => [['rules.80']], + 'PHPStan\Rules\Methods\MissingMagicSerializationMethodsRule' => [['rules.81']], + 'PHPStan\Rules\Methods\MissingMethodImplementationRule' => [['rules.82']], + 'PHPStan\Rules\Methods\MethodAttributesRule' => [['rules.83']], + 'PHPStan\Rules\Methods\StaticMethodCallableRule' => [['rules.84']], + 'PHPStan\Rules\Names\UsedNamesRule' => [['rules.85']], + 'PHPStan\Rules\Operators\InvalidAssignVarRule' => [['rules.86']], + 'PHPStan\Rules\Operators\InvalidIncDecOperationRule' => [['rules.87']], + 'PHPStan\Rules\Properties\AccessPropertiesInAssignRule' => [['rules.88']], + 'PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule' => [['rules.89']], + 'PHPStan\Rules\Properties\ExistingClassesInPropertyHookTypehintsRule' => [['rules.90']], + 'PHPStan\Rules\Properties\InvalidCallablePropertyTypeRule' => [['rules.91']], + 'PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule' => [['rules.92']], + 'PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule' => [['rules.93']], + 'PHPStan\Rules\Properties\PropertiesInInterfaceRule' => [['rules.94']], + 'PHPStan\Rules\Properties\PropertyAssignRefRule' => [['rules.95']], + 'PHPStan\Rules\Properties\PropertyAttributesRule' => [['rules.96']], + 'PHPStan\Rules\Properties\PropertyHookAttributesRule' => [['rules.97']], + 'PHPStan\Rules\Properties\PropertyInClassRule' => [['rules.98']], + 'PHPStan\Rules\Properties\ReadOnlyPropertyRule' => [['rules.99']], + 'PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyRule' => [['rules.100']], + 'PHPStan\Rules\Regexp\RegularExpressionPatternRule' => [['rules.101']], + 'PHPStan\Rules\Traits\ConflictingTraitConstantsRule' => [['rules.102']], + 'PHPStan\Rules\Traits\ConstantsInTraitsRule' => [['rules.103']], + 'PHPStan\Rules\Traits\TraitAttributesRule' => [['rules.104']], + 'PHPStan\Rules\Types\InvalidTypesInUnionRule' => [['rules.105']], + 'PHPStan\Rules\Variables\UnsetRule' => [['rules.106']], + 'PHPStan\Rules\Whitespace\FileWhitespaceRule' => [['rules.107']], + 'PHPStan\Rules\Classes\UnusedConstructorParametersRule' => [['rules.108']], + 'PHPStan\Rules\Constants\ConstantRule' => [['rules.109']], + 'PHPStan\Rules\Functions\UnusedClosureUsesRule' => [['rules.110']], + 'PHPStan\Rules\Variables\EmptyRule' => [['rules.111']], + 'PHPStan\Rules\Variables\IssetRule' => [['rules.112']], + 'PHPStan\Rules\Variables\NullCoalesceRule' => [['rules.113']], + 'PHPStan\Rules\Cast\EchoRule' => [['rules.114']], + 'PHPStan\Rules\Cast\InvalidCastRule' => [['rules.115']], + 'PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule' => [['rules.116']], + 'PHPStan\Rules\Cast\PrintRule' => [['rules.117']], + 'PHPStan\Rules\Classes\AccessPrivateConstantThroughStaticRule' => [['rules.118']], + 'PHPStan\Rules\Classes\MethodTagRule' => [['rules.119']], + 'PHPStan\Rules\Classes\MethodTagTraitRule' => [['rules.120']], + 'PHPStan\Rules\Classes\MethodTagTraitUseRule' => [['rules.121']], + 'PHPStan\Rules\Classes\PropertyTagRule' => [['rules.122']], + 'PHPStan\Rules\Classes\PropertyTagTraitRule' => [['rules.123']], + 'PHPStan\Rules\Classes\PropertyTagTraitUseRule' => [['rules.124']], + 'PHPStan\Rules\Classes\MixinTraitRule' => [['rules.125']], + 'PHPStan\Rules\Classes\MixinTraitUseRule' => [['rules.126']], + 'PHPStan\Rules\Comparison\UsageOfVoidMatchExpressionRule' => [['rules.127']], + 'PHPStan\Rules\Constants\ValueAssignedToClassConstantRule' => [['rules.128']], + 'PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule' => [['rules.129']], + 'PHPStan\Rules\Functions\IncompatibleArrowFunctionDefaultParameterTypeRule' => [['rules.130']], + 'PHPStan\Rules\Functions\IncompatibleClosureDefaultParameterTypeRule' => [['rules.131']], + 'PHPStan\Rules\Generics\ClassAncestorsRule' => [['rules.132']], + 'PHPStan\Rules\Generics\ClassTemplateTypeRule' => [['rules.133']], + 'PHPStan\Rules\Generics\EnumAncestorsRule' => [['rules.134']], + 'PHPStan\Rules\Generics\EnumTemplateTypeRule' => [['rules.135']], + 'PHPStan\Rules\Generics\FunctionTemplateTypeRule' => [['rules.136']], + 'PHPStan\Rules\Generics\FunctionSignatureVarianceRule' => [['rules.137']], + 'PHPStan\Rules\Generics\InterfaceAncestorsRule' => [['rules.138']], + 'PHPStan\Rules\Generics\InterfaceTemplateTypeRule' => [['rules.139']], + 'PHPStan\Rules\Generics\MethodTemplateTypeRule' => [['rules.140']], + 'PHPStan\Rules\Generics\MethodTagTemplateTypeRule' => [['rules.141']], + 'PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule' => [['rules.142']], + 'PHPStan\Rules\Generics\MethodSignatureVarianceRule' => [['rules.143']], + 'PHPStan\Rules\Generics\PropertyVarianceRule' => [['rules.144']], + 'PHPStan\Rules\Generics\TraitTemplateTypeRule' => [['rules.145']], + 'PHPStan\Rules\Generics\UsedTraitsRule' => [['rules.146']], + 'PHPStan\Rules\Methods\CallPrivateMethodThroughStaticRule' => [['rules.147']], + 'PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule' => [['rules.148']], + 'PHPStan\Rules\Operators\InvalidBinaryOperationRule' => [['rules.149']], + 'PHPStan\Rules\Operators\InvalidComparisonOperationRule' => [['rules.150']], + 'PHPStan\Rules\Operators\InvalidUnaryOperationRule' => [['rules.151']], + 'PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule' => [['rules.152']], + 'PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule' => [['rules.153']], + 'PHPStan\Rules\PhpDoc\FunctionAssertRule' => [['rules.154']], + 'PHPStan\Rules\PhpDoc\MethodAssertRule' => [['rules.155']], + 'PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule' => [['rules.156']], + 'PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule' => [['rules.157']], + 'PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule' => [['rules.158']], + 'PHPStan\Rules\PhpDoc\IncompatiblePropertyHookPhpDocTypeRule' => [['rules.159']], + 'PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule' => [['rules.160']], + 'PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule' => [['rules.161']], + 'PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule' => [['rules.162']], + 'PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule' => [['rules.163']], + 'PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule' => [['rules.164']], + 'PHPStan\Rules\Properties\AccessPrivatePropertyThroughStaticRule' => [['rules.165']], + 'PHPStan\Rules\Classes\RequireImplementsRule' => [['rules.166']], + 'PHPStan\Rules\Classes\RequireExtendsRule' => [['rules.167']], + 'PHPStan\Rules\PhpDoc\RequireImplementsDefinitionClassRule' => [['rules.168']], + 'PHPStan\Rules\PhpDoc\RequireExtendsDefinitionClassRule' => [['rules.169']], + 'PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule' => [['rules.170']], + 'PHPStan\Rules\Pure\PureFunctionRule' => [['rules.171']], + 'PHPStan\Rules\Pure\PureMethodRule' => [['rules.172']], + 'PHPStan\Rules\Arrays\ArrayDestructuringRule' => [['rules.173']], + 'PHPStan\Rules\Arrays\ArrayUnpackingRule' => [['rules.174']], + 'PHPStan\Rules\Arrays\IterableInForeachRule' => [['rules.175']], + 'PHPStan\Rules\Arrays\OffsetAccessAssignmentRule' => [['rules.176']], + 'PHPStan\Rules\Arrays\OffsetAccessAssignOpRule' => [['rules.177']], + 'PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule' => [['rules.178']], + 'PHPStan\Rules\Arrays\UnpackIterableInArrayRule' => [['rules.179']], + 'PHPStan\Rules\Exceptions\ThrowExprTypeRule' => [['rules.180']], + 'PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule' => [['rules.181']], + 'PHPStan\Rules\Functions\ClosureReturnTypeRule' => [['rules.182']], + 'PHPStan\Rules\Functions\ReturnTypeRule' => [['rules.183']], + 'PHPStan\Rules\Generators\YieldTypeRule' => [['rules.184']], + 'PHPStan\Rules\Methods\ReturnTypeRule' => [['rules.185']], + 'PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule' => [['rules.186']], + 'PHPStan\Rules\Properties\GetNonVirtualPropertyHookReadRule' => [['rules.187']], + 'PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule' => [['rules.188']], + 'PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule' => [['rules.189']], + 'PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule' => [['rules.190']], + 'PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule' => [['rules.191']], + 'PHPStan\Rules\Properties\SetNonVirtualPropertyHookAssignRule' => [['rules.192']], + 'PHPStan\Rules\Properties\TypesAssignedToPropertiesRule' => [['rules.193']], + 'PHPStan\Rules\Variables\ParameterOutAssignedTypeRule' => [['rules.194']], + 'PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule' => [['rules.195']], + 'PHPStan\Rules\Variables\VariableCloningRule' => [['rules.196']], + 'PHPStan\Rules\Arrays\DeadForeachRule' => [['rules.197']], + 'PHPStan\Rules\DeadCode\CallToConstructorStatementWithoutImpurePointsRule' => [['rules.198']], + 'PHPStan\Rules\DeadCode\CallToFunctionStatementWithoutImpurePointsRule' => [['rules.199']], + 'PHPStan\Rules\DeadCode\CallToMethodStatementWithoutImpurePointsRule' => [['rules.200']], + 'PHPStan\Rules\DeadCode\CallToStaticMethodStatementWithoutImpurePointsRule' => [['rules.201']], + 'PHPStan\Rules\DeadCode\NoopRule' => [['rules.202']], + 'PHPStan\Rules\DeadCode\UnreachableStatementRule' => [['rules.203']], + 'PHPStan\Rules\DeadCode\UnusedPrivateConstantRule' => [['rules.204']], + 'PHPStan\Rules\DeadCode\UnusedPrivateMethodRule' => [['rules.205']], + 'PHPStan\Rules\Exceptions\OverwrittenExitPointByFinallyRule' => [['rules.206']], + 'PHPStan\Rules\Functions\CallToFunctionStatementWithoutSideEffectsRule' => [['rules.207']], + 'PHPStan\Rules\Functions\UselessFunctionReturnValueRule' => [['rules.208']], + 'PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule' => [['rules.209']], + 'PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule' => [['rules.210']], + 'PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule' => [['rules.211']], + 'PHPStan\Rules\Methods\NullsafeMethodCallRule' => [['rules.212']], + 'PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule' => [['rules.213']], + 'PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule' => [['rules.214']], + 'PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule' => [['rules.215']], + 'PHPStan\Rules\TooWideTypehints\TooWideFunctionParameterOutTypeRule' => [['rules.216']], + 'PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule' => [['rules.217']], + 'PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule' => [['rules.218']], + 'PHPStan\Rules\Traits\NotAnalysedTraitRule' => [['rules.219']], + 'PHPStan\Rules\DateTimeInstantiationRule' => [['rules.220']], + 'PHPStan\Rules\Functions\CallUserFuncRule' => [['rules.221']], + 'PHPStan\Rules\Functions\ParameterCastableToStringRule' => [['rules.222']], + 'PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule' => [['rules.223']], + 'PHPStan\Rules\Functions\SortParameterCastableToStringRule' => [['rules.224']], + 'PHPStan\Rules\Regexp\RegularExpressionQuotingRule' => [['rules.225']], + 'Larastan\Larastan\Rules\UselessConstructs\NoUselessWithFunctionCallsRule' => [['rules.226']], + 'Larastan\Larastan\Rules\UselessConstructs\NoUselessValueFunctionCallsRule' => [['rules.227']], + 'Larastan\Larastan\Rules\DeferrableServiceProviderMissingProvidesRule' => [['rules.228']], + 'Larastan\Larastan\Rules\ConsoleCommand\UndefinedArgumentOrOptionRule' => [['rules.229']], + 'PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule' => [['rules.230']], + 'PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule' => [['rules.231']], + 'PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule' => [['rules.232']], + 'PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule' => [['rules.233']], + 'PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule' => [['rules.234']], + 'PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule' => [['rules.235']], + 'PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule' => [['rules.236']], + 'PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule' => [['rules.237']], + 'PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule' => [['rules.238']], + 'PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule' => [['rules.239']], + 'PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule' => [['rules.240']], + 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule' => [['rules.241']], + 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule' => [['rules.242']], + 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule' => [['rules.243']], + 'PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule' => [['rules.244']], + 'PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule' => [['rules.245']], + 'PHPStan\Rules\PHPUnit\AssertSameBooleanExpectedRule' => [['rules.246']], + 'PHPStan\Rules\PHPUnit\AssertSameNullExpectedRule' => [['rules.247']], + 'PHPStan\Rules\PHPUnit\AssertSameWithCountRule' => [['rules.248']], + 'PHPStan\Rules\PHPUnit\ClassCoversExistsRule' => [['rules.249']], + 'PHPStan\Rules\PHPUnit\ClassMethodCoversExistsRule' => [['rules.250']], + 'PHPStan\Rules\PHPUnit\MockMethodCallRule' => [['rules.251']], + 'PHPStan\Rules\PHPUnit\NoMissingSpaceInClassAnnotationRule' => [['rules.252']], + 'PHPStan\Rules\PHPUnit\NoMissingSpaceInMethodAnnotationRule' => [['rules.253']], + 'PHPStan\Rules\PHPUnit\ShouldCallParentMethodsRule' => [['rules.254']], + 'PhpParser\BuilderFactory' => [['01']], + 'PHPStan\Parser\LexerFactory' => [['02']], + 'PhpParser\NodeVisitorAbstract' => [ + [ + '03', + '04', + '05', + '06', + '07', + '08', + '09', + '010', + '011', + '012', + '013', + '014', + '015', + '016', + '017', + '018', + '019', + '020', + '021', + '022', + '073', + '088', + '089', + '098', + ], + ], + 'PhpParser\NodeVisitor' => [ + [ + '03', + '04', + '05', + '06', + '07', + '08', + '09', + '010', + '011', + '012', + '013', + '014', + '015', + '016', + '017', + '018', + '019', + '020', + '021', + '022', + '073', + '088', + '089', + '098', + ], + ], + 'PhpParser\NodeVisitor\NameResolver' => [['03']], + 'PHPStan\Parser\AnonymousClassVisitor' => [['04']], + 'PHPStan\Parser\ArrayFilterArgVisitor' => [['05']], + 'PHPStan\Parser\ArrayFindArgVisitor' => [['06']], + 'PHPStan\Parser\ArrayMapArgVisitor' => [['07']], + 'PHPStan\Parser\ArrayWalkArgVisitor' => [['08']], + 'PHPStan\Parser\ClosureArgVisitor' => [['09']], + 'PHPStan\Parser\ClosureBindToVarVisitor' => [['010']], + 'PHPStan\Parser\ClosureBindArgVisitor' => [['011']], + 'PHPStan\Parser\CurlSetOptArgVisitor' => [['012']], + 'PHPStan\Parser\ArrowFunctionArgVisitor' => [['013']], + 'PHPStan\Parser\MagicConstantParamDefaultVisitor' => [['014']], + 'PHPStan\Parser\NewAssignedToPropertyVisitor' => [['015']], + 'PHPStan\Parser\ParentStmtTypesVisitor' => [['016']], + 'PHPStan\Parser\StandaloneThrowExprVisitor' => [['017']], + 'PHPStan\Parser\TryCatchTypeVisitor' => [['018']], + 'PHPStan\Parser\LastConditionVisitor' => [['019']], + 'PHPStan\Parser\TypeTraverserInstanceofVisitor' => [['020']], + 'PHPStan\Parser\VariadicMethodsVisitor' => [['021']], + 'PHPStan\Parser\VariadicFunctionsVisitor' => [['022']], + 'PHPStan\Node\Printer\ExprPrinter' => [['023']], + 'PhpParser\PrettyPrinter\Standard' => [1 => ['024']], + 'PhpParser\PrettyPrinterAbstract' => [1 => ['024']], + 'PhpParser\PrettyPrinter' => [1 => ['024']], + 'PHPStan\Node\Printer\Printer' => [['024']], + 'PHPStan\Broker\AnonymousClassNameHelper' => [['025']], + 'PHPStan\Php\PhpVersion' => [['026']], + 'PHPStan\Php\PhpVersionFactory' => [['027']], + 'PHPStan\Php\PhpVersionFactoryFactory' => [['028']], + 'PHPStan\Php\ComposerPhpVersionFactory' => [['029']], + 'PHPStan\PhpDocParser\ParserConfig' => [['030']], + 'PHPStan\PhpDocParser\Lexer\Lexer' => [['031']], + 'PHPStan\PhpDocParser\Parser\TypeParser' => [['032']], + 'PHPStan\PhpDocParser\Parser\ConstExprParser' => [['033']], + 'PHPStan\PhpDocParser\Parser\PhpDocParser' => [['034']], + 'PHPStan\PhpDocParser\Printer\Printer' => [['035']], + 'PHPStan\PhpDoc\PhpDocInheritanceResolver' => [['036']], + 'PHPStan\PhpDoc\PhpDocNodeResolver' => [['037']], + 'PHPStan\PhpDoc\PhpDocStringResolver' => [['038']], + 'PHPStan\PhpDoc\ConstExprNodeResolver' => [['039']], + 'PHPStan\PhpDoc\TypeNodeResolver' => [['040']], + 'PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider' => [['041']], + 'PHPStan\PhpDoc\TypeStringResolver' => [['042']], + 'PHPStan\PhpDoc\StubValidator' => [['043']], + 'PHPStan\PhpDoc\StubFilesExtension' => [['044', '046', '047', '048', '0514']], + 'PHPStan\PhpDoc\SocketSelectStubFilesExtension' => [['044']], + 'PHPStan\PhpDoc\StubFilesProvider' => [['045']], + 'PHPStan\PhpDoc\DefaultStubFilesProvider' => [['045']], + 'PHPStan\PhpDoc\JsonValidateStubFilesExtension' => [['046']], + 'PHPStan\PhpDoc\ReflectionClassStubFilesExtension' => [['047']], + 'PHPStan\PhpDoc\ReflectionEnumStubFilesExtension' => [['048']], + 'PHPStan\Analyser\Analyser' => [['049']], + 'PHPStan\Analyser\AnalyserResultFinalizer' => [['050']], + 'PHPStan\Analyser\FileAnalyser' => [['051']], + 'PHPStan\Analyser\LocalIgnoresProcessor' => [['052']], + 'PHPStan\Analyser\RuleErrorTransformer' => [['053']], + 'PHPStan\Analyser\Ignore\IgnoredErrorHelper' => [['054']], + 'PHPStan\Analyser\Ignore\IgnoreLexer' => [['055']], + 'PHPStan\Analyser\InternalScopeFactory' => [['056']], + 'PHPStan\Analyser\LazyInternalScopeFactory' => [['056']], + 'PHPStan\Analyser\ScopeFactory' => [['057']], + 'PHPStan\Analyser\NodeScopeResolver' => [['058']], + 'PHPStan\Analyser\ConstantResolver' => [['059']], + 'PHPStan\Analyser\ConstantResolverFactory' => [['060']], + 'PHPStan\Analyser\ResultCache\ResultCacheManagerFactory' => [['061']], + 'PHPStan\Analyser\ResultCache\ResultCacheClearer' => [['062']], + 'PHPStan\Analyser\RicherScopeGetTypeHelper' => [['063']], + 'PHPStan\Cache\Cache' => [['064']], + 'PHPStan\Collectors\Registry' => [['065']], + 'PHPStan\Collectors\RegistryFactory' => [['066']], + 'PHPStan\Command\AnalyseApplication' => [['067']], + 'PHPStan\Command\AnalyserRunner' => [['068']], + 'PHPStan\Command\FixerApplication' => [['069']], + 'PHPStan\Dependency\DependencyResolver' => [['070']], + 'PHPStan\Dependency\ExportedNodeFetcher' => [['071']], + 'PHPStan\Dependency\ExportedNodeResolver' => [['072']], + 'PHPStan\Dependency\ExportedNodeVisitor' => [['073']], + 'PHPStan\DependencyInjection\Container' => [['074'], ['075']], + 'PHPStan\DependencyInjection\Nette\NetteContainer' => [['075']], + 'PHPStan\DependencyInjection\DerivativeContainerFactory' => [['076']], + 'PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider' => [['077']], + 'PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider' => [['078']], + 'PHPStan\DependencyInjection\Type\ParameterOutTypeExtensionProvider' => [['079']], + 'PHPStan\DependencyInjection\Type\ExpressionTypeResolverExtensionRegistryProvider' => [['080']], + 'PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider' => [['081']], + 'PHPStan\DependencyInjection\Type\DynamicThrowTypeExtensionProvider' => [['082']], + 'PHPStan\DependencyInjection\Type\ParameterClosureTypeExtensionProvider' => [['083']], + 'PHPStan\File\FileHelper' => [['084']], + 'PHPStan\File\FileExcluderFactory' => [['085']], + 'PHPStan\File\FileExcluderRawFactory' => [['086']], + 'PHPStan\File\FileExcluder' => [2 => ['fileExcluderAnalyse', 'fileExcluderScan']], + 'PHPStan\File\FileFinder' => [2 => ['fileFinderAnalyse', 'fileFinderScan']], + 'PHPStan\File\FileMonitor' => [['087']], + 'PHPStan\Parser\DeclarePositionVisitor' => [['088']], + 'PHPStan\Parser\ImmediatelyInvokedClosureVisitor' => [['089']], + 'PHPStan\Parallel\ParallelAnalyser' => [['090']], + 'PHPStan\Diagnose\DiagnoseExtension' => [0 => ['091'], 2 => [1 => 'phpstanDiagnoseExtension']], + 'PHPStan\Parallel\Scheduler' => [['091']], + 'PHPStan\Process\CpuCoreCounter' => [['092']], + 'PHPStan\Reflection\AttributeReflectionFactory' => [['093']], + 'PHPStan\Reflection\FunctionReflectionFactory' => [['094']], + 'PHPStan\Reflection\InitializerExprTypeResolver' => [['095']], + 'PHPStan\Reflection\MethodsClassReflectionExtension' => [ + [ + '096', + '0110', + '0112', + '0114', + '0116', + '0436', + '0437', + '0438', + '0439', + '0440', + '0441', + '0442', + '0443', + '0444', + '0445', + '0446', + '0536', + ], + ], + 'PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension' => [['096']], + 'PHPStan\Reflection\PropertiesClassReflectionExtension' => [ + ['097', '0111', '0113', '0114', '0118', '0282', '0447', '0448', '0449', '0455'], + ], + 'PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension' => [['097']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor' => [['098']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher' => [['099']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker' => [['0100']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory' => [['0101']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository' => [['0102']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory' => [['0103']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory' => [['0104']], + 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository' => [['0105']], + 'PHPStan\Type\DynamicMethodReturnTypeExtension' => [ + [ + '0106', + '0107', + '0108', + '0119', + '0120', + '0226', + '0237', + '0243', + '0244', + '0249', + '0284', + '0311', + '0338', + '0339', + '0346', + '0347', + '0348', + '0349', + '0350', + '0351', + '0450', + '0451', + '0452', + '0453', + '0454', + '0456', + '0462', + '0464', + '0465', + '0466', + '0467', + '0468', + '0469', + '0470', + '0472', + '0473', + '0481', + '0482', + '0483', + '0484', + '0502', + '0523', + '0524', + '0525', + '0526', + '0527', + '0528', + '0529', + '0546', + '0547', + '0548', + ], + ], + 'PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumCaseDynamicReturnTypeExtension' => [ + ['0106', '0107'], + ], + 'PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumDynamicReturnTypeExtension' => [['0108']], + 'PHPStan\Reflection\ConstructorsHelper' => [['0109']], + 'PHPStan\Reflection\RequireExtension\RequireExtendsMethodsClassReflectionExtension' => [['0110']], + 'PHPStan\Reflection\RequireExtension\RequireExtendsPropertiesClassReflectionExtension' => [['0111']], + 'PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension' => [['0112']], + 'PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension' => [['0113']], + 'PHPStan\Reflection\Php\PhpClassReflectionExtension' => [['0114']], + 'PHPStan\Reflection\Php\PhpMethodReflectionFactory' => [['0115']], + 'PHPStan\Reflection\Php\Soap\SoapClientMethodsClassReflectionExtension' => [['0116']], + 'PHPStan\Reflection\AllowedSubTypesClassReflectionExtension' => [['0117']], + 'PHPStan\Reflection\Php\EnumAllowedSubTypesClassReflectionExtension' => [['0117']], + 'PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension' => [['0118']], + 'PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension' => [['0119', '0120']], + 'PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider' => [['0121']], + 'PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider' => [['0122']], + 'PHPStan\Reflection\SignatureMap\SignatureMapParser' => [['0123']], + 'PHPStan\Reflection\SignatureMap\SignatureMapProvider' => [['0127'], ['0124', '0125']], + 'PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider' => [['0124']], + 'PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider' => [['0125']], + 'PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory' => [['0126']], + 'PHPStan\Rules\Api\ApiRuleHelper' => [['0128']], + 'PHPStan\Rules\AttributesCheck' => [['0129']], + 'PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck' => [['0130']], + 'PHPStan\Rules\ClassNameCheck' => [['0131']], + 'PHPStan\Rules\ClassCaseSensitivityCheck' => [['0132']], + 'PHPStan\Rules\ClassForbiddenNameCheck' => [['0133']], + 'PHPStan\Rules\Classes\LocalTypeAliasesCheck' => [['0134']], + 'PHPStan\Rules\Classes\MethodTagCheck' => [['0135']], + 'PHPStan\Rules\Classes\MixinCheck' => [['0136']], + 'PHPStan\Rules\Classes\PropertyTagCheck' => [['0137']], + 'PHPStan\Rules\Comparison\ConstantConditionRuleHelper' => [['0138']], + 'PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper' => [['0139']], + 'PHPStan\Rules\Exceptions\ExceptionTypeResolver' => [1 => ['0140'], [1 => 'exceptionTypeResolver']], + 'PHPStan\Rules\Exceptions\DefaultExceptionTypeResolver' => [['0140']], + 'PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule' => [['0141']], + 'PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule' => [['0142']], + 'PHPStan\Rules\Exceptions\MissingCheckedExceptionInPropertyHookThrowsRule' => [['0143']], + 'PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck' => [['0144']], + 'PHPStan\Rules\Exceptions\TooWideThrowTypeCheck' => [['0145']], + 'PHPStan\Rules\FunctionCallParametersCheck' => [['0146']], + 'PHPStan\Rules\FunctionDefinitionCheck' => [['0147']], + 'PHPStan\Rules\FunctionReturnTypeCheck' => [['0148']], + 'PHPStan\Rules\ParameterCastableToStringCheck' => [['0149']], + 'PHPStan\Rules\Generics\CrossCheckInterfacesHelper' => [['0150']], + 'PHPStan\Rules\Generics\GenericAncestorsCheck' => [['0151']], + 'PHPStan\Rules\Generics\GenericObjectTypeCheck' => [['0152']], + 'PHPStan\Rules\Generics\MethodTagTemplateTypeCheck' => [['0153']], + 'PHPStan\Rules\Generics\TemplateTypeCheck' => [['0154']], + 'PHPStan\Rules\Generics\VarianceCheck' => [['0155']], + 'PHPStan\Rules\IssetCheck' => [['0156']], + 'PHPStan\Rules\Methods\MethodCallCheck' => [['0157']], + 'PHPStan\Rules\Methods\StaticMethodCallCheck' => [['0158']], + 'PHPStan\Rules\Methods\MethodSignatureRule' => [['0159']], + 'PHPStan\Rules\Methods\MethodParameterComparisonHelper' => [['0160']], + 'PHPStan\Rules\Methods\MethodVisibilityComparisonHelper' => [['0161']], + 'PHPStan\Rules\MissingTypehintCheck' => [['0162']], + 'PHPStan\Rules\NullsafeCheck' => [['0163']], + 'PHPStan\Rules\Constants\AlwaysUsedClassConstantsExtensionProvider' => [['0164']], + 'PHPStan\Rules\Constants\LazyAlwaysUsedClassConstantsExtensionProvider' => [['0164']], + 'PHPStan\Rules\Methods\AlwaysUsedMethodExtensionProvider' => [['0165']], + 'PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider' => [['0165']], + 'PHPStan\Rules\PhpDoc\ConditionalReturnTypeRuleHelper' => [['0166']], + 'PHPStan\Rules\PhpDoc\AssertRuleHelper' => [['0167']], + 'PHPStan\Rules\PhpDoc\UnresolvableTypeHelper' => [['0168']], + 'PHPStan\Rules\PhpDoc\GenericCallableRuleHelper' => [['0169']], + 'PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck' => [['0170']], + 'PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper' => [['0171']], + 'PHPStan\Rules\Playground\NeverRuleHelper' => [['0172']], + 'PHPStan\Rules\Properties\AccessPropertiesCheck' => [['0173']], + 'PHPStan\Rules\Properties\UninitializedPropertyRule' => [['0174']], + 'PHPStan\Rules\Properties\ReadWritePropertiesExtensionProvider' => [['0175']], + 'PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider' => [['0175']], + 'PHPStan\Rules\Properties\PropertyDescriptor' => [['0176']], + 'PHPStan\Rules\Properties\PropertyReflectionFinder' => [['0177']], + 'PHPStan\Rules\Pure\FunctionPurityCheck' => [['0178']], + 'PHPStan\Rules\RuleLevelHelper' => [['0179']], + 'PHPStan\Rules\UnusedFunctionParametersCheck' => [['0180']], + 'PHPStan\Rules\TooWideTypehints\TooWideParameterOutTypeCheck' => [['0181']], + 'PHPStan\Type\FileTypeMapper' => [0 => ['0182'], 2 => [1 => 'stubFileTypeMapper']], + 'PHPStan\Type\TypeAliasResolver' => [['0183']], + 'PHPStan\Type\TypeAliasResolverProvider' => [['0184']], + 'PHPStan\Type\BitwiseFlagHelper' => [['0185']], + 'PHPStan\Type\DynamicFunctionReturnTypeExtension' => [ + [ + '0186', + '0187', + '0188', + '0189', + '0190', + '0191', + '0192', + '0193', + '0194', + '0195', + '0197', + '0198', + '0199', + '0200', + '0201', + '0203', + '0204', + '0205', + '0206', + '0207', + '0208', + '0209', + '0210', + '0211', + '0212', + '0213', + '0214', + '0215', + '0216', + '0217', + '0219', + '0220', + '0223', + '0224', + '0228', + '0229', + '0231', + '0232', + '0234', + '0236', + '0238', + '0241', + '0242', + '0251', + '0252', + '0254', + '0255', + '0256', + '0257', + '0258', + '0259', + '0260', + '0261', + '0262', + '0263', + '0264', + '0265', + '0267', + '0284', + '0287', + '0288', + '0289', + '0290', + '0291', + '0293', + '0294', + '0295', + '0296', + '0297', + '0298', + '0299', + '0300', + '0301', + '0302', + '0303', + '0305', + '0306', + '0307', + '0308', + '0309', + '0310', + '0312', + '0313', + '0314', + '0315', + '0316', + '0317', + '0318', + '0319', + '0320', + '0323', + '0332', + '0336', + '0337', + '0340', + '0341', + '0342', + '0343', + '0344', + '0345', + '0475', + '0476', + '0477', + '0478', + '0479', + '0480', + '0489', + '0490', + '0491', + '0492', + '0530', + '0531', + ], + ], + 'PHPStan\Type\Php\AbsFunctionDynamicReturnTypeExtension' => [['0186']], + 'PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension' => [['0187']], + 'PHPStan\Type\Php\ArrayChangeKeyCaseFunctionReturnTypeExtension' => [['0188']], + 'PHPStan\Type\Php\ArrayIntersectKeyFunctionReturnTypeExtension' => [['0189']], + 'PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension' => [['0190']], + 'PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension' => [['0191']], + 'PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension' => [['0192']], + 'PHPStan\Type\Php\ArrayCurrentDynamicReturnTypeExtension' => [['0193']], + 'PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension' => [['0194']], + 'PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension' => [['0195']], + 'PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper' => [['0196']], + 'PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension' => [['0197']], + 'PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension' => [['0198']], + 'PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension' => [['0199']], + 'PHPStan\Type\Php\ArrayFindKeyFunctionReturnTypeExtension' => [['0200']], + 'PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension' => [['0201']], + 'PHPStan\Type\FunctionTypeSpecifyingExtension' => [ + [ + '0202', + '0218', + '0233', + '0271', + '0281', + '0285', + '0286', + '0304', + '0321', + '0322', + '0324', + '0325', + '0326', + '0327', + '0328', + '0329', + '0330', + '0331', + '0333', + '0335', + '0485', + '0486', + '0487', + '0488', + '0543', + ], + ], + 'PHPStan\Analyser\TypeSpecifierAwareExtension' => [ + [ + '0202', + '0218', + '0233', + '0271', + '0281', + '0285', + '0286', + '0292', + '0304', + '0321', + '0322', + '0324', + '0325', + '0326', + '0327', + '0328', + '0329', + '0330', + '0331', + '0333', + '0335', + '0337', + '0485', + '0486', + '0487', + '0488', + '0543', + '0544', + '0545', + ], + ], + 'PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension' => [['0202']], + 'PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension' => [['0203']], + 'PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension' => [['0204']], + 'PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension' => [['0205']], + 'PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension' => [['0206']], + 'PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension' => [['0207']], + 'PHPStan\Type\Php\ArrayNextDynamicReturnTypeExtension' => [['0208']], + 'PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension' => [['0209']], + 'PHPStan\Type\Php\ArrayRandFunctionReturnTypeExtension' => [['0210']], + 'PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension' => [['0211']], + 'PHPStan\Type\Php\ArrayReplaceFunctionReturnTypeExtension' => [['0212']], + 'PHPStan\Type\Php\ArrayReverseFunctionReturnTypeExtension' => [['0213']], + 'PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension' => [['0214']], + 'PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension' => [['0215']], + 'PHPStan\Type\Php\ArraySpliceFunctionReturnTypeExtension' => [['0216']], + 'PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension' => [['0217']], + 'PHPStan\Type\Php\ArraySearchFunctionTypeSpecifyingExtension' => [['0218']], + 'PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension' => [['0219']], + 'PHPStan\Type\Php\ArraySumFunctionDynamicReturnTypeExtension' => [['0220']], + 'PHPStan\Type\DynamicFunctionThrowTypeExtension' => [['0221', '0266', '0268']], + 'PHPStan\Type\Php\AssertThrowTypeExtension' => [['0221']], + 'PHPStan\Type\DynamicStaticMethodReturnTypeExtension' => [ + [ + '0222', + '0225', + '0227', + '0240', + '0346', + '0352', + '0457', + '0458', + '0459', + '0460', + '0461', + '0463', + '0471', + '0493', + ], + ], + 'PHPStan\Type\Php\BackedEnumFromMethodDynamicReturnTypeExtension' => [['0222']], + 'PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension' => [['0223']], + 'PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension' => [['0224']], + 'PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension' => [['0225']], + 'PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension' => [['0226']], + 'PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension' => [['0227']], + 'PHPStan\Type\Php\CompactFunctionReturnTypeExtension' => [['0228']], + 'PHPStan\Type\Php\ConstantFunctionReturnTypeExtension' => [['0229']], + 'PHPStan\Type\Php\ConstantHelper' => [['0230']], + 'PHPStan\Type\Php\CountFunctionReturnTypeExtension' => [['0231']], + 'PHPStan\Type\Php\CountCharsFunctionDynamicReturnTypeExtension' => [['0232']], + 'PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension' => [['0233']], + 'PHPStan\Type\Php\CurlGetinfoFunctionDynamicReturnTypeExtension' => [['0234']], + 'PHPStan\Type\Php\DateFunctionReturnTypeHelper' => [['0235']], + 'PHPStan\Type\Php\DateFormatFunctionReturnTypeExtension' => [['0236']], + 'PHPStan\Type\Php\DateFormatMethodReturnTypeExtension' => [['0237']], + 'PHPStan\Type\Php\DateFunctionReturnTypeExtension' => [['0238']], + 'PHPStan\Type\DynamicStaticMethodThrowTypeExtension' => [ + ['0239', '0245', '0248', '0277', '0278', '0279', '0280', '0283'], + ], + 'PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension' => [['0239']], + 'PHPStan\Type\Php\DateIntervalDynamicReturnTypeExtension' => [['0240']], + 'PHPStan\Type\Php\DateTimeCreateDynamicReturnTypeExtension' => [['0241']], + 'PHPStan\Type\Php\DateTimeDynamicReturnTypeExtension' => [['0242']], + 'PHPStan\Type\Php\DateTimeModifyReturnTypeExtension' => [['0243', '0244']], + 'PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension' => [['0245']], + 'PHPStan\Type\DynamicMethodThrowTypeExtension' => [['0246', '0247', '0250']], + 'PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension' => [['0246']], + 'PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension' => [['0247']], + 'PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension' => [['0248']], + 'PHPStan\Type\Php\DsMapDynamicReturnTypeExtension' => [['0249']], + 'PHPStan\Type\Php\DsMapDynamicMethodThrowTypeExtension' => [['0250']], + 'PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension' => [['0251']], + 'PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension' => [['0252']], + 'PHPStan\Type\Php\FilterFunctionReturnTypeHelper' => [['0253']], + 'PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension' => [['0254']], + 'PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension' => [['0255']], + 'PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension' => [['0256']], + 'PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension' => [['0257']], + 'PHPStan\Type\Php\GetClassDynamicReturnTypeExtension' => [['0258']], + 'PHPStan\Type\Php\GetDebugTypeFunctionReturnTypeExtension' => [['0259']], + 'PHPStan\Type\Php\GetDefinedVarsFunctionReturnTypeExtension' => [['0260']], + 'PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension' => [['0261']], + 'PHPStan\Type\Php\GettypeFunctionReturnTypeExtension' => [['0262']], + 'PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension' => [['0263']], + 'PHPStan\Type\Php\HashFunctionsReturnTypeExtension' => [['0264']], + 'PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension' => [['0265']], + 'PHPStan\Type\Php\IntdivThrowTypeExtension' => [['0266']], + 'PHPStan\Type\Php\IniGetReturnTypeExtension' => [['0267']], + 'PHPStan\Type\Php\JsonThrowTypeExtension' => [['0268']], + 'PHPStan\Type\FunctionParameterOutTypeExtension' => [['0269', '0270', '0272']], + 'PHPStan\Type\Php\OpenSslEncryptParameterOutTypeExtension' => [['0269']], + 'PHPStan\Type\Php\ParseStrParameterOutTypeExtension' => [['0270']], + 'PHPStan\Type\Php\PregMatchTypeSpecifyingExtension' => [['0271']], + 'PHPStan\Type\Php\PregMatchParameterOutTypeExtension' => [['0272']], + 'PHPStan\Type\FunctionParameterClosureTypeExtension' => [['0273']], + 'PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension' => [['0273']], + 'PHPStan\Type\Php\RegexArrayShapeMatcher' => [['0274']], + 'PHPStan\Type\Regex\RegexGroupParser' => [['0275']], + 'PHPStan\Type\Regex\RegexExpressionHelper' => [['0276']], + 'PHPStan\Type\Php\ReflectionClassConstructorThrowTypeExtension' => [['0277']], + 'PHPStan\Type\Php\ReflectionFunctionConstructorThrowTypeExtension' => [['0278']], + 'PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension' => [['0279']], + 'PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension' => [['0280']], + 'PHPStan\Type\Php\StrContainingTypeSpecifyingExtension' => [['0281']], + 'PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension' => [['0282']], + 'PHPStan\Type\Php\SimpleXMLElementConstructorThrowTypeExtension' => [['0283']], + 'PHPStan\Type\Php\StatDynamicReturnTypeExtension' => [['0284']], + 'PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension' => [['0285']], + 'PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension' => [['0286']], + 'PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension' => [['0287']], + 'PHPStan\Type\Php\NumberFormatFunctionDynamicReturnTypeExtension' => [['0288']], + 'PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension' => [['0289']], + 'PHPStan\Type\Php\PregFilterFunctionReturnTypeExtension' => [['0290']], + 'PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension' => [['0291']], + 'PHPStan\Type\MethodTypeSpecifyingExtension' => [['0292', '0544']], + 'PHPStan\Type\Php\ReflectionClassIsSubclassOfTypeSpecifyingExtension' => [['0292']], + 'PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension' => [['0293']], + 'PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension' => [['0294']], + 'PHPStan\Type\Php\LtrimFunctionReturnTypeExtension' => [['0295']], + 'PHPStan\Type\Php\MbFunctionsReturnTypeExtension' => [['0296']], + 'PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension' => [['0297']], + 'PHPStan\Type\Php\MbSubstituteCharacterDynamicReturnTypeExtension' => [['0298']], + 'PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension' => [['0299']], + 'PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension' => [['0300']], + 'PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension' => [['0301']], + 'PHPStan\Type\Php\ImplodeFunctionReturnTypeExtension' => [['0302']], + 'PHPStan\Type\Php\NonEmptyStringFunctionsReturnTypeExtension' => [['0303']], + 'PHPStan\Type\Php\SetTypeFunctionTypeSpecifyingExtension' => [['0304']], + 'PHPStan\Type\Php\StrCaseFunctionsReturnTypeExtension' => [['0305']], + 'PHPStan\Type\Php\StrlenFunctionReturnTypeExtension' => [['0306']], + 'PHPStan\Type\Php\StrIncrementDecrementFunctionReturnTypeExtension' => [['0307']], + 'PHPStan\Type\Php\StrPadFunctionReturnTypeExtension' => [['0308']], + 'PHPStan\Type\Php\StrRepeatFunctionReturnTypeExtension' => [['0309']], + 'PHPStan\Type\Php\SubstrDynamicReturnTypeExtension' => [['0310']], + 'PHPStan\Type\Php\ThrowableReturnTypeExtension' => [['0311']], + 'PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension' => [['0312']], + 'PHPStan\Type\Php\TriggerErrorDynamicReturnTypeExtension' => [['0313']], + 'PHPStan\Type\Php\TrimFunctionDynamicReturnTypeExtension' => [['0314']], + 'PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension' => [['0315']], + 'PHPStan\Type\Php\PowFunctionReturnTypeExtension' => [['0316']], + 'PHPStan\Type\Php\RoundFunctionReturnTypeExtension' => [['0317']], + 'PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension' => [['0318']], + 'PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension' => [['0319']], + 'PHPStan\Type\Php\RangeFunctionReturnTypeExtension' => [['0320']], + 'PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension' => [['0321']], + 'PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension' => [['0322']], + 'PHPStan\Type\Php\ClassImplementsFunctionReturnTypeExtension' => [['0323']], + 'PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension' => [['0324']], + 'PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension' => [['0325']], + 'PHPStan\Type\Php\FunctionExistsFunctionTypeSpecifyingExtension' => [['0326']], + 'PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension' => [['0327']], + 'PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension' => [['0328']], + 'PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension' => [['0329']], + 'PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension' => [['0330']], + 'PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension' => [['0331']], + 'PHPStan\Type\Php\IteratorToArrayFunctionReturnTypeExtension' => [['0332']], + 'PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension' => [['0333']], + 'PHPStan\Type\Php\IsAFunctionTypeSpecifyingHelper' => [['0334']], + 'PHPStan\Type\Php\CtypeDigitFunctionTypeSpecifyingExtension' => [['0335']], + 'PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension' => [['0336']], + 'PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension' => [['0337']], + 'PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension' => [['0338']], + 'PHPStan\Type\Php\SimpleXMLElementXpathMethodReturnTypeExtension' => [['0339']], + 'PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension' => [['0340']], + 'PHPStan\Type\Php\StrTokFunctionReturnTypeExtension' => [['0341']], + 'PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension' => [['0342']], + 'PHPStan\Type\Php\SscanfFunctionDynamicReturnTypeExtension' => [['0343']], + 'PHPStan\Type\Php\StrvalFamilyFunctionReturnTypeExtension' => [['0344']], + 'PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension' => [['0345']], + 'PHPStan\Type\Php\XMLReaderOpenReturnTypeExtension' => [['0346']], + 'PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension' => [['0347', '0348', '0349', '0350', '0351']], + 'PHPStan\Type\Php\DatePeriodConstructorReturnTypeExtension' => [['0352']], + 'PHPStan\Type\ClosureTypeFactory' => [['0353']], + 'PHPStan\Type\Constant\OversizedArrayBuilder' => [['0354']], + 'PHPStan\Rules\Functions\PrintfHelper' => [['0355']], + 'PHPStan\Analyser\TypeSpecifier' => [['typeSpecifier']], + 'PHPStan\Analyser\TypeSpecifierFactory' => [['typeSpecifierFactory']], + 'PHPStan\File\RelativePathHelper' => [ + 0 => ['relativePathHelper'], + 2 => [1 => 'simpleRelativePathHelper', 'parentDirectoryRelativePathHelper'], + ], + 'PHPStan\File\ParentDirectoryRelativePathHelper' => [2 => ['parentDirectoryRelativePathHelper']], + 'PHPStan\Cache\CacheStorage' => [2 => ['cacheStorage']], + 'PHPStan\Cache\FileCacheStorage' => [2 => ['cacheStorage']], + 'PHPStan\Parser\Parser' => [ + 2 => [ + 'currentPhpVersionRichParser', + 'currentPhpVersionSimpleParser', + 'currentPhpVersionSimpleDirectParser', + 'defaultAnalysisParser', + 'php8Parser', + 'pathRoutingParser', + 'freshStubParser', + 'stubParser', + ], + ], + 'PHPStan\Parser\RichParser' => [2 => ['currentPhpVersionRichParser']], + 'PHPStan\Parser\CleaningParser' => [2 => ['currentPhpVersionSimpleParser']], + 'PHPStan\Parser\SimpleParser' => [2 => ['currentPhpVersionSimpleDirectParser', 'php8Parser']], + 'PHPStan\Parser\CachedParser' => [2 => ['defaultAnalysisParser', 'stubParser']], + 'PhpParser\Parser' => [2 => ['phpParserDecorator', 'currentPhpVersionPhpParser', 'php8PhpParser']], + 'PHPStan\Parser\PhpParserDecorator' => [2 => ['phpParserDecorator']], + 'PhpParser\Lexer' => [2 => ['currentPhpVersionLexer', 'php8Lexer']], + 'PhpParser\ParserAbstract' => [2 => ['currentPhpVersionPhpParser', 'php8PhpParser']], + 'PHPStan\Parser\PhpParserFactory' => [2 => ['currentPhpVersionPhpParserFactory']], + 'PHPStan\Rules\Registry' => [['registry']], + 'PHPStan\Rules\LazyRegistry' => [['registry']], + 'PHPStan\PhpDoc\StubPhpDocProvider' => [['stubPhpDocProvider']], + 'PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory' => [['reflectionProviderFactory']], + 'PHPStan\Reflection\ReflectionProvider' => [0 => ['reflectionProvider'], 2 => [1 => 'betterReflectionProvider']], + 'PHPStan\BetterReflection\SourceLocator\Type\SourceLocator' => [2 => ['betterReflectionSourceLocator']], + 'PHPStan\BetterReflection\Reflector\Reflector' => [ + 0 => ['originalBetterReflectionReflector'], + 2 => [1 => 'betterReflectionReflector', 'nodeScopeResolverReflector'], + ], + 'PHPStan\BetterReflection\Reflector\DefaultReflector' => [['originalBetterReflectionReflector']], + 'PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector' => [ + 2 => ['betterReflectionReflector', 'nodeScopeResolverReflector'], + ], + 'PHPStan\Reflection\BetterReflection\BetterReflectionProvider' => [2 => ['betterReflectionProvider']], + 'PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory' => [['0356']], + 'PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory' => [['0357']], + 'PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory' => [['0358']], + 'PHPStan\BetterReflection\SourceLocator\SourceStubber\SourceStubber' => [1 => ['0359', '0360']], + 'PHPStan\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber' => [['0359']], + 'PHPStan\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber' => [['0360']], + 'PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory' => [['0361']], + 'PhpParser\Lexer\Emulative' => [2 => ['php8Lexer']], + 'PhpParser\Parser\Php8' => [2 => ['php8PhpParser']], + 'PHPStan\Parser\PathRoutingParser' => [2 => ['pathRoutingParser']], + 'PHPStan\Parser\StubParser' => [2 => ['freshStubParser']], + 'PHPStan\Diagnose\PHPStanDiagnoseExtension' => [2 => ['phpstanDiagnoseExtension']], + 'PHPStan\Command\ErrorFormatter\ErrorFormatter' => [ + [ + 'errorFormatter.raw', + 'errorFormatter.table', + 'errorFormatter.checkstyle', + 'errorFormatter.json', + 'errorFormatter.junit', + 'errorFormatter.prettyJson', + 'errorFormatter.gitlab', + 'errorFormatter.github', + 'errorFormatter.teamcity', + ], + ['0362'], + ], + 'PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter' => [['0362']], + 'PHPStan\Command\ErrorFormatter\RawErrorFormatter' => [['errorFormatter.raw']], + '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\ExistingClassInClassExtendsRule' => [['0363']], + 'PHPStan\Rules\Classes\ExistingClassInInstanceOfRule' => [['0364']], + 'PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule' => [['0365']], + 'PHPStan\Rules\Functions\CallToNonExistentFunctionRule' => [['0366']], + 'PHPStan\Rules\Constants\OverridingConstantRule' => [['0367']], + 'PHPStan\Rules\Methods\OverridingMethodRule' => [['0368']], + 'PHPStan\Rules\Missing\MissingReturnRule' => [['0369']], + 'PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule' => [['0370']], + 'PHPStan\Rules\Namespaces\ExistingNamesInUseRule' => [['0371']], + 'PHPStan\Rules\Properties\AccessPropertiesRule' => [['0372']], + 'PHPStan\Rules\Properties\AccessStaticPropertiesRule' => [['0373']], + 'PHPStan\Rules\Properties\ExistingClassesInPropertiesRule' => [['0374']], + 'PHPStan\Rules\Functions\FunctionCallableRule' => [['0375']], + 'PHPStan\Rules\Properties\OverridingPropertyRule' => [['0376']], + 'PHPStan\Rules\Properties\SetPropertyHookParameterRule' => [['0377']], + 'PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule' => [['0378']], + 'PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule' => [['0379']], + 'PHPStan\Rules\Variables\CompactVariablesRule' => [['0380']], + 'PHPStan\Rules\Variables\DefinedVariableRule' => [['0381']], + 'PHPStan\Rules\Keywords\RequireFileExistsRule' => [['0382']], + 'PHPStan\Rules\Classes\MixinRule' => [['0383']], + 'PHPStan\Rules\PhpDoc\RequireExtendsCheck' => [['0384']], + 'PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule' => [['0385']], + 'PHPStan\Rules\Functions\CallCallablesRule' => [['0386']], + 'PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule' => [['0387']], + 'PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule' => [['0388']], + 'PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule' => [['0389']], + 'PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule' => [['0390']], + 'PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule' => [['0391']], + 'PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule' => [['0392']], + 'PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule' => [['0393']], + 'PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule' => [['0394']], + 'PHPStan\Rules\Exceptions\ThrowsVoidPropertyHookWithExplicitThrowPointRule' => [['0395']], + 'PHPStan\Rules\Generators\YieldFromTypeRule' => [['0396']], + 'PHPStan\Rules\Generators\YieldInGeneratorRule' => [['0397']], + 'PHPStan\Rules\Classes\ImpossibleInstanceOfRule' => [['0398']], + 'PHPStan\Rules\Comparison\BooleanAndConstantConditionRule' => [['0399']], + 'PHPStan\Rules\Comparison\BooleanOrConstantConditionRule' => [['0400']], + 'PHPStan\Rules\Comparison\BooleanNotConstantConditionRule' => [['0401']], + 'PHPStan\Collectors\Collector' => [ + [ + '0402', + '0403', + '0404', + '0405', + '0406', + '0407', + '0408', + '0429', + '0430', + '0516', + '0517', + '0518', + '0519', + '0520', + ], + ], + 'PHPStan\Rules\DeadCode\ConstructorWithoutImpurePointsCollector' => [['0402']], + 'PHPStan\Rules\DeadCode\PossiblyPureNewCollector' => [['0403']], + 'PHPStan\Rules\DeadCode\FunctionWithoutImpurePointsCollector' => [['0404']], + 'PHPStan\Rules\DeadCode\PossiblyPureFuncCallCollector' => [['0405']], + 'PHPStan\Rules\DeadCode\MethodWithoutImpurePointsCollector' => [['0406']], + 'PHPStan\Rules\DeadCode\PossiblyPureMethodCallCollector' => [['0407']], + 'PHPStan\Rules\DeadCode\PossiblyPureStaticCallCollector' => [['0408']], + 'PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule' => [['0409']], + 'PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule' => [['0410']], + 'PHPStan\Rules\Comparison\ElseIfConstantConditionRule' => [['0411']], + 'PHPStan\Rules\Comparison\IfConstantConditionRule' => [['0412']], + 'PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule' => [['0413']], + 'PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule' => [['0414']], + 'PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule' => [['0415']], + 'PHPStan\Rules\Comparison\LogicalXorConstantConditionRule' => [['0416']], + 'PHPStan\Rules\Comparison\MatchExpressionRule' => [['0417']], + 'PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule' => [['0418']], + 'PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule' => [['0419']], + 'PHPStan\Rules\Comparison\ConstantLooseComparisonRule' => [['0420']], + 'PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule' => [['0421']], + 'PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule' => [['0422']], + 'PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule' => [['0423']], + 'PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule' => [['0424']], + 'PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule' => [['0425']], + 'PHPStan\Rules\Exceptions\TooWidePropertyHookThrowTypeRule' => [['0426']], + 'PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule' => [['0427']], + 'PHPStan\Rules\Properties\NullsafePropertyFetchRule' => [['0428']], + 'PHPStan\Rules\Traits\TraitDeclarationCollector' => [['0429']], + 'PHPStan\Rules\Traits\TraitUseCollector' => [['0430']], + 'PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule' => [['0431']], + 'PHPStan\Rules\Functions\RandomIntParametersRule' => [['0432']], + 'PHPStan\Rules\Functions\ArrayFilterRule' => [['0433']], + 'PHPStan\Rules\Functions\ArrayValuesRule' => [['0434']], + 'PHPStan\Rules\Functions\ParameterCastableToNumberRule' => [['0435']], + 'Larastan\Larastan\Methods\RelationForwardsCallsExtension' => [['0436']], + 'Larastan\Larastan\Methods\ModelForwardsCallsExtension' => [['0437']], + 'Larastan\Larastan\Methods\EloquentBuilderForwardsCallsExtension' => [['0438']], + 'Larastan\Larastan\Methods\HigherOrderTapProxyExtension' => [['0439']], + 'Larastan\Larastan\Methods\HigherOrderCollectionProxyExtension' => [['0440']], + 'Larastan\Larastan\Methods\StorageMethodsClassReflectionExtension' => [['0441']], + 'Larastan\Larastan\Methods\Extension' => [['0442']], + 'Larastan\Larastan\Methods\ModelFactoryMethodsClassReflectionExtension' => [['0443']], + 'Larastan\Larastan\Methods\RedirectResponseMethodsClassReflectionExtension' => [['0444']], + 'Larastan\Larastan\Methods\MacroMethodsClassReflectionExtension' => [['0445']], + 'Larastan\Larastan\Methods\ViewWithMethodsClassReflectionExtension' => [['0446']], + 'Larastan\Larastan\Properties\ModelAccessorExtension' => [['0447']], + 'Larastan\Larastan\Properties\ModelPropertyExtension' => [['0448']], + 'Larastan\Larastan\Properties\HigherOrderCollectionProxyPropertyExtension' => [['0449']], + 'Larastan\Larastan\ReturnTypes\HigherOrderTapProxyExtension' => [['0450']], + 'Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension' => [ + ['0451', '0452', '0453', '0454'], + ], + 'Larastan\Larastan\Properties\ModelRelationsExtension' => [['0455']], + 'Larastan\Larastan\ReturnTypes\ModelOnlyDynamicMethodReturnTypeExtension' => [['0456']], + 'Larastan\Larastan\ReturnTypes\ModelFactoryDynamicStaticMethodReturnTypeExtension' => [['0457']], + 'Larastan\Larastan\ReturnTypes\ModelDynamicStaticMethodReturnTypeExtension' => [['0458']], + 'Larastan\Larastan\ReturnTypes\AppMakeDynamicReturnTypeExtension' => [['0459']], + 'Larastan\Larastan\ReturnTypes\AuthExtension' => [['0460']], + 'Larastan\Larastan\ReturnTypes\GuardDynamicStaticMethodReturnTypeExtension' => [['0461']], + 'Larastan\Larastan\ReturnTypes\AuthManagerExtension' => [['0462']], + 'Larastan\Larastan\ReturnTypes\DateExtension' => [['0463']], + 'Larastan\Larastan\ReturnTypes\GuardExtension' => [['0464']], + 'Larastan\Larastan\ReturnTypes\RequestFileExtension' => [['0465']], + 'Larastan\Larastan\ReturnTypes\RequestRouteExtension' => [['0466']], + 'Larastan\Larastan\ReturnTypes\RequestUserExtension' => [['0467']], + 'Larastan\Larastan\ReturnTypes\EloquentBuilderExtension' => [['0468']], + 'Larastan\Larastan\ReturnTypes\RelationFindExtension' => [['0469']], + 'Larastan\Larastan\ReturnTypes\RelationCollectionExtension' => [['0470']], + 'Larastan\Larastan\ReturnTypes\ModelFindExtension' => [['0471']], + 'Larastan\Larastan\ReturnTypes\BuilderModelFindExtension' => [['0472']], + 'Larastan\Larastan\ReturnTypes\TestCaseExtension' => [['0473']], + 'Larastan\Larastan\Support\CollectionHelper' => [['0474']], + 'Larastan\Larastan\ReturnTypes\Helpers\AuthExtension' => [['0475']], + 'Larastan\Larastan\ReturnTypes\Helpers\CollectExtension' => [['0476']], + 'Larastan\Larastan\ReturnTypes\Helpers\NowAndTodayExtension' => [['0477']], + 'Larastan\Larastan\ReturnTypes\Helpers\ResponseExtension' => [['0478']], + 'Larastan\Larastan\ReturnTypes\Helpers\ValidatorExtension' => [['0479']], + 'Larastan\Larastan\ReturnTypes\Helpers\LiteralExtension' => [['0480']], + 'Larastan\Larastan\ReturnTypes\CollectionFilterRejectDynamicReturnTypeExtension' => [['0481']], + 'Larastan\Larastan\ReturnTypes\CollectionWhereNotNullDynamicReturnTypeExtension' => [['0482']], + 'Larastan\Larastan\ReturnTypes\NewModelQueryDynamicMethodReturnTypeExtension' => [['0483']], + 'Larastan\Larastan\ReturnTypes\FactoryDynamicMethodReturnTypeExtension' => [['0484']], + 'Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension' => [['0485', '0486', '0487', '0488']], + 'Larastan\Larastan\ReturnTypes\Helpers\AppExtension' => [['0489']], + 'Larastan\Larastan\ReturnTypes\Helpers\ValueExtension' => [['0490']], + 'Larastan\Larastan\ReturnTypes\Helpers\StrExtension' => [['0491']], + 'Larastan\Larastan\ReturnTypes\Helpers\TapExtension' => [['0492']], + 'Larastan\Larastan\ReturnTypes\StorageDynamicStaticMethodReturnTypeExtension' => [['0493']], + 'PHPStan\PhpDoc\TypeNodeResolverExtension' => [['0494', '0495', '0501', '0503', '0542']], + 'Larastan\Larastan\Types\GenericEloquentCollectionTypeNodeResolverExtension' => [['0494']], + 'Larastan\Larastan\Types\ViewStringTypeNodeResolverExtension' => [['0495']], + 'Larastan\Larastan\Rules\OctaneCompatibilityRule' => [['0496']], + 'Larastan\Larastan\Rules\NoEnvCallsOutsideOfConfigRule' => [['0497']], + 'Larastan\Larastan\Rules\NoModelMakeRule' => [['0498']], + 'Larastan\Larastan\Rules\NoUnnecessaryCollectionCallRule' => [['0499']], + 'Larastan\Larastan\Rules\ModelAppendsRule' => [['0500']], + 'Larastan\Larastan\Types\GenericEloquentBuilderTypeNodeResolverExtension' => [['0501']], + 'Larastan\Larastan\ReturnTypes\AppEnvironmentReturnTypeExtension' => [['0502']], + 'Larastan\Larastan\Types\ModelProperty\ModelPropertyTypeNodeResolverExtension' => [['0503']], + 'Larastan\Larastan\Properties\MigrationHelper' => [['0504']], + 'Larastan\Larastan\Properties\SquashedMigrationHelper' => [['0505']], + 'Larastan\Larastan\Properties\ModelCastHelper' => [['0506']], + 'Larastan\Larastan\Properties\ModelPropertyHelper' => [['0507']], + 'Larastan\Larastan\Rules\ModelRuleHelper' => [['0508']], + 'Larastan\Larastan\Methods\BuilderHelper' => [['0509']], + 'Larastan\Larastan\Rules\RelationExistenceRule' => [['0510']], + 'Larastan\Larastan\Rules\CheckDispatchArgumentTypesCompatibleWithClassConstructorRule' => [['0511', '0512']], + 'Larastan\Larastan\Properties\Schema\PhpMyAdminDataTypeToPhpTypeConverter' => [['0513']], + 'Larastan\Larastan\LarastanStubFilesExtension' => [['0514']], + 'Larastan\Larastan\Rules\UnusedViewsRule' => [['0515']], + 'Larastan\Larastan\Collectors\UsedViewFunctionCollector' => [['0516']], + 'Larastan\Larastan\Collectors\UsedEmailViewCollector' => [['0517']], + 'Larastan\Larastan\Collectors\UsedViewMakeCollector' => [['0518']], + 'Larastan\Larastan\Collectors\UsedViewFacadeMakeCollector' => [['0519']], + 'Larastan\Larastan\Collectors\UsedRouteFacadeViewCollector' => [['0520']], + 'Larastan\Larastan\Collectors\UsedViewInAnotherViewCollector' => [['0521']], + 'Larastan\Larastan\Support\ViewFileHelper' => [['0522']], + 'Larastan\Larastan\ReturnTypes\ApplicationMakeDynamicReturnTypeExtension' => [['0523']], + 'Larastan\Larastan\ReturnTypes\ContainerMakeDynamicReturnTypeExtension' => [['0524']], + 'Larastan\Larastan\ReturnTypes\ConsoleCommand\ArgumentDynamicReturnTypeExtension' => [['0525']], + 'Larastan\Larastan\ReturnTypes\ConsoleCommand\HasArgumentDynamicReturnTypeExtension' => [['0526']], + 'Larastan\Larastan\ReturnTypes\ConsoleCommand\OptionDynamicReturnTypeExtension' => [['0527']], + 'Larastan\Larastan\ReturnTypes\ConsoleCommand\HasOptionDynamicReturnTypeExtension' => [['0528']], + 'Larastan\Larastan\ReturnTypes\TranslatorGetReturnTypeExtension' => [['0529']], + 'Larastan\Larastan\ReturnTypes\TransHelperReturnTypeExtension' => [['0530']], + 'Larastan\Larastan\ReturnTypes\DoubleUnderscoreHelperReturnTypeExtension' => [['0531']], + 'Larastan\Larastan\ReturnTypes\AppMakeHelper' => [['0532']], + 'Larastan\Larastan\Internal\ConsoleApplicationResolver' => [['0533']], + 'Larastan\Larastan\Internal\ConsoleApplicationHelper' => [['0534']], + 'Larastan\Larastan\Support\HigherOrderCollectionProxyHelper' => [['0535']], + 'Carbon\PHPStan\MacroExtension' => [['0536']], + 'PHPStan\Rules\Deprecations\DeprecatedClassHelper' => [['0537']], + 'PHPStan\DependencyInjection\LazyDeprecatedScopeResolverProvider' => [['0538']], + 'PHPStan\Rules\Deprecations\DeprecatedScopeHelper' => [['0539']], + 'PHPStan\Rules\Deprecations\DeprecatedScopeResolver' => [['0540']], + 'PHPStan\Rules\Deprecations\DefaultDeprecatedScopeResolver' => [['0540']], + 'PHPStan\Rules\Deprecations\CallWithDeprecatedIniOptionRule' => [['0541']], + 'PHPStan\PhpDoc\TypeNodeResolverAwareExtension' => [['0542']], + 'PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension' => [['0542']], + 'PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension' => [['0543']], + 'PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension' => [['0544']], + 'PHPStan\Type\StaticMethodTypeSpecifyingExtension' => [['0545']], + 'PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension' => [['0545']], + 'PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension' => [['0546']], + 'PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension' => [['0547']], + 'PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension' => [['0548']], + 'PHPStan\Rules\PHPUnit\CoversHelper' => [['0549']], + 'PHPStan\Rules\PHPUnit\AnnotationHelper' => [['0550']], + 'PHPStan\Rules\PHPUnit\DataProviderHelper' => [['0551']], + 'PHPStan\Rules\PHPUnit\DataProviderHelperFactory' => [['0552']], + 'PHPStan\Rules\PHPUnit\DataProviderDeclarationRule' => [['0553']], + 'PHPStan\Rules\PHPUnit\AssertEqualsIsDiscouragedRule' => [['0554']], + ]; + + + public function __construct(array $params = []) + { + parent::__construct($params); + } + + + public function createService01(): PhpParser\BuilderFactory + { + return new PhpParser\BuilderFactory; + } + + + public function createService02(): PHPStan\Parser\LexerFactory + { + return new PHPStan\Parser\LexerFactory($this->getService('026')); + } + + + public function createService03(): PhpParser\NodeVisitor\NameResolver + { + return new PhpParser\NodeVisitor\NameResolver(options: ['preserveOriginalNames' => true]); + } + + + public function createService04(): PHPStan\Parser\AnonymousClassVisitor + { + return new PHPStan\Parser\AnonymousClassVisitor; + } + + + public function createService05(): PHPStan\Parser\ArrayFilterArgVisitor + { + return new PHPStan\Parser\ArrayFilterArgVisitor; + } + + + public function createService06(): PHPStan\Parser\ArrayFindArgVisitor + { + return new PHPStan\Parser\ArrayFindArgVisitor; + } + + + public function createService07(): PHPStan\Parser\ArrayMapArgVisitor + { + return new PHPStan\Parser\ArrayMapArgVisitor; + } + + + public function createService08(): PHPStan\Parser\ArrayWalkArgVisitor + { + return new PHPStan\Parser\ArrayWalkArgVisitor; + } + + + public function createService09(): PHPStan\Parser\ClosureArgVisitor + { + return new PHPStan\Parser\ClosureArgVisitor; + } + + + public function createService010(): PHPStan\Parser\ClosureBindToVarVisitor + { + return new PHPStan\Parser\ClosureBindToVarVisitor; + } + + + public function createService011(): PHPStan\Parser\ClosureBindArgVisitor + { + return new PHPStan\Parser\ClosureBindArgVisitor; + } + + + public function createService012(): PHPStan\Parser\CurlSetOptArgVisitor + { + return new PHPStan\Parser\CurlSetOptArgVisitor; + } + + + public function createService013(): PHPStan\Parser\ArrowFunctionArgVisitor + { + return new PHPStan\Parser\ArrowFunctionArgVisitor; + } + + + public function createService014(): PHPStan\Parser\MagicConstantParamDefaultVisitor + { + return new PHPStan\Parser\MagicConstantParamDefaultVisitor; + } + + + public function createService015(): PHPStan\Parser\NewAssignedToPropertyVisitor + { + return new PHPStan\Parser\NewAssignedToPropertyVisitor; + } + + + public function createService016(): PHPStan\Parser\ParentStmtTypesVisitor + { + return new PHPStan\Parser\ParentStmtTypesVisitor; + } + + + public function createService017(): PHPStan\Parser\StandaloneThrowExprVisitor + { + return new PHPStan\Parser\StandaloneThrowExprVisitor; + } + + + public function createService018(): PHPStan\Parser\TryCatchTypeVisitor + { + return new PHPStan\Parser\TryCatchTypeVisitor; + } + + + public function createService019(): PHPStan\Parser\LastConditionVisitor + { + return new PHPStan\Parser\LastConditionVisitor; + } + + + public function createService020(): PHPStan\Parser\TypeTraverserInstanceofVisitor + { + return new PHPStan\Parser\TypeTraverserInstanceofVisitor; + } + + + public function createService021(): PHPStan\Parser\VariadicMethodsVisitor + { + return new PHPStan\Parser\VariadicMethodsVisitor; + } + + + public function createService022(): PHPStan\Parser\VariadicFunctionsVisitor + { + return new PHPStan\Parser\VariadicFunctionsVisitor; + } + + + public function createService023(): PHPStan\Node\Printer\ExprPrinter + { + return new PHPStan\Node\Printer\ExprPrinter($this->getService('024')); + } + + + public function createService024(): PHPStan\Node\Printer\Printer + { + return new PHPStan\Node\Printer\Printer; + } + + + public function createService025(): PHPStan\Broker\AnonymousClassNameHelper + { + return new PHPStan\Broker\AnonymousClassNameHelper($this->getService('084'), $this->getService('simpleRelativePathHelper')); + } + + + public function createService026(): PHPStan\Php\PhpVersion + { + return $this->getService('027')->create(); + } + + + public function createService027(): PHPStan\Php\PhpVersionFactory + { + return $this->getService('028')->create(); + } + + + public function createService028(): PHPStan\Php\PhpVersionFactoryFactory + { + return new PHPStan\Php\PhpVersionFactoryFactory(null, ['/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify']); + } + + + public function createService029(): PHPStan\Php\ComposerPhpVersionFactory + { + return new PHPStan\Php\ComposerPhpVersionFactory(['/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify']); + } + + + public function createService030(): PHPStan\PhpDocParser\ParserConfig + { + return new PHPStan\PhpDocParser\ParserConfig(['lines' => true]); + } + + + public function createService031(): PHPStan\PhpDocParser\Lexer\Lexer + { + return new PHPStan\PhpDocParser\Lexer\Lexer($this->getService('030')); + } + + + public function createService032(): PHPStan\PhpDocParser\Parser\TypeParser + { + return new PHPStan\PhpDocParser\Parser\TypeParser($this->getService('030'), $this->getService('033')); + } + + + public function createService033(): PHPStan\PhpDocParser\Parser\ConstExprParser + { + return new PHPStan\PhpDocParser\Parser\ConstExprParser($this->getService('030')); + } + + + public function createService034(): PHPStan\PhpDocParser\Parser\PhpDocParser + { + return new PHPStan\PhpDocParser\Parser\PhpDocParser( + $this->getService('030'), + $this->getService('032'), + $this->getService('033') + ); + } + + + public function createService035(): PHPStan\PhpDocParser\Printer\Printer + { + return new PHPStan\PhpDocParser\Printer\Printer; + } + + + public function createService036(): PHPStan\PhpDoc\PhpDocInheritanceResolver + { + return new PHPStan\PhpDoc\PhpDocInheritanceResolver($this->getService('0182'), $this->getService('stubPhpDocProvider')); + } + + + public function createService037(): PHPStan\PhpDoc\PhpDocNodeResolver + { + return new PHPStan\PhpDoc\PhpDocNodeResolver($this->getService('040'), $this->getService('039'), $this->getService('0168')); + } + + + public function createService038(): PHPStan\PhpDoc\PhpDocStringResolver + { + return new PHPStan\PhpDoc\PhpDocStringResolver($this->getService('031'), $this->getService('034')); + } + + + public function createService039(): PHPStan\PhpDoc\ConstExprNodeResolver + { + return new PHPStan\PhpDoc\ConstExprNodeResolver($this->getService('0121'), $this->getService('095')); + } + + + public function createService040(): PHPStan\PhpDoc\TypeNodeResolver + { + return new PHPStan\PhpDoc\TypeNodeResolver( + $this->getService('041'), + $this->getService('0121'), + $this->getService('0184'), + $this->getService('059'), + $this->getService('095') + ); + } + + + public function createService041(): PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider + { + return new PHPStan\PhpDoc\LazyTypeNodeResolverExtensionRegistryProvider($this->getService('074')); + } + + + public function createService042(): PHPStan\PhpDoc\TypeStringResolver + { + return new PHPStan\PhpDoc\TypeStringResolver($this->getService('031'), $this->getService('032'), $this->getService('040')); + } + + + public function createService043(): PHPStan\PhpDoc\StubValidator + { + return new PHPStan\PhpDoc\StubValidator($this->getService('076')); + } + + + public function createService044(): PHPStan\PhpDoc\SocketSelectStubFilesExtension + { + return new PHPStan\PhpDoc\SocketSelectStubFilesExtension($this->getService('026')); + } + + + public function createService045(): PHPStan\PhpDoc\DefaultStubFilesProvider + { + return new PHPStan\PhpDoc\DefaultStubFilesProvider( + $this->getService('074'), + [ + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionAttribute.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionClassConstant.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionFunctionAbstract.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionMethod.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionParameter.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionProperty.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/iterable.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ArrayObject.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/WeakReference.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ext-ds.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ImagickPixel.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/PDOStatement.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/date.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ibm_db2.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/mysqli.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/zip.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/dom.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/spl.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/SplObjectStorage.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/Exception.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/arrayFunctions.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/core.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/typeCheckingFunctions.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/Countable.stub', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/Assert.stub', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/AssertionFailedError.stub', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/ExpectationFailedException.stub', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/Stub.stub', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', + ], + ['/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'] + ); + } + + + public function createService046(): PHPStan\PhpDoc\JsonValidateStubFilesExtension + { + return new PHPStan\PhpDoc\JsonValidateStubFilesExtension($this->getService('026')); + } + + + public function createService047(): PHPStan\PhpDoc\ReflectionClassStubFilesExtension + { + return new PHPStan\PhpDoc\ReflectionClassStubFilesExtension($this->getService('026')); + } + + + public function createService048(): PHPStan\PhpDoc\ReflectionEnumStubFilesExtension + { + return new PHPStan\PhpDoc\ReflectionEnumStubFilesExtension($this->getService('026')); + } + + + public function createService049(): PHPStan\Analyser\Analyser + { + return new PHPStan\Analyser\Analyser( + $this->getService('051'), + $this->getService('registry'), + $this->getService('065'), + $this->getService('058'), + 50 + ); + } + + + public function createService050(): PHPStan\Analyser\AnalyserResultFinalizer + { + return new PHPStan\Analyser\AnalyserResultFinalizer( + $this->getService('registry'), + $this->getService('053'), + $this->getService('057'), + $this->getService('052'), + true + ); + } + + + public function createService051(): PHPStan\Analyser\FileAnalyser + { + return new PHPStan\Analyser\FileAnalyser( + $this->getService('057'), + $this->getService('058'), + $this->getService('defaultAnalysisParser'), + $this->getService('070'), + $this->getService('053'), + $this->getService('052') + ); + } + + + public function createService052(): PHPStan\Analyser\LocalIgnoresProcessor + { + return new PHPStan\Analyser\LocalIgnoresProcessor; + } + + + public function createService053(): PHPStan\Analyser\RuleErrorTransformer + { + return new PHPStan\Analyser\RuleErrorTransformer; + } + + + public function createService054(): PHPStan\Analyser\Ignore\IgnoredErrorHelper + { + return new PHPStan\Analyser\Ignore\IgnoredErrorHelper($this->getService('084'), [], true); + } + + + public function createService055(): PHPStan\Analyser\Ignore\IgnoreLexer + { + return new PHPStan\Analyser\Ignore\IgnoreLexer; + } + + + public function createService056(): PHPStan\Analyser\LazyInternalScopeFactory + { + return new PHPStan\Analyser\LazyInternalScopeFactory($this->getService('074')); + } + + + public function createService057(): PHPStan\Analyser\ScopeFactory + { + return new PHPStan\Analyser\ScopeFactory($this->getService('056')); + } + + + public function createService058(): PHPStan\Analyser\NodeScopeResolver + { + return new PHPStan\Analyser\NodeScopeResolver( + $this->getService('reflectionProvider'), + $this->getService('095'), + $this->getService('nodeScopeResolverReflector'), + $this->getService('077'), + $this->getService('079'), + $this->getService('defaultAnalysisParser'), + $this->getService('0182'), + $this->getService('stubPhpDocProvider'), + $this->getService('026'), + $this->getService('0127'), + $this->getService('093'), + $this->getService('036'), + $this->getService('084'), + $this->getService('typeSpecifier'), + $this->getService('082'), + $this->getService('0175'), + $this->getService('083'), + $this->getService('057'), + true, + true, + true, + ['PHPUnit\Framework\Assert' => ['fail', 'markTestIncomplete', 'markTestSkipped']], + ['abort', 'dd'], + [ + 'stdClass', + 'Illuminate\Http\Request', + 'Illuminate\Support\Optional', + 'Pest\Support\HigherOrderTapProxy', + 'Pest\Expectation', + ], + true, + true + ); + } + + + public function createService059(): PHPStan\Analyser\ConstantResolver + { + return $this->getService('060')->create(); + } + + + public function createService060(): PHPStan\Analyser\ConstantResolverFactory + { + return new PHPStan\Analyser\ConstantResolverFactory($this->getService('0121'), $this->getService('074')); + } + + + public function createService061(): PHPStan\Analyser\ResultCache\ResultCacheManagerFactory + { + return new class ($this) implements PHPStan\Analyser\ResultCache\ResultCacheManagerFactory { + private $container; + + + public function __construct(Container_c5db45e753 $container) + { + $this->container = $container; + } + + + public function create(): PHPStan\Analyser\ResultCache\ResultCacheManager + { + return new PHPStan\Analyser\ResultCache\ResultCacheManager( + $this->container->getService('074'), + $this->container->getService('071'), + $this->container->getService('fileFinderScan'), + $this->container->getService('reflectionProvider'), + $this->container->getService('045'), + $this->container->getService('084'), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/build/phpstan/resultCache.php', + $this->container->getParameter('analysedPaths'), + ['/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'], + '5', + null, + [ + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionUnionType.php', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionAttribute.php', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/Attribute.php', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionIntersectionType.php', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/bootstrap.php', + ], + [], + [], + false + ); + } + }; + } + + + public function createService062(): PHPStan\Analyser\ResultCache\ResultCacheClearer + { + return new PHPStan\Analyser\ResultCache\ResultCacheClearer('/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/build/phpstan/resultCache.php'); + } + + + public function createService063(): PHPStan\Analyser\RicherScopeGetTypeHelper + { + return new PHPStan\Analyser\RicherScopeGetTypeHelper($this->getService('095')); + } + + + public function createService064(): PHPStan\Cache\Cache + { + return new PHPStan\Cache\Cache($this->getService('cacheStorage')); + } + + + public function createService065(): PHPStan\Collectors\Registry + { + return $this->getService('066')->create(); + } + + + public function createService066(): PHPStan\Collectors\RegistryFactory + { + return new PHPStan\Collectors\RegistryFactory($this->getService('074')); + } + + + public function createService067(): PHPStan\Command\AnalyseApplication + { + return new PHPStan\Command\AnalyseApplication( + $this->getService('068'), + $this->getService('050'), + $this->getService('043'), + $this->getService('061'), + $this->getService('054'), + $this->getService('045') + ); + } + + + public function createService068(): PHPStan\Command\AnalyserRunner + { + return new PHPStan\Command\AnalyserRunner( + $this->getService('091'), + $this->getService('049'), + $this->getService('090'), + $this->getService('092') + ); + } + + + public function createService069(): PHPStan\Command\FixerApplication + { + return new PHPStan\Command\FixerApplication( + $this->getService('087'), + $this->getService('054'), + $this->getService('045'), + $this->getParameter('analysedPaths'), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify', + ($this->getParameter('sysGetTempDir')) . '/phpstan-fixer', + ['1.1.1.2'], + ['/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'], + [ + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/parametersSchema.neon', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level5.neon', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level4.neon', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level3.neon', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level2.neon', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level1.neon', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level0.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nesbot/carbon/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/pestphp/pest/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/rules.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/rules.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan.neon.dist', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan-baseline.neon', + ], + null, + [ + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionUnionType.php', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionAttribute.php', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/Attribute.php', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionIntersectionType.php', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/bootstrap.php', + ], + null, + '5' + ); + } + + + public function createService070(): PHPStan\Dependency\DependencyResolver + { + return new PHPStan\Dependency\DependencyResolver( + $this->getService('084'), + $this->getService('reflectionProvider'), + $this->getService('072'), + $this->getService('0182') + ); + } + + + public function createService071(): PHPStan\Dependency\ExportedNodeFetcher + { + return new PHPStan\Dependency\ExportedNodeFetcher($this->getService('defaultAnalysisParser'), $this->getService('073')); + } + + + public function createService072(): PHPStan\Dependency\ExportedNodeResolver + { + return new PHPStan\Dependency\ExportedNodeResolver($this->getService('0182'), $this->getService('023')); + } + + + public function createService073(): PHPStan\Dependency\ExportedNodeVisitor + { + return new PHPStan\Dependency\ExportedNodeVisitor($this->getService('072')); + } + + + public function createService074(): PHPStan\DependencyInjection\Container + { + return new PHPStan\DependencyInjection\MemoizingContainer($this->getService('075')); + } + + + public function createService075(): PHPStan\DependencyInjection\Nette\NetteContainer + { + return new PHPStan\DependencyInjection\Nette\NetteContainer($this); + } + + + public function createService076(): PHPStan\DependencyInjection\DerivativeContainerFactory + { + return new PHPStan\DependencyInjection\DerivativeContainerFactory( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/build/phpstan', + [ + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level5.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../../larastan/larastan/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../../nesbot/carbon/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../../pestphp/pest/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../phpstan-deprecation-rules/rules.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../phpstan-phpunit/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../phpstan-phpunit/rules.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan.neon.dist', + ], + $this->getParameter('analysedPaths'), + ['/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'], + $this->getParameter('analysedPathsFromConfig'), + '5', + null, + null + ); + } + + + public function createService077(): PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider + { + return new PHPStan\DependencyInjection\Reflection\LazyClassReflectionExtensionRegistryProvider($this->getService('074')); + } + + + public function createService078(): PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider + { + return new PHPStan\DependencyInjection\Type\LazyDynamicReturnTypeExtensionRegistryProvider($this->getService('074')); + } + + + public function createService079(): PHPStan\DependencyInjection\Type\ParameterOutTypeExtensionProvider + { + return new PHPStan\DependencyInjection\Type\LazyParameterOutTypeExtensionProvider($this->getService('074')); + } + + + public function createService080(): PHPStan\DependencyInjection\Type\ExpressionTypeResolverExtensionRegistryProvider + { + return new PHPStan\DependencyInjection\Type\LazyExpressionTypeResolverExtensionRegistryProvider($this->getService('074')); + } + + + public function createService081(): PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider + { + return new PHPStan\DependencyInjection\Type\LazyOperatorTypeSpecifyingExtensionRegistryProvider($this->getService('074')); + } + + + public function createService082(): PHPStan\DependencyInjection\Type\DynamicThrowTypeExtensionProvider + { + return new PHPStan\DependencyInjection\Type\LazyDynamicThrowTypeExtensionProvider($this->getService('074')); + } + + + public function createService083(): PHPStan\DependencyInjection\Type\ParameterClosureTypeExtensionProvider + { + return new PHPStan\DependencyInjection\Type\LazyParameterClosureTypeExtensionProvider($this->getService('074')); + } + + + public function createService084(): PHPStan\File\FileHelper + { + return new PHPStan\File\FileHelper('/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'); + } + + + public function createService085(): PHPStan\File\FileExcluderFactory + { + return new PHPStan\File\FileExcluderFactory($this->getService('086'), ['analyseAndScan' => [], 'analyse' => []]); + } + + + public function createService086(): PHPStan\File\FileExcluderRawFactory + { + return new class ($this) implements PHPStan\File\FileExcluderRawFactory { + private $container; + + + public function __construct(Container_c5db45e753 $container) + { + $this->container = $container; + } + + + public function create(array $analyseExcludes): PHPStan\File\FileExcluder + { + return new PHPStan\File\FileExcluder($this->container->getService('084'), $analyseExcludes); + } + }; + } + + + public function createService087(): PHPStan\File\FileMonitor + { + return new PHPStan\File\FileMonitor($this->getService('fileFinderAnalyse')); + } + + + public function createService088(): PHPStan\Parser\DeclarePositionVisitor + { + return new PHPStan\Parser\DeclarePositionVisitor; + } + + + public function createService089(): PHPStan\Parser\ImmediatelyInvokedClosureVisitor + { + return new PHPStan\Parser\ImmediatelyInvokedClosureVisitor; + } + + + public function createService090(): PHPStan\Parallel\ParallelAnalyser + { + return new PHPStan\Parallel\ParallelAnalyser(50, 600.0, 134217728); + } + + + public function createService091(): PHPStan\Parallel\Scheduler + { + return new PHPStan\Parallel\Scheduler(20, 32, 2); + } + + + public function createService092(): PHPStan\Process\CpuCoreCounter + { + return new PHPStan\Process\CpuCoreCounter; + } + + + public function createService093(): PHPStan\Reflection\AttributeReflectionFactory + { + return new PHPStan\Reflection\AttributeReflectionFactory($this->getService('095'), $this->getService('0121')); + } + + + public function createService094(): PHPStan\Reflection\FunctionReflectionFactory + { + return new class ($this) implements PHPStan\Reflection\FunctionReflectionFactory { + private $container; + + + public function __construct(Container_c5db45e753 $container) + { + $this->container = $container; + } + + + public function create( + PHPStan\BetterReflection\Reflection\Adapter\ReflectionFunction $reflection, + PHPStan\Type\Generic\TemplateTypeMap $templateTypeMap, + array $phpDocParameterTypes, + ?PHPStan\Type\Type $phpDocReturnType, + ?PHPStan\Type\Type $phpDocThrowType, + ?string $deprecatedDescription, + bool $isDeprecated, + bool $isInternal, + ?string $filename, + ?bool $isPure, + PHPStan\Reflection\Assertions $asserts, + bool $acceptsNamedArguments, + ?string $phpDocComment, + array $phpDocParameterOutTypes, + array $phpDocParameterImmediatelyInvokedCallable, + array $phpDocParameterClosureThisTypes, + array $attributes + ): PHPStan\Reflection\Php\PhpFunctionReflection { + return new PHPStan\Reflection\Php\PhpFunctionReflection( + $this->container->getService('095'), + $reflection, + $this->container->getService('defaultAnalysisParser'), + $this->container->getService('093'), + $templateTypeMap, + $phpDocParameterTypes, + $phpDocReturnType, + $phpDocThrowType, + $deprecatedDescription, + $isDeprecated, + $isInternal, + $filename, + $isPure, + $asserts, + $acceptsNamedArguments, + $phpDocComment, + $phpDocParameterOutTypes, + $phpDocParameterImmediatelyInvokedCallable, + $phpDocParameterClosureThisTypes, + $attributes + ); + } + }; + } + + + public function createService095(): PHPStan\Reflection\InitializerExprTypeResolver + { + return new PHPStan\Reflection\InitializerExprTypeResolver( + $this->getService('059'), + $this->getService('0121'), + $this->getService('026'), + $this->getService('081'), + $this->getService('0354'), + false + ); + } + + + public function createService096(): PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension + { + return new PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension; + } + + + public function createService097(): PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension + { + return new PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension; + } + + + public function createService098(): PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor; + } + + + public function createService099(): PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher( + $this->getService('098'), + $this->getService('defaultAnalysisParser') + ); + } + + + public function createService0100(): PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker( + $this->getService('0102'), + $this->getService('0103'), + $this->getService('0101'), + $this->getService('026') + ); + } + + + public function createService0101(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory( + $this->getService('099'), + $this->getService('fileFinderScan'), + $this->getService('026'), + $this->getService('064') + ); + } + + + public function createService0102(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository($this->getService('0101')); + } + + + public function createService0103(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory + { + return new class ($this) implements PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory { + private $container; + + + public function __construct(Container_c5db45e753 $container) + { + $this->container = $container; + } + + + public function create(PHPStan\BetterReflection\SourceLocator\Type\Composer\Psr\PsrAutoloaderMapping $mapping): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator($mapping, $this->container->getService('0105')); + } + }; + } + + + public function createService0104(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory + { + return new class ($this) implements PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory { + private $container; + + + public function __construct(Container_c5db45e753 $container) + { + $this->container = $container; + } + + + public function create(string $fileName): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator( + $this->container->getService('099'), + $fileName + ); + } + }; + } + + + public function createService0105(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository + { + return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository($this->getService('0104')); + } + + + public function createService0106(): PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumCaseDynamicReturnTypeExtension + { + return new PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumCaseDynamicReturnTypeExtension( + $this->getService('026'), + 'PHPStan\BetterReflection\Reflection\Adapter\ReflectionEnumBackedCase' + ); + } + + + public function createService0107(): PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumCaseDynamicReturnTypeExtension + { + return new PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumCaseDynamicReturnTypeExtension( + $this->getService('026'), + 'PHPStan\BetterReflection\Reflection\Adapter\ReflectionEnumUnitCase' + ); + } + + + public function createService0108(): PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumDynamicReturnTypeExtension + { + return new PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumDynamicReturnTypeExtension($this->getService('026')); + } + + + public function createService0109(): PHPStan\Reflection\ConstructorsHelper + { + return new PHPStan\Reflection\ConstructorsHelper($this->getService('074'), ['PHPUnit\Framework\TestCase::setUp']); + } + + + public function createService0110(): PHPStan\Reflection\RequireExtension\RequireExtendsMethodsClassReflectionExtension + { + return new PHPStan\Reflection\RequireExtension\RequireExtendsMethodsClassReflectionExtension; + } + + + public function createService0111(): PHPStan\Reflection\RequireExtension\RequireExtendsPropertiesClassReflectionExtension + { + return new PHPStan\Reflection\RequireExtension\RequireExtendsPropertiesClassReflectionExtension; + } + + + public function createService0112(): PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension + { + return new PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension(['Eloquent']); + } + + + public function createService0113(): PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension + { + return new PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension(['Eloquent']); + } + + + public function createService0114(): PHPStan\Reflection\Php\PhpClassReflectionExtension + { + return new PHPStan\Reflection\Php\PhpClassReflectionExtension( + $this->getService('057'), + $this->getService('058'), + $this->getService('0115'), + $this->getService('036'), + $this->getService('096'), + $this->getService('097'), + $this->getService('0127'), + $this->getService('defaultAnalysisParser'), + $this->getService('stubPhpDocProvider'), + $this->getService('0121'), + $this->getService('0182'), + $this->getService('093'), + false + ); + } + + + public function createService0115(): PHPStan\Reflection\Php\PhpMethodReflectionFactory + { + return new class ($this) implements PHPStan\Reflection\Php\PhpMethodReflectionFactory { + private $container; + + + public function __construct(Container_c5db45e753 $container) + { + $this->container = $container; + } + + + public function create( + PHPStan\Reflection\ClassReflection $declaringClass, + ?PHPStan\Reflection\ClassReflection $declaringTrait, + PHPStan\BetterReflection\Reflection\Adapter\ReflectionMethod $reflection, + PHPStan\Type\Generic\TemplateTypeMap $templateTypeMap, + array $phpDocParameterTypes, + ?PHPStan\Type\Type $phpDocReturnType, + ?PHPStan\Type\Type $phpDocThrowType, + ?string $deprecatedDescription, + bool $isDeprecated, + bool $isInternal, + bool $isFinal, + ?bool $isPure, + PHPStan\Reflection\Assertions $asserts, + ?PHPStan\Type\Type $selfOutType, + ?string $phpDocComment, + array $phpDocParameterOutTypes, + array $immediatelyInvokedCallableParameters, + array $phpDocClosureThisTypeParameters, + bool $acceptsNamedArguments, + array $attributes + ): PHPStan\Reflection\Php\PhpMethodReflection { + return new PHPStan\Reflection\Php\PhpMethodReflection( + $this->container->getService('095'), + $declaringClass, + $declaringTrait, + $reflection, + $this->container->getService('reflectionProvider'), + $this->container->getService('093'), + $this->container->getService('defaultAnalysisParser'), + $templateTypeMap, + $phpDocParameterTypes, + $phpDocReturnType, + $phpDocThrowType, + $deprecatedDescription, + $isDeprecated, + $isInternal, + $isFinal, + $isPure, + $asserts, + $acceptsNamedArguments, + $selfOutType, + $phpDocComment, + $phpDocParameterOutTypes, + $immediatelyInvokedCallableParameters, + $phpDocClosureThisTypeParameters, + $attributes + ); + } + }; + } + + + public function createService0116(): PHPStan\Reflection\Php\Soap\SoapClientMethodsClassReflectionExtension + { + return new PHPStan\Reflection\Php\Soap\SoapClientMethodsClassReflectionExtension; + } + + + public function createService0117(): PHPStan\Reflection\Php\EnumAllowedSubTypesClassReflectionExtension + { + return new PHPStan\Reflection\Php\EnumAllowedSubTypesClassReflectionExtension; + } + + + public function createService0118(): PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension + { + return new PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension( + $this->getService('reflectionProvider'), + [ + 'stdClass', + 'Illuminate\Http\Request', + 'Illuminate\Support\Optional', + 'Pest\Support\HigherOrderTapProxy', + 'Pest\Expectation', + ], + $this->getService('097') + ); + } + + + public function createService0119(): PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension + { + return new PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension( + $this->getService('026'), + 'PHPStan\Reflection\ClassReflection', + 'getNativeReflection' + ); + } + + + public function createService0120(): PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension + { + return new PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension( + $this->getService('026'), + 'PHPStan\Reflection\Php\BuiltinMethodReflection', + 'getDeclaringClass' + ); + } + + + public function createService0121(): PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider + { + return new PHPStan\Reflection\ReflectionProvider\LazyReflectionProviderProvider($this->getService('074')); + } + + + public function createService0122(): PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider + { + return new PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider( + $this->getService('0127'), + $this->getService('betterReflectionReflector'), + $this->getService('0182'), + $this->getService('stubPhpDocProvider'), + $this->getService('093') + ); + } + + + public function createService0123(): PHPStan\Reflection\SignatureMap\SignatureMapParser + { + return new PHPStan\Reflection\SignatureMap\SignatureMapParser($this->getService('042')); + } + + + public function createService0124(): PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider + { + return new PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider( + $this->getService('0123'), + $this->getService('095'), + $this->getService('026'), + false + ); + } + + + public function createService0125(): PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider + { + return new PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider( + $this->getService('0124'), + $this->getService('099'), + $this->getService('0182'), + $this->getService('026'), + $this->getService('095'), + $this->getService('0121') + ); + } + + + public function createService0126(): PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory + { + return new PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory( + $this->getService('026'), + $this->getService('0124'), + $this->getService('0125') + ); + } + + + public function createService0127(): PHPStan\Reflection\SignatureMap\SignatureMapProvider + { + return $this->getService('0126')->create(); + } + + + public function createService0128(): PHPStan\Rules\Api\ApiRuleHelper + { + return new PHPStan\Rules\Api\ApiRuleHelper; + } + + + public function createService0129(): PHPStan\Rules\AttributesCheck + { + return new PHPStan\Rules\AttributesCheck( + $this->getService('reflectionProvider'), + $this->getService('0146'), + $this->getService('0131'), + true + ); + } + + + public function createService0130(): PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck + { + return new PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck($this->getService('0179'), false, false, false); + } + + + public function createService0131(): PHPStan\Rules\ClassNameCheck + { + return new PHPStan\Rules\ClassNameCheck($this->getService('0132'), $this->getService('0133')); + } + + + public function createService0132(): PHPStan\Rules\ClassCaseSensitivityCheck + { + return new PHPStan\Rules\ClassCaseSensitivityCheck($this->getService('reflectionProvider'), false); + } + + + public function createService0133(): PHPStan\Rules\ClassForbiddenNameCheck + { + return new PHPStan\Rules\ClassForbiddenNameCheck($this->getService('074')); + } + + + public function createService0134(): PHPStan\Rules\Classes\LocalTypeAliasesCheck + { + return new PHPStan\Rules\Classes\LocalTypeAliasesCheck( + [], + $this->getService('reflectionProvider'), + $this->getService('040'), + $this->getService('0162'), + $this->getService('0131'), + $this->getService('0168'), + $this->getService('0152'), + false, + true + ); + } + + + public function createService0135(): PHPStan\Rules\Classes\MethodTagCheck + { + return new PHPStan\Rules\Classes\MethodTagCheck( + $this->getService('reflectionProvider'), + $this->getService('0131'), + $this->getService('0152'), + $this->getService('0162'), + $this->getService('0168'), + true, + false + ); + } + + + public function createService0136(): PHPStan\Rules\Classes\MixinCheck + { + return new PHPStan\Rules\Classes\MixinCheck( + $this->getService('reflectionProvider'), + $this->getService('0131'), + $this->getService('0152'), + $this->getService('0162'), + $this->getService('0168'), + true, + false + ); + } + + + public function createService0137(): PHPStan\Rules\Classes\PropertyTagCheck + { + return new PHPStan\Rules\Classes\PropertyTagCheck( + $this->getService('reflectionProvider'), + $this->getService('0131'), + $this->getService('0152'), + $this->getService('0162'), + $this->getService('0168'), + true, + false + ); + } + + + public function createService0138(): PHPStan\Rules\Comparison\ConstantConditionRuleHelper + { + return new PHPStan\Rules\Comparison\ConstantConditionRuleHelper($this->getService('0139'), true); + } + + + public function createService0139(): PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper + { + return new PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper( + $this->getService('reflectionProvider'), + $this->getService('typeSpecifier'), + [ + 'stdClass', + 'Illuminate\Http\Request', + 'Illuminate\Support\Optional', + 'Pest\Support\HigherOrderTapProxy', + 'Pest\Expectation', + ], + true + ); + } + + + public function createService0140(): PHPStan\Rules\Exceptions\DefaultExceptionTypeResolver + { + return new PHPStan\Rules\Exceptions\DefaultExceptionTypeResolver( + $this->getService('reflectionProvider'), + ['#^PHPUnit\\\#', '#^SebastianBergmann\\\#'], + [], + [], + [] + ); + } + + + public function createService0141(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule + { + return new PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule($this->getService('0144')); + } + + + public function createService0142(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule + { + return new PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule($this->getService('0144')); + } + + + public function createService0143(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInPropertyHookThrowsRule + { + return new PHPStan\Rules\Exceptions\MissingCheckedExceptionInPropertyHookThrowsRule($this->getService('0144')); + } + + + public function createService0144(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck + { + return new PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck($this->getService('exceptionTypeResolver')); + } + + + public function createService0145(): PHPStan\Rules\Exceptions\TooWideThrowTypeCheck + { + return new PHPStan\Rules\Exceptions\TooWideThrowTypeCheck(true); + } + + + public function createService0146(): PHPStan\Rules\FunctionCallParametersCheck + { + return new PHPStan\Rules\FunctionCallParametersCheck( + $this->getService('0179'), + $this->getService('0163'), + $this->getService('0168'), + $this->getService('0177'), + true, + true, + true, + false + ); + } + + + public function createService0147(): PHPStan\Rules\FunctionDefinitionCheck + { + return new PHPStan\Rules\FunctionDefinitionCheck( + $this->getService('reflectionProvider'), + $this->getService('0131'), + $this->getService('0168'), + $this->getService('026'), + true, + false + ); + } + + + public function createService0148(): PHPStan\Rules\FunctionReturnTypeCheck + { + return new PHPStan\Rules\FunctionReturnTypeCheck($this->getService('0179')); + } + + + public function createService0149(): PHPStan\Rules\ParameterCastableToStringCheck + { + return new PHPStan\Rules\ParameterCastableToStringCheck($this->getService('0179')); + } + + + public function createService0150(): PHPStan\Rules\Generics\CrossCheckInterfacesHelper + { + return new PHPStan\Rules\Generics\CrossCheckInterfacesHelper; + } + + + public function createService0151(): PHPStan\Rules\Generics\GenericAncestorsCheck + { + return new PHPStan\Rules\Generics\GenericAncestorsCheck( + $this->getService('reflectionProvider'), + $this->getService('0152'), + $this->getService('0155'), + $this->getService('0168'), + [], + false + ); + } + + + public function createService0152(): PHPStan\Rules\Generics\GenericObjectTypeCheck + { + return new PHPStan\Rules\Generics\GenericObjectTypeCheck; + } + + + public function createService0153(): PHPStan\Rules\Generics\MethodTagTemplateTypeCheck + { + return new PHPStan\Rules\Generics\MethodTagTemplateTypeCheck($this->getService('0182'), $this->getService('0154')); + } + + + public function createService0154(): PHPStan\Rules\Generics\TemplateTypeCheck + { + return new PHPStan\Rules\Generics\TemplateTypeCheck( + $this->getService('reflectionProvider'), + $this->getService('0131'), + $this->getService('0152'), + $this->getService('0183'), + true + ); + } + + + public function createService0155(): PHPStan\Rules\Generics\VarianceCheck + { + return new PHPStan\Rules\Generics\VarianceCheck; + } + + + public function createService0156(): PHPStan\Rules\IssetCheck + { + return new PHPStan\Rules\IssetCheck($this->getService('0176'), $this->getService('0177'), true, true); + } + + + public function createService0157(): PHPStan\Rules\Methods\MethodCallCheck + { + return new PHPStan\Rules\Methods\MethodCallCheck( + $this->getService('reflectionProvider'), + $this->getService('0179'), + false, + true + ); + } + + + public function createService0158(): PHPStan\Rules\Methods\StaticMethodCallCheck + { + return new PHPStan\Rules\Methods\StaticMethodCallCheck( + $this->getService('reflectionProvider'), + $this->getService('0179'), + $this->getService('0131'), + false, + true + ); + } + + + public function createService0159(): PHPStan\Rules\Methods\MethodSignatureRule + { + return new PHPStan\Rules\Methods\MethodSignatureRule($this->getService('0114'), false, false); + } + + + public function createService0160(): PHPStan\Rules\Methods\MethodParameterComparisonHelper + { + return new PHPStan\Rules\Methods\MethodParameterComparisonHelper($this->getService('026')); + } + + + public function createService0161(): PHPStan\Rules\Methods\MethodVisibilityComparisonHelper + { + return new PHPStan\Rules\Methods\MethodVisibilityComparisonHelper; + } + + + public function createService0162(): PHPStan\Rules\MissingTypehintCheck + { + return new PHPStan\Rules\MissingTypehintCheck(false, []); + } + + + public function createService0163(): PHPStan\Rules\NullsafeCheck + { + return new PHPStan\Rules\NullsafeCheck; + } + + + public function createService0164(): PHPStan\Rules\Constants\LazyAlwaysUsedClassConstantsExtensionProvider + { + return new PHPStan\Rules\Constants\LazyAlwaysUsedClassConstantsExtensionProvider($this->getService('074')); + } + + + public function createService0165(): PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider + { + return new PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider($this->getService('074')); + } + + + public function createService0166(): PHPStan\Rules\PhpDoc\ConditionalReturnTypeRuleHelper + { + return new PHPStan\Rules\PhpDoc\ConditionalReturnTypeRuleHelper; + } + + + public function createService0167(): PHPStan\Rules\PhpDoc\AssertRuleHelper + { + return new PHPStan\Rules\PhpDoc\AssertRuleHelper( + $this->getService('095'), + $this->getService('reflectionProvider'), + $this->getService('0168'), + $this->getService('0131'), + $this->getService('0162'), + $this->getService('0152'), + true, + false + ); + } + + + public function createService0168(): PHPStan\Rules\PhpDoc\UnresolvableTypeHelper + { + return new PHPStan\Rules\PhpDoc\UnresolvableTypeHelper; + } + + + public function createService0169(): PHPStan\Rules\PhpDoc\GenericCallableRuleHelper + { + return new PHPStan\Rules\PhpDoc\GenericCallableRuleHelper($this->getService('0154')); + } + + + public function createService0170(): PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck + { + return new PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck( + $this->getService('0152'), + $this->getService('0168'), + $this->getService('0169') + ); + } + + + public function createService0171(): PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper + { + return new PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper(false, false); + } + + + public function createService0172(): PHPStan\Rules\Playground\NeverRuleHelper + { + return new PHPStan\Rules\Playground\NeverRuleHelper; + } + + + public function createService0173(): PHPStan\Rules\Properties\AccessPropertiesCheck + { + return new PHPStan\Rules\Properties\AccessPropertiesCheck( + $this->getService('reflectionProvider'), + $this->getService('0179'), + $this->getService('026'), + true, + false + ); + } + + + public function createService0174(): PHPStan\Rules\Properties\UninitializedPropertyRule + { + return new PHPStan\Rules\Properties\UninitializedPropertyRule($this->getService('0109')); + } + + + public function createService0175(): PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider + { + return new PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider($this->getService('074')); + } + + + public function createService0176(): PHPStan\Rules\Properties\PropertyDescriptor + { + return new PHPStan\Rules\Properties\PropertyDescriptor; + } + + + public function createService0177(): PHPStan\Rules\Properties\PropertyReflectionFinder + { + return new PHPStan\Rules\Properties\PropertyReflectionFinder; + } + + + public function createService0178(): PHPStan\Rules\Pure\FunctionPurityCheck + { + return new PHPStan\Rules\Pure\FunctionPurityCheck; + } + + + public function createService0179(): PHPStan\Rules\RuleLevelHelper + { + return new PHPStan\Rules\RuleLevelHelper($this->getService('reflectionProvider'), false, false, false, false, false, false); + } + + + public function createService0180(): PHPStan\Rules\UnusedFunctionParametersCheck + { + return new PHPStan\Rules\UnusedFunctionParametersCheck($this->getService('reflectionProvider'), false); + } + + + public function createService0181(): PHPStan\Rules\TooWideTypehints\TooWideParameterOutTypeCheck + { + return new PHPStan\Rules\TooWideTypehints\TooWideParameterOutTypeCheck; + } + + + public function createService0182(): PHPStan\Type\FileTypeMapper + { + return new PHPStan\Type\FileTypeMapper( + $this->getService('0121'), + $this->getService('defaultAnalysisParser'), + $this->getService('038'), + $this->getService('037'), + $this->getService('025'), + $this->getService('084') + ); + } + + + public function createService0183(): PHPStan\Type\TypeAliasResolver + { + return new PHPStan\Type\UsefulTypeAliasResolver( + [], + $this->getService('042'), + $this->getService('040'), + $this->getService('reflectionProvider') + ); + } + + + public function createService0184(): PHPStan\Type\TypeAliasResolverProvider + { + return new PHPStan\Type\LazyTypeAliasResolverProvider($this->getService('074')); + } + + + public function createService0185(): PHPStan\Type\BitwiseFlagHelper + { + return new PHPStan\Type\BitwiseFlagHelper($this->getService('reflectionProvider')); + } + + + public function createService0186(): PHPStan\Type\Php\AbsFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\AbsFunctionDynamicReturnTypeExtension; + } + + + public function createService0187(): PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension; + } + + + public function createService0188(): PHPStan\Type\Php\ArrayChangeKeyCaseFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayChangeKeyCaseFunctionReturnTypeExtension; + } + + + public function createService0189(): PHPStan\Type\Php\ArrayIntersectKeyFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayIntersectKeyFunctionReturnTypeExtension($this->getService('026')); + } + + + public function createService0190(): PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension($this->getService('026')); + } + + + public function createService0191(): PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension($this->getService('026')); + } + + + public function createService0192(): PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension($this->getService('026')); + } + + + public function createService0193(): PHPStan\Type\Php\ArrayCurrentDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayCurrentDynamicReturnTypeExtension; + } + + + public function createService0194(): PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension($this->getService('026')); + } + + + public function createService0195(): PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension($this->getService('026')); + } + + + public function createService0196(): PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper + { + return new PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper($this->getService('reflectionProvider')); + } + + + public function createService0197(): PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension($this->getService('0196')); + } + + + public function createService0198(): PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension($this->getService('026')); + } + + + public function createService0199(): PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension($this->getService('0196')); + } + + + public function createService0200(): PHPStan\Type\Php\ArrayFindKeyFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayFindKeyFunctionReturnTypeExtension; + } + + + public function createService0201(): PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension; + } + + + public function createService0202(): PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension; + } + + + public function createService0203(): PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension; + } + + + public function createService0204(): PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension; + } + + + public function createService0205(): PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension($this->getService('026')); + } + + + public function createService0206(): PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension; + } + + + public function createService0207(): PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension; + } + + + public function createService0208(): PHPStan\Type\Php\ArrayNextDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayNextDynamicReturnTypeExtension; + } + + + public function createService0209(): PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension; + } + + + public function createService0210(): PHPStan\Type\Php\ArrayRandFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayRandFunctionReturnTypeExtension; + } + + + public function createService0211(): PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension; + } + + + public function createService0212(): PHPStan\Type\Php\ArrayReplaceFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayReplaceFunctionReturnTypeExtension; + } + + + public function createService0213(): PHPStan\Type\Php\ArrayReverseFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayReverseFunctionReturnTypeExtension($this->getService('026')); + } + + + public function createService0214(): PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension; + } + + + public function createService0215(): PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension($this->getService('026')); + } + + + public function createService0216(): PHPStan\Type\Php\ArraySpliceFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ArraySpliceFunctionReturnTypeExtension; + } + + + public function createService0217(): PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension($this->getService('026')); + } + + + public function createService0218(): PHPStan\Type\Php\ArraySearchFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\ArraySearchFunctionTypeSpecifyingExtension; + } + + + public function createService0219(): PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension($this->getService('026')); + } + + + public function createService0220(): PHPStan\Type\Php\ArraySumFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArraySumFunctionDynamicReturnTypeExtension; + } + + + public function createService0221(): PHPStan\Type\Php\AssertThrowTypeExtension + { + return new PHPStan\Type\Php\AssertThrowTypeExtension; + } + + + public function createService0222(): PHPStan\Type\Php\BackedEnumFromMethodDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\BackedEnumFromMethodDynamicReturnTypeExtension; + } + + + public function createService0223(): PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension; + } + + + public function createService0224(): PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension + { + return new PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension($this->getService('026')); + } + + + public function createService0225(): PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension; + } + + + public function createService0226(): PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension; + } + + + public function createService0227(): PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension; + } + + + public function createService0228(): PHPStan\Type\Php\CompactFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\CompactFunctionReturnTypeExtension(true); + } + + + public function createService0229(): PHPStan\Type\Php\ConstantFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ConstantFunctionReturnTypeExtension($this->getService('0230')); + } + + + public function createService0230(): PHPStan\Type\Php\ConstantHelper + { + return new PHPStan\Type\Php\ConstantHelper; + } + + + public function createService0231(): PHPStan\Type\Php\CountFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\CountFunctionReturnTypeExtension; + } + + + public function createService0232(): PHPStan\Type\Php\CountCharsFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\CountCharsFunctionDynamicReturnTypeExtension($this->getService('026')); + } + + + public function createService0233(): PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension; + } + + + public function createService0234(): PHPStan\Type\Php\CurlGetinfoFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\CurlGetinfoFunctionDynamicReturnTypeExtension($this->getService('reflectionProvider')); + } + + + public function createService0235(): PHPStan\Type\Php\DateFunctionReturnTypeHelper + { + return new PHPStan\Type\Php\DateFunctionReturnTypeHelper; + } + + + public function createService0236(): PHPStan\Type\Php\DateFormatFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\DateFormatFunctionReturnTypeExtension($this->getService('0235')); + } + + + public function createService0237(): PHPStan\Type\Php\DateFormatMethodReturnTypeExtension + { + return new PHPStan\Type\Php\DateFormatMethodReturnTypeExtension($this->getService('0235')); + } + + + public function createService0238(): PHPStan\Type\Php\DateFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\DateFunctionReturnTypeExtension($this->getService('0235')); + } + + + public function createService0239(): PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension + { + return new PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension($this->getService('026')); + } + + + public function createService0240(): PHPStan\Type\Php\DateIntervalDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\DateIntervalDynamicReturnTypeExtension; + } + + + public function createService0241(): PHPStan\Type\Php\DateTimeCreateDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\DateTimeCreateDynamicReturnTypeExtension; + } + + + public function createService0242(): PHPStan\Type\Php\DateTimeDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\DateTimeDynamicReturnTypeExtension; + } + + + public function createService0243(): PHPStan\Type\Php\DateTimeModifyReturnTypeExtension + { + return new PHPStan\Type\Php\DateTimeModifyReturnTypeExtension($this->getService('026'), 'DateTime'); + } + + + public function createService0244(): PHPStan\Type\Php\DateTimeModifyReturnTypeExtension + { + return new PHPStan\Type\Php\DateTimeModifyReturnTypeExtension($this->getService('026'), 'DateTimeImmutable'); + } + + + public function createService0245(): PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension + { + return new PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension($this->getService('026')); + } + + + public function createService0246(): PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension + { + return new PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension($this->getService('026')); + } + + + public function createService0247(): PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension + { + return new PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension($this->getService('026')); + } + + + public function createService0248(): PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension + { + return new PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension($this->getService('026')); + } + + + public function createService0249(): PHPStan\Type\Php\DsMapDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\DsMapDynamicReturnTypeExtension; + } + + + public function createService0250(): PHPStan\Type\Php\DsMapDynamicMethodThrowTypeExtension + { + return new PHPStan\Type\Php\DsMapDynamicMethodThrowTypeExtension; + } + + + public function createService0251(): PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension; + } + + + public function createService0252(): PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension($this->getService('026')); + } + + + public function createService0253(): PHPStan\Type\Php\FilterFunctionReturnTypeHelper + { + return new PHPStan\Type\Php\FilterFunctionReturnTypeHelper($this->getService('reflectionProvider'), $this->getService('026')); + } + + + public function createService0254(): PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension($this->getService('0253')); + } + + + public function createService0255(): PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension($this->getService('0253')); + } + + + public function createService0256(): PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension( + $this->getService('0253'), + $this->getService('reflectionProvider') + ); + } + + + public function createService0257(): PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension; + } + + + public function createService0258(): PHPStan\Type\Php\GetClassDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\GetClassDynamicReturnTypeExtension; + } + + + public function createService0259(): PHPStan\Type\Php\GetDebugTypeFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\GetDebugTypeFunctionReturnTypeExtension; + } + + + public function createService0260(): PHPStan\Type\Php\GetDefinedVarsFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\GetDefinedVarsFunctionReturnTypeExtension; + } + + + public function createService0261(): PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension($this->getService('reflectionProvider')); + } + + + public function createService0262(): PHPStan\Type\Php\GettypeFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\GettypeFunctionReturnTypeExtension; + } + + + public function createService0263(): PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension; + } + + + public function createService0264(): PHPStan\Type\Php\HashFunctionsReturnTypeExtension + { + return new PHPStan\Type\Php\HashFunctionsReturnTypeExtension($this->getService('026')); + } + + + public function createService0265(): PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension($this->getService('026')); + } + + + public function createService0266(): PHPStan\Type\Php\IntdivThrowTypeExtension + { + return new PHPStan\Type\Php\IntdivThrowTypeExtension; + } + + + public function createService0267(): PHPStan\Type\Php\IniGetReturnTypeExtension + { + return new PHPStan\Type\Php\IniGetReturnTypeExtension; + } + + + public function createService0268(): PHPStan\Type\Php\JsonThrowTypeExtension + { + return new PHPStan\Type\Php\JsonThrowTypeExtension($this->getService('reflectionProvider'), $this->getService('0185')); + } + + + public function createService0269(): PHPStan\Type\Php\OpenSslEncryptParameterOutTypeExtension + { + return new PHPStan\Type\Php\OpenSslEncryptParameterOutTypeExtension; + } + + + public function createService0270(): PHPStan\Type\Php\ParseStrParameterOutTypeExtension + { + return new PHPStan\Type\Php\ParseStrParameterOutTypeExtension; + } + + + public function createService0271(): PHPStan\Type\Php\PregMatchTypeSpecifyingExtension + { + return new PHPStan\Type\Php\PregMatchTypeSpecifyingExtension($this->getService('0274')); + } + + + public function createService0272(): PHPStan\Type\Php\PregMatchParameterOutTypeExtension + { + return new PHPStan\Type\Php\PregMatchParameterOutTypeExtension($this->getService('0274')); + } + + + public function createService0273(): PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension + { + return new PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension($this->getService('0274')); + } + + + public function createService0274(): PHPStan\Type\Php\RegexArrayShapeMatcher + { + return new PHPStan\Type\Php\RegexArrayShapeMatcher( + $this->getService('0275'), + $this->getService('0276'), + $this->getService('026') + ); + } + + + public function createService0275(): PHPStan\Type\Regex\RegexGroupParser + { + return new PHPStan\Type\Regex\RegexGroupParser($this->getService('026'), $this->getService('0276')); + } + + + public function createService0276(): PHPStan\Type\Regex\RegexExpressionHelper + { + return new PHPStan\Type\Regex\RegexExpressionHelper($this->getService('095')); + } + + + public function createService0277(): PHPStan\Type\Php\ReflectionClassConstructorThrowTypeExtension + { + return new PHPStan\Type\Php\ReflectionClassConstructorThrowTypeExtension; + } + + + public function createService0278(): PHPStan\Type\Php\ReflectionFunctionConstructorThrowTypeExtension + { + return new PHPStan\Type\Php\ReflectionFunctionConstructorThrowTypeExtension($this->getService('reflectionProvider')); + } + + + public function createService0279(): PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension + { + return new PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension($this->getService('reflectionProvider')); + } + + + public function createService0280(): PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension + { + return new PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension($this->getService('reflectionProvider')); + } + + + public function createService0281(): PHPStan\Type\Php\StrContainingTypeSpecifyingExtension + { + return new PHPStan\Type\Php\StrContainingTypeSpecifyingExtension; + } + + + public function createService0282(): PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension + { + return new PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension; + } + + + public function createService0283(): PHPStan\Type\Php\SimpleXMLElementConstructorThrowTypeExtension + { + return new PHPStan\Type\Php\SimpleXMLElementConstructorThrowTypeExtension; + } + + + public function createService0284(): PHPStan\Type\Php\StatDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\StatDynamicReturnTypeExtension; + } + + + public function createService0285(): PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension + { + return new PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension; + } + + + public function createService0286(): PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension + { + return new PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension($this->getService('0177')); + } + + + public function createService0287(): PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension($this->getService('026')); + } + + + public function createService0288(): PHPStan\Type\Php\NumberFormatFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\NumberFormatFunctionDynamicReturnTypeExtension; + } + + + public function createService0289(): PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension($this->getService('reflectionProvider')); + } + + + public function createService0290(): PHPStan\Type\Php\PregFilterFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\PregFilterFunctionReturnTypeExtension; + } + + + public function createService0291(): PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension($this->getService('0185')); + } + + + public function createService0292(): PHPStan\Type\Php\ReflectionClassIsSubclassOfTypeSpecifyingExtension + { + return new PHPStan\Type\Php\ReflectionClassIsSubclassOfTypeSpecifyingExtension; + } + + + public function createService0293(): PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension; + } + + + public function createService0294(): PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension; + } + + + public function createService0295(): PHPStan\Type\Php\LtrimFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\LtrimFunctionReturnTypeExtension; + } + + + public function createService0296(): PHPStan\Type\Php\MbFunctionsReturnTypeExtension + { + return new PHPStan\Type\Php\MbFunctionsReturnTypeExtension($this->getService('026')); + } + + + public function createService0297(): PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension; + } + + + public function createService0298(): PHPStan\Type\Php\MbSubstituteCharacterDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\MbSubstituteCharacterDynamicReturnTypeExtension($this->getService('026')); + } + + + public function createService0299(): PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension($this->getService('026')); + } + + + public function createService0300(): PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension; + } + + + public function createService0301(): PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension; + } + + + public function createService0302(): PHPStan\Type\Php\ImplodeFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ImplodeFunctionReturnTypeExtension; + } + + + public function createService0303(): PHPStan\Type\Php\NonEmptyStringFunctionsReturnTypeExtension + { + return new PHPStan\Type\Php\NonEmptyStringFunctionsReturnTypeExtension; + } + + + public function createService0304(): PHPStan\Type\Php\SetTypeFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\SetTypeFunctionTypeSpecifyingExtension; + } + + + public function createService0305(): PHPStan\Type\Php\StrCaseFunctionsReturnTypeExtension + { + return new PHPStan\Type\Php\StrCaseFunctionsReturnTypeExtension; + } + + + public function createService0306(): PHPStan\Type\Php\StrlenFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\StrlenFunctionReturnTypeExtension; + } + + + public function createService0307(): PHPStan\Type\Php\StrIncrementDecrementFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\StrIncrementDecrementFunctionReturnTypeExtension; + } + + + public function createService0308(): PHPStan\Type\Php\StrPadFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\StrPadFunctionReturnTypeExtension; + } + + + public function createService0309(): PHPStan\Type\Php\StrRepeatFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\StrRepeatFunctionReturnTypeExtension; + } + + + public function createService0310(): PHPStan\Type\Php\SubstrDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\SubstrDynamicReturnTypeExtension($this->getService('026')); + } + + + public function createService0311(): PHPStan\Type\Php\ThrowableReturnTypeExtension + { + return new PHPStan\Type\Php\ThrowableReturnTypeExtension; + } + + + public function createService0312(): PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension; + } + + + public function createService0313(): PHPStan\Type\Php\TriggerErrorDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\TriggerErrorDynamicReturnTypeExtension($this->getService('026')); + } + + + public function createService0314(): PHPStan\Type\Php\TrimFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\TrimFunctionDynamicReturnTypeExtension; + } + + + public function createService0315(): PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension(null, $this->getService('029')); + } + + + public function createService0316(): PHPStan\Type\Php\PowFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\PowFunctionReturnTypeExtension; + } + + + public function createService0317(): PHPStan\Type\Php\RoundFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\RoundFunctionReturnTypeExtension($this->getService('026')); + } + + + public function createService0318(): PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension; + } + + + public function createService0319(): PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension; + } + + + public function createService0320(): PHPStan\Type\Php\RangeFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\RangeFunctionReturnTypeExtension; + } + + + public function createService0321(): PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension; + } + + + public function createService0322(): PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension; + } + + + public function createService0323(): PHPStan\Type\Php\ClassImplementsFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\ClassImplementsFunctionReturnTypeExtension; + } + + + public function createService0324(): PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension + { + return new PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension; + } + + + public function createService0325(): PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension + { + return new PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension($this->getService('0230')); + } + + + public function createService0326(): PHPStan\Type\Php\FunctionExistsFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\FunctionExistsFunctionTypeSpecifyingExtension; + } + + + public function createService0327(): PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension; + } + + + public function createService0328(): PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension; + } + + + public function createService0329(): PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension($this->getService('0285')); + } + + + public function createService0330(): PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension; + } + + + public function createService0331(): PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension($this->getService('0334')); + } + + + public function createService0332(): PHPStan\Type\Php\IteratorToArrayFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\IteratorToArrayFunctionReturnTypeExtension; + } + + + public function createService0333(): PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension($this->getService('0334')); + } + + + public function createService0334(): PHPStan\Type\Php\IsAFunctionTypeSpecifyingHelper + { + return new PHPStan\Type\Php\IsAFunctionTypeSpecifyingHelper; + } + + + public function createService0335(): PHPStan\Type\Php\CtypeDigitFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\Php\CtypeDigitFunctionTypeSpecifyingExtension; + } + + + public function createService0336(): PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension( + $this->getService('reflectionProvider'), + $this->getService('0185') + ); + } + + + public function createService0337(): PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension( + $this->getService('reflectionProvider'), + true, + [ + 'stdClass', + 'Illuminate\Http\Request', + 'Illuminate\Support\Optional', + 'Pest\Support\HigherOrderTapProxy', + 'Pest\Expectation', + ] + ); + } + + + public function createService0338(): PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension + { + return new PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension; + } + + + public function createService0339(): PHPStan\Type\Php\SimpleXMLElementXpathMethodReturnTypeExtension + { + return new PHPStan\Type\Php\SimpleXMLElementXpathMethodReturnTypeExtension; + } + + + public function createService0340(): PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension($this->getService('026')); + } + + + public function createService0341(): PHPStan\Type\Php\StrTokFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\StrTokFunctionReturnTypeExtension; + } + + + public function createService0342(): PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension; + } + + + public function createService0343(): PHPStan\Type\Php\SscanfFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\SscanfFunctionDynamicReturnTypeExtension; + } + + + public function createService0344(): PHPStan\Type\Php\StrvalFamilyFunctionReturnTypeExtension + { + return new PHPStan\Type\Php\StrvalFamilyFunctionReturnTypeExtension; + } + + + public function createService0345(): PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension + { + return new PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension; + } + + + public function createService0346(): PHPStan\Type\Php\XMLReaderOpenReturnTypeExtension + { + return new PHPStan\Type\Php\XMLReaderOpenReturnTypeExtension; + } + + + public function createService0347(): PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension + { + return new PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension('ReflectionClass'); + } + + + public function createService0348(): PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension + { + return new PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension('ReflectionClassConstant'); + } + + + public function createService0349(): PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension + { + return new PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension('ReflectionFunctionAbstract'); + } + + + public function createService0350(): PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension + { + return new PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension('ReflectionParameter'); + } + + + public function createService0351(): PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension + { + return new PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension('ReflectionProperty'); + } + + + public function createService0352(): PHPStan\Type\Php\DatePeriodConstructorReturnTypeExtension + { + return new PHPStan\Type\Php\DatePeriodConstructorReturnTypeExtension; + } + + + public function createService0353(): PHPStan\Type\ClosureTypeFactory + { + return new PHPStan\Type\ClosureTypeFactory( + $this->getService('095'), + $this->getService('0360'), + $this->getService('originalBetterReflectionReflector'), + $this->getService('currentPhpVersionPhpParser') + ); + } + + + public function createService0354(): PHPStan\Type\Constant\OversizedArrayBuilder + { + return new PHPStan\Type\Constant\OversizedArrayBuilder; + } + + + public function createService0355(): PHPStan\Rules\Functions\PrintfHelper + { + return new PHPStan\Rules\Functions\PrintfHelper($this->getService('026')); + } + + + public function createService0356(): PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory + { + return new PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory( + $this->getService('phpParserDecorator'), + $this->getService('php8PhpParser'), + $this->getService('0359'), + $this->getService('0360'), + $this->getService('0105'), + $this->getService('0102'), + $this->getService('0100'), + $this->getService('0103'), + $this->getService('099'), + [], + [], + $this->getParameter('analysedPaths'), + ['/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'], + $this->getParameter('analysedPathsFromConfig'), + false + ); + } + + + public function createService0357(): PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory + { + return new class ($this) implements PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory { + private $container; + + + public function __construct(Container_c5db45e753 $container) + { + $this->container = $container; + } + + + public function create(PHPStan\BetterReflection\Reflector\Reflector $reflector): PHPStan\Reflection\BetterReflection\BetterReflectionProvider + { + return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider( + $this->container->getService('0121'), + $this->container->getService('095'), + $this->container->getService('077'), + $reflector, + $this->container->getService('0182'), + $this->container->getService('036'), + $this->container->getService('026'), + $this->container->getService('0122'), + $this->container->getService('stubPhpDocProvider'), + $this->container->getService('094'), + $this->container->getService('relativePathHelper'), + $this->container->getService('025'), + $this->container->getService('084'), + $this->container->getService('0359'), + $this->container->getService('0127'), + $this->container->getService('093'), + [ + 'stdClass', + 'Illuminate\Http\Request', + 'Illuminate\Support\Optional', + 'Pest\Support\HigherOrderTapProxy', + 'Pest\Expectation', + ] + ); + } + }; + } + + + public function createService0358(): PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory + { + return new PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory( + $this->getService('php8PhpParser'), + $this->getService('024'), + $this->getService('026') + ); + } + + + public function createService0359(): PHPStan\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber + { + return $this->getService('0358')->create(); + } + + + public function createService0360(): PHPStan\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber + { + return $this->getService('0361')->create(); + } + + + public function createService0361(): PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory + { + return new PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory( + $this->getService('024'), + $this->getService('026') + ); + } + + + public function createService0362(): PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter( + $this->getService('errorFormatter.github'), + $this->getService('errorFormatter.teamcity') + ); + } + + + public function createService0363(): PHPStan\Rules\Classes\ExistingClassInClassExtendsRule + { + return new PHPStan\Rules\Classes\ExistingClassInClassExtendsRule( + $this->getService('0131'), + $this->getService('reflectionProvider') + ); + } + + + public function createService0364(): PHPStan\Rules\Classes\ExistingClassInInstanceOfRule + { + return new PHPStan\Rules\Classes\ExistingClassInInstanceOfRule( + $this->getService('reflectionProvider'), + $this->getService('0131'), + true + ); + } + + + public function createService0365(): PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule + { + return new PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule( + $this->getService('reflectionProvider'), + $this->getService('0131'), + true + ); + } + + + public function createService0366(): PHPStan\Rules\Functions\CallToNonExistentFunctionRule + { + return new PHPStan\Rules\Functions\CallToNonExistentFunctionRule($this->getService('reflectionProvider'), false); + } + + + public function createService0367(): PHPStan\Rules\Constants\OverridingConstantRule + { + return new PHPStan\Rules\Constants\OverridingConstantRule(true); + } + + + public function createService0368(): PHPStan\Rules\Methods\OverridingMethodRule + { + return new PHPStan\Rules\Methods\OverridingMethodRule( + $this->getService('026'), + $this->getService('0159'), + true, + $this->getService('0160'), + $this->getService('0161'), + $this->getService('0114'), + false + ); + } + + + public function createService0369(): PHPStan\Rules\Missing\MissingReturnRule + { + return new PHPStan\Rules\Missing\MissingReturnRule(false, true); + } + + + public function createService0370(): PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule + { + return new PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule( + $this->getService('reflectionProvider'), + $this->getService('0131'), + false + ); + } + + + public function createService0371(): PHPStan\Rules\Namespaces\ExistingNamesInUseRule + { + return new PHPStan\Rules\Namespaces\ExistingNamesInUseRule( + $this->getService('reflectionProvider'), + $this->getService('0131'), + false + ); + } + + + public function createService0372(): PHPStan\Rules\Properties\AccessPropertiesRule + { + return new PHPStan\Rules\Properties\AccessPropertiesRule($this->getService('0173')); + } + + + public function createService0373(): PHPStan\Rules\Properties\AccessStaticPropertiesRule + { + return new PHPStan\Rules\Properties\AccessStaticPropertiesRule( + $this->getService('reflectionProvider'), + $this->getService('0179'), + $this->getService('0131') + ); + } + + + public function createService0374(): PHPStan\Rules\Properties\ExistingClassesInPropertiesRule + { + return new PHPStan\Rules\Properties\ExistingClassesInPropertiesRule( + $this->getService('reflectionProvider'), + $this->getService('0131'), + $this->getService('0168'), + $this->getService('026'), + true, + false + ); + } + + + public function createService0375(): PHPStan\Rules\Functions\FunctionCallableRule + { + return new PHPStan\Rules\Functions\FunctionCallableRule( + $this->getService('reflectionProvider'), + $this->getService('0179'), + $this->getService('026'), + false, + false + ); + } + + + public function createService0376(): PHPStan\Rules\Properties\OverridingPropertyRule + { + return new PHPStan\Rules\Properties\OverridingPropertyRule($this->getService('026'), true, false); + } + + + public function createService0377(): PHPStan\Rules\Properties\SetPropertyHookParameterRule + { + return new PHPStan\Rules\Properties\SetPropertyHookParameterRule($this->getService('0162'), true, false); + } + + + public function createService0378(): PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule + { + return new PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule( + $this->getService('0179'), + $this->getService('0176'), + $this->getService('0177'), + false + ); + } + + + public function createService0379(): PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule + { + return new PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule( + $this->getService('0176'), + $this->getService('0177'), + $this->getService('0179'), + false + ); + } + + + public function createService0380(): PHPStan\Rules\Variables\CompactVariablesRule + { + return new PHPStan\Rules\Variables\CompactVariablesRule(true); + } + + + public function createService0381(): PHPStan\Rules\Variables\DefinedVariableRule + { + return new PHPStan\Rules\Variables\DefinedVariableRule(true, true); + } + + + public function createService0382(): PHPStan\Rules\Keywords\RequireFileExistsRule + { + return new PHPStan\Rules\Keywords\RequireFileExistsRule('/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'); + } + + + public function createService0383(): PHPStan\Rules\Classes\MixinRule + { + return new PHPStan\Rules\Classes\MixinRule($this->getService('0136')); + } + + + public function createService0384(): PHPStan\Rules\PhpDoc\RequireExtendsCheck + { + return new PHPStan\Rules\PhpDoc\RequireExtendsCheck($this->getService('0131'), true); + } + + + public function createService0385(): PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule + { + return new PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule( + $this->getService('reflectionProvider'), + $this->getService('0131'), + true + ); + } + + + public function createService0386(): PHPStan\Rules\Functions\CallCallablesRule + { + return new PHPStan\Rules\Functions\CallCallablesRule($this->getService('0146'), $this->getService('0179'), false); + } + + + public function createService0387(): PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule + { + return new PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule($this->getService('031'), $this->getService('034')); + } + + + public function createService0388(): PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule + { + return new PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule( + $this->getService('0182'), + $this->getService('reflectionProvider'), + $this->getService('0131'), + $this->getService('0152'), + $this->getService('0162'), + $this->getService('0168'), + true, + false + ); + } + + + public function createService0389(): PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule + { + return new PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule($this->getService('031'), $this->getService('034')); + } + + + public function createService0390(): PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule + { + return new PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule($this->getService('0179'), false); + } + + + public function createService0391(): PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule + { + return new PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule(false); + } + + + public function createService0392(): PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule + { + return new PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule( + $this->getService('0179'), + $this->getService('0130'), + false + ); + } + + + public function createService0393(): PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule + { + return new PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule( + $this->getService('exceptionTypeResolver'), + false + ); + } + + + public function createService0394(): PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule + { + return new PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule( + $this->getService('exceptionTypeResolver'), + false + ); + } + + + public function createService0395(): PHPStan\Rules\Exceptions\ThrowsVoidPropertyHookWithExplicitThrowPointRule + { + return new PHPStan\Rules\Exceptions\ThrowsVoidPropertyHookWithExplicitThrowPointRule( + $this->getService('exceptionTypeResolver'), + false + ); + } + + + public function createService0396(): PHPStan\Rules\Generators\YieldFromTypeRule + { + return new PHPStan\Rules\Generators\YieldFromTypeRule($this->getService('0179'), false); + } + + + public function createService0397(): PHPStan\Rules\Generators\YieldInGeneratorRule + { + return new PHPStan\Rules\Generators\YieldInGeneratorRule(false); + } + + + public function createService0398(): PHPStan\Rules\Classes\ImpossibleInstanceOfRule + { + return new PHPStan\Rules\Classes\ImpossibleInstanceOfRule(true, false, true); + } + + + public function createService0399(): PHPStan\Rules\Comparison\BooleanAndConstantConditionRule + { + return new PHPStan\Rules\Comparison\BooleanAndConstantConditionRule($this->getService('0138'), true, false, true); + } + + + public function createService0400(): PHPStan\Rules\Comparison\BooleanOrConstantConditionRule + { + return new PHPStan\Rules\Comparison\BooleanOrConstantConditionRule($this->getService('0138'), true, false, true); + } + + + public function createService0401(): PHPStan\Rules\Comparison\BooleanNotConstantConditionRule + { + return new PHPStan\Rules\Comparison\BooleanNotConstantConditionRule($this->getService('0138'), true, false, true); + } + + + public function createService0402(): PHPStan\Rules\DeadCode\ConstructorWithoutImpurePointsCollector + { + return new PHPStan\Rules\DeadCode\ConstructorWithoutImpurePointsCollector; + } + + + public function createService0403(): PHPStan\Rules\DeadCode\PossiblyPureNewCollector + { + return new PHPStan\Rules\DeadCode\PossiblyPureNewCollector($this->getService('reflectionProvider')); + } + + + public function createService0404(): PHPStan\Rules\DeadCode\FunctionWithoutImpurePointsCollector + { + return new PHPStan\Rules\DeadCode\FunctionWithoutImpurePointsCollector; + } + + + public function createService0405(): PHPStan\Rules\DeadCode\PossiblyPureFuncCallCollector + { + return new PHPStan\Rules\DeadCode\PossiblyPureFuncCallCollector($this->getService('reflectionProvider')); + } + + + public function createService0406(): PHPStan\Rules\DeadCode\MethodWithoutImpurePointsCollector + { + return new PHPStan\Rules\DeadCode\MethodWithoutImpurePointsCollector; + } + + + public function createService0407(): PHPStan\Rules\DeadCode\PossiblyPureMethodCallCollector + { + return new PHPStan\Rules\DeadCode\PossiblyPureMethodCallCollector; + } + + + public function createService0408(): PHPStan\Rules\DeadCode\PossiblyPureStaticCallCollector + { + return new PHPStan\Rules\DeadCode\PossiblyPureStaticCallCollector; + } + + + public function createService0409(): PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule + { + return new PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule($this->getService('0175'), [], [], false); + } + + + public function createService0410(): PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule + { + return new PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule($this->getService('0138'), true, true); + } + + + public function createService0411(): PHPStan\Rules\Comparison\ElseIfConstantConditionRule + { + return new PHPStan\Rules\Comparison\ElseIfConstantConditionRule($this->getService('0138'), true, false, true); + } + + + public function createService0412(): PHPStan\Rules\Comparison\IfConstantConditionRule + { + return new PHPStan\Rules\Comparison\IfConstantConditionRule($this->getService('0138'), true, true); + } + + + public function createService0413(): PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule + { + return new PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule($this->getService('0139'), true, false, true); + } + + + public function createService0414(): PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule + { + return new PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule($this->getService('0139'), true, false, true); + } + + + public function createService0415(): PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule + { + return new PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule($this->getService('0139'), true, false, true); + } + + + public function createService0416(): PHPStan\Rules\Comparison\LogicalXorConstantConditionRule + { + return new PHPStan\Rules\Comparison\LogicalXorConstantConditionRule($this->getService('0138'), true, false, true); + } + + + public function createService0417(): PHPStan\Rules\Comparison\MatchExpressionRule + { + return new PHPStan\Rules\Comparison\MatchExpressionRule($this->getService('0138'), false, true); + } + + + public function createService0418(): PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule + { + return new PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule(true, true); + } + + + public function createService0419(): PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule + { + return new PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule($this->getService('063'), true, false, true); + } + + + public function createService0420(): PHPStan\Rules\Comparison\ConstantLooseComparisonRule + { + return new PHPStan\Rules\Comparison\ConstantLooseComparisonRule(true, false, true); + } + + + public function createService0421(): PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule + { + return new PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule($this->getService('0138'), true, true); + } + + + public function createService0422(): PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule + { + return new PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule($this->getService('0138'), true, true); + } + + + public function createService0423(): PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule + { + return new PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule($this->getService('0138'), true, true); + } + + + public function createService0424(): PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule + { + return new PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule($this->getService('0145')); + } + + + public function createService0425(): PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule + { + return new PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule($this->getService('0182'), $this->getService('0145')); + } + + + public function createService0426(): PHPStan\Rules\Exceptions\TooWidePropertyHookThrowTypeRule + { + return new PHPStan\Rules\Exceptions\TooWidePropertyHookThrowTypeRule($this->getService('0182'), $this->getService('0145')); + } + + + public function createService0427(): PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule + { + return new PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule(false); + } + + + public function createService0428(): PHPStan\Rules\Properties\NullsafePropertyFetchRule + { + return new PHPStan\Rules\Properties\NullsafePropertyFetchRule; + } + + + public function createService0429(): PHPStan\Rules\Traits\TraitDeclarationCollector + { + return new PHPStan\Rules\Traits\TraitDeclarationCollector; + } + + + public function createService0430(): PHPStan\Rules\Traits\TraitUseCollector + { + return new PHPStan\Rules\Traits\TraitUseCollector; + } + + + public function createService0431(): PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule + { + return new PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule($this->getService('exceptionTypeResolver'), true); + } + + + public function createService0432(): PHPStan\Rules\Functions\RandomIntParametersRule + { + return new PHPStan\Rules\Functions\RandomIntParametersRule( + $this->getService('reflectionProvider'), + $this->getService('026'), + false + ); + } + + + public function createService0433(): PHPStan\Rules\Functions\ArrayFilterRule + { + return new PHPStan\Rules\Functions\ArrayFilterRule($this->getService('reflectionProvider'), true, true); + } + + + public function createService0434(): PHPStan\Rules\Functions\ArrayValuesRule + { + return new PHPStan\Rules\Functions\ArrayValuesRule($this->getService('reflectionProvider'), true, true); + } + + + public function createService0435(): PHPStan\Rules\Functions\ParameterCastableToNumberRule + { + return new PHPStan\Rules\Functions\ParameterCastableToNumberRule( + $this->getService('reflectionProvider'), + $this->getService('0149') + ); + } + + + public function createService0436(): Larastan\Larastan\Methods\RelationForwardsCallsExtension + { + return new Larastan\Larastan\Methods\RelationForwardsCallsExtension( + $this->getService('0509'), + $this->getService('reflectionProvider') + ); + } + + + public function createService0437(): Larastan\Larastan\Methods\ModelForwardsCallsExtension + { + return new Larastan\Larastan\Methods\ModelForwardsCallsExtension( + $this->getService('0509'), + $this->getService('reflectionProvider'), + $this->getService('0438') + ); + } + + + public function createService0438(): Larastan\Larastan\Methods\EloquentBuilderForwardsCallsExtension + { + return new Larastan\Larastan\Methods\EloquentBuilderForwardsCallsExtension( + $this->getService('0509'), + $this->getService('reflectionProvider') + ); + } + + + public function createService0439(): Larastan\Larastan\Methods\HigherOrderTapProxyExtension + { + return new Larastan\Larastan\Methods\HigherOrderTapProxyExtension; + } + + + public function createService0440(): Larastan\Larastan\Methods\HigherOrderCollectionProxyExtension + { + return new Larastan\Larastan\Methods\HigherOrderCollectionProxyExtension($this->getService('0535')); + } + + + public function createService0441(): Larastan\Larastan\Methods\StorageMethodsClassReflectionExtension + { + return new Larastan\Larastan\Methods\StorageMethodsClassReflectionExtension($this->getService('reflectionProvider')); + } + + + public function createService0442(): Larastan\Larastan\Methods\Extension + { + return new Larastan\Larastan\Methods\Extension($this->getService('0115'), $this->getService('reflectionProvider')); + } + + + public function createService0443(): Larastan\Larastan\Methods\ModelFactoryMethodsClassReflectionExtension + { + return new Larastan\Larastan\Methods\ModelFactoryMethodsClassReflectionExtension($this->getService('reflectionProvider')); + } + + + public function createService0444(): Larastan\Larastan\Methods\RedirectResponseMethodsClassReflectionExtension + { + return new Larastan\Larastan\Methods\RedirectResponseMethodsClassReflectionExtension; + } + + + public function createService0445(): Larastan\Larastan\Methods\MacroMethodsClassReflectionExtension + { + return new Larastan\Larastan\Methods\MacroMethodsClassReflectionExtension( + $this->getService('reflectionProvider'), + $this->getService('0353') + ); + } + + + public function createService0446(): Larastan\Larastan\Methods\ViewWithMethodsClassReflectionExtension + { + return new Larastan\Larastan\Methods\ViewWithMethodsClassReflectionExtension; + } + + + public function createService0447(): Larastan\Larastan\Properties\ModelAccessorExtension + { + return new Larastan\Larastan\Properties\ModelAccessorExtension($this->getService('0507')); + } + + + public function createService0448(): Larastan\Larastan\Properties\ModelPropertyExtension + { + return new Larastan\Larastan\Properties\ModelPropertyExtension($this->getService('0507')); + } + + + public function createService0449(): Larastan\Larastan\Properties\HigherOrderCollectionProxyPropertyExtension + { + return new Larastan\Larastan\Properties\HigherOrderCollectionProxyPropertyExtension($this->getService('0535')); + } + + + public function createService0450(): Larastan\Larastan\ReturnTypes\HigherOrderTapProxyExtension + { + return new Larastan\Larastan\ReturnTypes\HigherOrderTapProxyExtension; + } + + + public function createService0451(): Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension('Illuminate\Contracts\Container\Container'); + } + + + public function createService0452(): Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension('Illuminate\Container\Container'); + } + + + public function createService0453(): Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension('Illuminate\Foundation\Application'); + } + + + public function createService0454(): Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension('Illuminate\Contracts\Foundation\Application'); + } + + + public function createService0455(): Larastan\Larastan\Properties\ModelRelationsExtension + { + return new Larastan\Larastan\Properties\ModelRelationsExtension($this->getService('0474')); + } + + + public function createService0456(): Larastan\Larastan\ReturnTypes\ModelOnlyDynamicMethodReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\ModelOnlyDynamicMethodReturnTypeExtension; + } + + + public function createService0457(): Larastan\Larastan\ReturnTypes\ModelFactoryDynamicStaticMethodReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\ModelFactoryDynamicStaticMethodReturnTypeExtension($this->getService('reflectionProvider')); + } + + + public function createService0458(): Larastan\Larastan\ReturnTypes\ModelDynamicStaticMethodReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\ModelDynamicStaticMethodReturnTypeExtension( + $this->getService('0509'), + $this->getService('0474'), + $this->getService('reflectionProvider') + ); + } + + + public function createService0459(): Larastan\Larastan\ReturnTypes\AppMakeDynamicReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\AppMakeDynamicReturnTypeExtension($this->getService('0532')); + } + + + public function createService0460(): Larastan\Larastan\ReturnTypes\AuthExtension + { + return new Larastan\Larastan\ReturnTypes\AuthExtension; + } + + + public function createService0461(): Larastan\Larastan\ReturnTypes\GuardDynamicStaticMethodReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\GuardDynamicStaticMethodReturnTypeExtension; + } + + + public function createService0462(): Larastan\Larastan\ReturnTypes\AuthManagerExtension + { + return new Larastan\Larastan\ReturnTypes\AuthManagerExtension; + } + + + public function createService0463(): Larastan\Larastan\ReturnTypes\DateExtension + { + return new Larastan\Larastan\ReturnTypes\DateExtension; + } + + + public function createService0464(): Larastan\Larastan\ReturnTypes\GuardExtension + { + return new Larastan\Larastan\ReturnTypes\GuardExtension; + } + + + public function createService0465(): Larastan\Larastan\ReturnTypes\RequestFileExtension + { + return new Larastan\Larastan\ReturnTypes\RequestFileExtension; + } + + + public function createService0466(): Larastan\Larastan\ReturnTypes\RequestRouteExtension + { + return new Larastan\Larastan\ReturnTypes\RequestRouteExtension; + } + + + public function createService0467(): Larastan\Larastan\ReturnTypes\RequestUserExtension + { + return new Larastan\Larastan\ReturnTypes\RequestUserExtension; + } + + + public function createService0468(): Larastan\Larastan\ReturnTypes\EloquentBuilderExtension + { + return new Larastan\Larastan\ReturnTypes\EloquentBuilderExtension( + $this->getService('reflectionProvider'), + $this->getService('0474') + ); + } + + + public function createService0469(): Larastan\Larastan\ReturnTypes\RelationFindExtension + { + return new Larastan\Larastan\ReturnTypes\RelationFindExtension( + $this->getService('reflectionProvider'), + $this->getService('0474') + ); + } + + + public function createService0470(): Larastan\Larastan\ReturnTypes\RelationCollectionExtension + { + return new Larastan\Larastan\ReturnTypes\RelationCollectionExtension( + $this->getService('reflectionProvider'), + $this->getService('0474') + ); + } + + + public function createService0471(): Larastan\Larastan\ReturnTypes\ModelFindExtension + { + return new Larastan\Larastan\ReturnTypes\ModelFindExtension($this->getService('reflectionProvider'), $this->getService('0474')); + } + + + public function createService0472(): Larastan\Larastan\ReturnTypes\BuilderModelFindExtension + { + return new Larastan\Larastan\ReturnTypes\BuilderModelFindExtension( + $this->getService('reflectionProvider'), + $this->getService('0474') + ); + } + + + public function createService0473(): Larastan\Larastan\ReturnTypes\TestCaseExtension + { + return new Larastan\Larastan\ReturnTypes\TestCaseExtension; + } + + + public function createService0474(): Larastan\Larastan\Support\CollectionHelper + { + return new Larastan\Larastan\Support\CollectionHelper($this->getService('reflectionProvider')); + } + + + public function createService0475(): Larastan\Larastan\ReturnTypes\Helpers\AuthExtension + { + return new Larastan\Larastan\ReturnTypes\Helpers\AuthExtension; + } + + + public function createService0476(): Larastan\Larastan\ReturnTypes\Helpers\CollectExtension + { + return new Larastan\Larastan\ReturnTypes\Helpers\CollectExtension($this->getService('0474')); + } + + + public function createService0477(): Larastan\Larastan\ReturnTypes\Helpers\NowAndTodayExtension + { + return new Larastan\Larastan\ReturnTypes\Helpers\NowAndTodayExtension; + } + + + public function createService0478(): Larastan\Larastan\ReturnTypes\Helpers\ResponseExtension + { + return new Larastan\Larastan\ReturnTypes\Helpers\ResponseExtension; + } + + + public function createService0479(): Larastan\Larastan\ReturnTypes\Helpers\ValidatorExtension + { + return new Larastan\Larastan\ReturnTypes\Helpers\ValidatorExtension; + } + + + public function createService0480(): Larastan\Larastan\ReturnTypes\Helpers\LiteralExtension + { + return new Larastan\Larastan\ReturnTypes\Helpers\LiteralExtension; + } + + + public function createService0481(): Larastan\Larastan\ReturnTypes\CollectionFilterRejectDynamicReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\CollectionFilterRejectDynamicReturnTypeExtension; + } + + + public function createService0482(): Larastan\Larastan\ReturnTypes\CollectionWhereNotNullDynamicReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\CollectionWhereNotNullDynamicReturnTypeExtension; + } + + + public function createService0483(): Larastan\Larastan\ReturnTypes\NewModelQueryDynamicMethodReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\NewModelQueryDynamicMethodReturnTypeExtension($this->getService('0509')); + } + + + public function createService0484(): Larastan\Larastan\ReturnTypes\FactoryDynamicMethodReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\FactoryDynamicMethodReturnTypeExtension; + } + + + public function createService0485(): Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension + { + return new Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension(false, 'abort'); + } + + + public function createService0486(): Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension + { + return new Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension(true, 'abort'); + } + + + public function createService0487(): Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension + { + return new Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension(false, 'throw'); + } + + + public function createService0488(): Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension + { + return new Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension(true, 'throw'); + } + + + public function createService0489(): Larastan\Larastan\ReturnTypes\Helpers\AppExtension + { + return new Larastan\Larastan\ReturnTypes\Helpers\AppExtension($this->getService('0532')); + } + + + public function createService0490(): Larastan\Larastan\ReturnTypes\Helpers\ValueExtension + { + return new Larastan\Larastan\ReturnTypes\Helpers\ValueExtension; + } + + + public function createService0491(): Larastan\Larastan\ReturnTypes\Helpers\StrExtension + { + return new Larastan\Larastan\ReturnTypes\Helpers\StrExtension; + } + + + public function createService0492(): Larastan\Larastan\ReturnTypes\Helpers\TapExtension + { + return new Larastan\Larastan\ReturnTypes\Helpers\TapExtension; + } + + + public function createService0493(): Larastan\Larastan\ReturnTypes\StorageDynamicStaticMethodReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\StorageDynamicStaticMethodReturnTypeExtension; + } + + + public function createService0494(): Larastan\Larastan\Types\GenericEloquentCollectionTypeNodeResolverExtension + { + return new Larastan\Larastan\Types\GenericEloquentCollectionTypeNodeResolverExtension($this->getService('040')); + } + + + public function createService0495(): Larastan\Larastan\Types\ViewStringTypeNodeResolverExtension + { + return new Larastan\Larastan\Types\ViewStringTypeNodeResolverExtension; + } + + + public function createService0496(): Larastan\Larastan\Rules\OctaneCompatibilityRule + { + return new Larastan\Larastan\Rules\OctaneCompatibilityRule; + } + + + public function createService0497(): Larastan\Larastan\Rules\NoEnvCallsOutsideOfConfigRule + { + return new Larastan\Larastan\Rules\NoEnvCallsOutsideOfConfigRule; + } + + + public function createService0498(): Larastan\Larastan\Rules\NoModelMakeRule + { + return new Larastan\Larastan\Rules\NoModelMakeRule($this->getService('reflectionProvider')); + } + + + public function createService0499(): Larastan\Larastan\Rules\NoUnnecessaryCollectionCallRule + { + return new Larastan\Larastan\Rules\NoUnnecessaryCollectionCallRule( + $this->getService('reflectionProvider'), + $this->getService('0448'), + [], + [] + ); + } + + + public function createService0500(): Larastan\Larastan\Rules\ModelAppendsRule + { + return new Larastan\Larastan\Rules\ModelAppendsRule($this->getService('0507')); + } + + + public function createService0501(): Larastan\Larastan\Types\GenericEloquentBuilderTypeNodeResolverExtension + { + return new Larastan\Larastan\Types\GenericEloquentBuilderTypeNodeResolverExtension($this->getService('reflectionProvider')); + } + + + public function createService0502(): Larastan\Larastan\ReturnTypes\AppEnvironmentReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\AppEnvironmentReturnTypeExtension; + } + + + public function createService0503(): Larastan\Larastan\Types\ModelProperty\ModelPropertyTypeNodeResolverExtension + { + return new Larastan\Larastan\Types\ModelProperty\ModelPropertyTypeNodeResolverExtension( + $this->getService('040'), + true, + $this->getService('0507') + ); + } + + + public function createService0504(): Larastan\Larastan\Properties\MigrationHelper + { + return new Larastan\Larastan\Properties\MigrationHelper( + $this->getService('currentPhpVersionSimpleDirectParser'), + [], + $this->getService('084'), + false, + $this->getService('reflectionProvider') + ); + } + + + public function createService0505(): Larastan\Larastan\Properties\SquashedMigrationHelper + { + return new Larastan\Larastan\Properties\SquashedMigrationHelper([], $this->getService('084'), $this->getService('0513'), false); + } + + + public function createService0506(): Larastan\Larastan\Properties\ModelCastHelper + { + return new Larastan\Larastan\Properties\ModelCastHelper($this->getService('reflectionProvider')); + } + + + public function createService0507(): Larastan\Larastan\Properties\ModelPropertyHelper + { + return new Larastan\Larastan\Properties\ModelPropertyHelper( + $this->getService('042'), + $this->getService('0504'), + $this->getService('0505'), + $this->getService('0506') + ); + } + + + public function createService0508(): Larastan\Larastan\Rules\ModelRuleHelper + { + return new Larastan\Larastan\Rules\ModelRuleHelper; + } + + + public function createService0509(): Larastan\Larastan\Methods\BuilderHelper + { + return new Larastan\Larastan\Methods\BuilderHelper($this->getService('reflectionProvider'), true, $this->getService('0445')); + } + + + public function createService0510(): Larastan\Larastan\Rules\RelationExistenceRule + { + return new Larastan\Larastan\Rules\RelationExistenceRule($this->getService('0508')); + } + + + public function createService0511(): Larastan\Larastan\Rules\CheckDispatchArgumentTypesCompatibleWithClassConstructorRule + { + return new Larastan\Larastan\Rules\CheckDispatchArgumentTypesCompatibleWithClassConstructorRule( + $this->getService('reflectionProvider'), + $this->getService('0146'), + 'Illuminate\Foundation\Bus\Dispatchable' + ); + } + + + public function createService0512(): Larastan\Larastan\Rules\CheckDispatchArgumentTypesCompatibleWithClassConstructorRule + { + return new Larastan\Larastan\Rules\CheckDispatchArgumentTypesCompatibleWithClassConstructorRule( + $this->getService('reflectionProvider'), + $this->getService('0146'), + 'Illuminate\Foundation\Events\Dispatchable' + ); + } + + + public function createService0513(): Larastan\Larastan\Properties\Schema\PhpMyAdminDataTypeToPhpTypeConverter + { + return new Larastan\Larastan\Properties\Schema\PhpMyAdminDataTypeToPhpTypeConverter; + } + + + public function createService0514(): Larastan\Larastan\LarastanStubFilesExtension + { + return new Larastan\Larastan\LarastanStubFilesExtension; + } + + + public function createService0515(): Larastan\Larastan\Rules\UnusedViewsRule + { + return new Larastan\Larastan\Rules\UnusedViewsRule($this->getService('0521'), $this->getService('0522')); + } + + + public function createService0516(): Larastan\Larastan\Collectors\UsedViewFunctionCollector + { + return new Larastan\Larastan\Collectors\UsedViewFunctionCollector; + } + + + public function createService0517(): Larastan\Larastan\Collectors\UsedEmailViewCollector + { + return new Larastan\Larastan\Collectors\UsedEmailViewCollector; + } + + + public function createService0518(): Larastan\Larastan\Collectors\UsedViewMakeCollector + { + return new Larastan\Larastan\Collectors\UsedViewMakeCollector; + } + + + public function createService0519(): Larastan\Larastan\Collectors\UsedViewFacadeMakeCollector + { + return new Larastan\Larastan\Collectors\UsedViewFacadeMakeCollector; + } + + + public function createService0520(): Larastan\Larastan\Collectors\UsedRouteFacadeViewCollector + { + return new Larastan\Larastan\Collectors\UsedRouteFacadeViewCollector; + } + + + public function createService0521(): Larastan\Larastan\Collectors\UsedViewInAnotherViewCollector + { + return new Larastan\Larastan\Collectors\UsedViewInAnotherViewCollector( + $this->getService('currentPhpVersionSimpleDirectParser'), + $this->getService('0522') + ); + } + + + public function createService0522(): Larastan\Larastan\Support\ViewFileHelper + { + return new Larastan\Larastan\Support\ViewFileHelper([], $this->getService('084')); + } + + + public function createService0523(): Larastan\Larastan\ReturnTypes\ApplicationMakeDynamicReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\ApplicationMakeDynamicReturnTypeExtension($this->getService('0532')); + } + + + public function createService0524(): Larastan\Larastan\ReturnTypes\ContainerMakeDynamicReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\ContainerMakeDynamicReturnTypeExtension($this->getService('0532')); + } + + + public function createService0525(): Larastan\Larastan\ReturnTypes\ConsoleCommand\ArgumentDynamicReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\ConsoleCommand\ArgumentDynamicReturnTypeExtension( + $this->getService('0533'), + $this->getService('0534') + ); + } + + + public function createService0526(): Larastan\Larastan\ReturnTypes\ConsoleCommand\HasArgumentDynamicReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\ConsoleCommand\HasArgumentDynamicReturnTypeExtension($this->getService('0533')); + } + + + public function createService0527(): Larastan\Larastan\ReturnTypes\ConsoleCommand\OptionDynamicReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\ConsoleCommand\OptionDynamicReturnTypeExtension( + $this->getService('0533'), + $this->getService('0534') + ); + } + + + public function createService0528(): Larastan\Larastan\ReturnTypes\ConsoleCommand\HasOptionDynamicReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\ConsoleCommand\HasOptionDynamicReturnTypeExtension($this->getService('0533')); + } + + + public function createService0529(): Larastan\Larastan\ReturnTypes\TranslatorGetReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\TranslatorGetReturnTypeExtension; + } + + + public function createService0530(): Larastan\Larastan\ReturnTypes\TransHelperReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\TransHelperReturnTypeExtension; + } + + + public function createService0531(): Larastan\Larastan\ReturnTypes\DoubleUnderscoreHelperReturnTypeExtension + { + return new Larastan\Larastan\ReturnTypes\DoubleUnderscoreHelperReturnTypeExtension; + } + + + public function createService0532(): Larastan\Larastan\ReturnTypes\AppMakeHelper + { + return new Larastan\Larastan\ReturnTypes\AppMakeHelper; + } + + + public function createService0533(): Larastan\Larastan\Internal\ConsoleApplicationResolver + { + return new Larastan\Larastan\Internal\ConsoleApplicationResolver; + } + + + public function createService0534(): Larastan\Larastan\Internal\ConsoleApplicationHelper + { + return new Larastan\Larastan\Internal\ConsoleApplicationHelper($this->getService('0533')); + } + + + public function createService0535(): Larastan\Larastan\Support\HigherOrderCollectionProxyHelper + { + return new Larastan\Larastan\Support\HigherOrderCollectionProxyHelper($this->getService('reflectionProvider')); + } + + + public function createService0536(): Carbon\PHPStan\MacroExtension + { + return new Carbon\PHPStan\MacroExtension($this->getService('reflectionProvider'), $this->getService('0353')); + } + + + public function createService0537(): PHPStan\Rules\Deprecations\DeprecatedClassHelper + { + return new PHPStan\Rules\Deprecations\DeprecatedClassHelper($this->getService('reflectionProvider')); + } + + + public function createService0538(): PHPStan\DependencyInjection\LazyDeprecatedScopeResolverProvider + { + return new PHPStan\DependencyInjection\LazyDeprecatedScopeResolverProvider($this->getService('074')); + } + + + public function createService0539(): PHPStan\Rules\Deprecations\DeprecatedScopeHelper + { + return $this->getService('0538')->get(); + } + + + public function createService0540(): PHPStan\Rules\Deprecations\DefaultDeprecatedScopeResolver + { + return new PHPStan\Rules\Deprecations\DefaultDeprecatedScopeResolver; + } + + + public function createService0541(): PHPStan\Rules\Deprecations\CallWithDeprecatedIniOptionRule + { + return new PHPStan\Rules\Deprecations\CallWithDeprecatedIniOptionRule( + $this->getService('reflectionProvider'), + $this->getService('0539'), + $this->getService('026') + ); + } + + + public function createService0542(): PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension + { + return new PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension; + } + + + public function createService0543(): PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension + { + return new PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension; + } + + + public function createService0544(): PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension + { + return new PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension; + } + + + public function createService0545(): PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension + { + return new PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension; + } + + + public function createService0546(): PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension + { + return new PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension; + } + + + public function createService0547(): PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension + { + return new PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension; + } + + + public function createService0548(): PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension + { + return new PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension; + } + + + public function createService0549(): PHPStan\Rules\PHPUnit\CoversHelper + { + return new PHPStan\Rules\PHPUnit\CoversHelper($this->getService('reflectionProvider')); + } + + + public function createService0550(): PHPStan\Rules\PHPUnit\AnnotationHelper + { + return new PHPStan\Rules\PHPUnit\AnnotationHelper; + } + + + public function createService0551(): PHPStan\Rules\PHPUnit\DataProviderHelper + { + return $this->getService('0552')->create(); + } + + + public function createService0552(): PHPStan\Rules\PHPUnit\DataProviderHelperFactory + { + return new PHPStan\Rules\PHPUnit\DataProviderHelperFactory($this->getService('reflectionProvider'), $this->getService('0182')); + } + + + public function createService0553(): PHPStan\Rules\PHPUnit\DataProviderDeclarationRule + { + return new PHPStan\Rules\PHPUnit\DataProviderDeclarationRule($this->getService('0551'), false, true); + } + + + public function createService0554(): PHPStan\Rules\PHPUnit\AssertEqualsIsDiscouragedRule + { + return new PHPStan\Rules\PHPUnit\AssertEqualsIsDiscouragedRule; + } + + + public function createServiceBetterReflectionProvider(): PHPStan\Reflection\BetterReflection\BetterReflectionProvider + { + return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider( + $this->getService('0121'), + $this->getService('095'), + $this->getService('077'), + $this->getService('betterReflectionReflector'), + $this->getService('0182'), + $this->getService('036'), + $this->getService('026'), + $this->getService('0122'), + $this->getService('stubPhpDocProvider'), + $this->getService('094'), + $this->getService('relativePathHelper'), + $this->getService('025'), + $this->getService('084'), + $this->getService('0359'), + $this->getService('0127'), + $this->getService('093'), + [ + 'stdClass', + 'Illuminate\Http\Request', + 'Illuminate\Support\Optional', + 'Pest\Support\HigherOrderTapProxy', + 'Pest\Expectation', + ] + ); + } + + + public function createServiceBetterReflectionReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector + { + return new PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector($this->getService('originalBetterReflectionReflector')); + } + + + public function createServiceBetterReflectionSourceLocator(): PHPStan\BetterReflection\SourceLocator\Type\SourceLocator + { + return $this->getService('0356')->create(); + } + + + public function createServiceCacheStorage(): PHPStan\Cache\FileCacheStorage + { + return new PHPStan\Cache\FileCacheStorage('/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/build/phpstan/cache/PHPStan'); + } + + + public function createServiceContainer(): Container_c5db45e753 + { + return $this; + } + + + public function createServiceCurrentPhpVersionLexer(): PhpParser\Lexer + { + return $this->getService('02')->create(); + } + + + public function createServiceCurrentPhpVersionPhpParser(): PhpParser\ParserAbstract + { + return $this->getService('currentPhpVersionPhpParserFactory')->create(); + } + + + public function createServiceCurrentPhpVersionPhpParserFactory(): PHPStan\Parser\PhpParserFactory + { + return new PHPStan\Parser\PhpParserFactory($this->getService('currentPhpVersionLexer'), $this->getService('026')); + } + + + public function createServiceCurrentPhpVersionRichParser(): PHPStan\Parser\RichParser + { + return new PHPStan\Parser\RichParser( + $this->getService('currentPhpVersionPhpParser'), + $this->getService('03'), + $this->getService('074'), + $this->getService('055') + ); + } + + + public function createServiceCurrentPhpVersionSimpleDirectParser(): PHPStan\Parser\SimpleParser + { + return new PHPStan\Parser\SimpleParser( + $this->getService('currentPhpVersionPhpParser'), + $this->getService('03'), + $this->getService('021'), + $this->getService('022') + ); + } + + + public function createServiceCurrentPhpVersionSimpleParser(): PHPStan\Parser\CleaningParser + { + return new PHPStan\Parser\CleaningParser($this->getService('currentPhpVersionSimpleDirectParser'), $this->getService('026')); + } + + + public function createServiceDefaultAnalysisParser(): PHPStan\Parser\CachedParser + { + return new PHPStan\Parser\CachedParser($this->getService('pathRoutingParser'), 256); + } + + + 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')); + } + + + 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'), + $this->getService('simpleRelativePathHelper'), + $this->getService('0362'), + true, + null, + null + ); + } + + + public function createServiceErrorFormatter__teamcity(): PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter + { + return new PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter($this->getService('simpleRelativePathHelper')); + } + + + public function createServiceExceptionTypeResolver(): PHPStan\Rules\Exceptions\ExceptionTypeResolver + { + return $this->getService('0140'); + } + + + public function createServiceFileExcluderAnalyse(): PHPStan\File\FileExcluder + { + return $this->getService('085')->createAnalyseFileExcluder(); + } + + + public function createServiceFileExcluderScan(): PHPStan\File\FileExcluder + { + return $this->getService('085')->createScanFileExcluder(); + } + + + public function createServiceFileFinderAnalyse(): PHPStan\File\FileFinder + { + return new PHPStan\File\FileFinder($this->getService('fileExcluderAnalyse'), $this->getService('084'), ['php']); + } + + + public function createServiceFileFinderScan(): PHPStan\File\FileFinder + { + return new PHPStan\File\FileFinder($this->getService('fileExcluderScan'), $this->getService('084'), ['php']); + } + + + public function createServiceFreshStubParser(): PHPStan\Parser\StubParser + { + return new PHPStan\Parser\StubParser($this->getService('php8PhpParser'), $this->getService('03')); + } + + + public function createServiceNodeScopeResolverReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector + { + return $this->getService('betterReflectionReflector'); + } + + + public function createServiceOriginalBetterReflectionReflector(): PHPStan\BetterReflection\Reflector\DefaultReflector + { + return new PHPStan\BetterReflection\Reflector\DefaultReflector($this->getService('betterReflectionSourceLocator')); + } + + + public function createServiceParentDirectoryRelativePathHelper(): PHPStan\File\ParentDirectoryRelativePathHelper + { + return new PHPStan\File\ParentDirectoryRelativePathHelper('/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'); + } + + + public function createServicePathRoutingParser(): PHPStan\Parser\PathRoutingParser + { + return new PHPStan\Parser\PathRoutingParser( + $this->getService('084'), + $this->getService('currentPhpVersionRichParser'), + $this->getService('currentPhpVersionSimpleParser'), + $this->getService('php8Parser') + ); + } + + + public function createServicePhp8Lexer(): PhpParser\Lexer\Emulative + { + return $this->getService('02')->createEmulative(); + } + + + public function createServicePhp8Parser(): PHPStan\Parser\SimpleParser + { + return new PHPStan\Parser\SimpleParser( + $this->getService('php8PhpParser'), + $this->getService('03'), + $this->getService('021'), + $this->getService('022') + ); + } + + + public function createServicePhp8PhpParser(): PhpParser\Parser\Php8 + { + return new PhpParser\Parser\Php8($this->getService('php8Lexer')); + } + + + public function createServicePhpParserDecorator(): PHPStan\Parser\PhpParserDecorator + { + return new PHPStan\Parser\PhpParserDecorator($this->getService('defaultAnalysisParser')); + } + + + public function createServicePhpstanDiagnoseExtension(): PHPStan\Diagnose\PHPStanDiagnoseExtension + { + return new PHPStan\Diagnose\PHPStanDiagnoseExtension( + $this->getService('026'), + null, + $this->getService('084'), + ['/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'], + [ + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/parametersSchema.neon', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level5.neon', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level4.neon', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level3.neon', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level2.neon', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level1.neon', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level0.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nesbot/carbon/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/pestphp/pest/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/rules.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/rules.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan.neon.dist', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan-baseline.neon', + ], + $this->getService('029') + ); + } + + + 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('betterReflectionProvider')); + } + + + public function createServiceRegistry(): PHPStan\Rules\LazyRegistry + { + return new PHPStan\Rules\LazyRegistry($this->getService('074')); + } + + + public function createServiceRelativePathHelper(): PHPStan\File\RelativePathHelper + { + return new PHPStan\File\FuzzyRelativePathHelper( + $this->getService('parentDirectoryRelativePathHelper'), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify', + $this->getParameter('analysedPaths') + ); + } + + + public function createServiceRules__0(): PHPStan\Rules\Debug\DebugScopeRule + { + return new PHPStan\Rules\Debug\DebugScopeRule($this->getService('reflectionProvider')); + } + + + public function createServiceRules__1(): PHPStan\Rules\Debug\DumpPhpDocTypeRule + { + return new PHPStan\Rules\Debug\DumpPhpDocTypeRule($this->getService('reflectionProvider'), $this->getService('035')); + } + + + public function createServiceRules__10(): PHPStan\Rules\Api\ApiInterfaceExtendsRule + { + return new PHPStan\Rules\Api\ApiInterfaceExtendsRule($this->getService('0128'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__100(): PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyRule + { + return new PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyRule; + } + + + public function createServiceRules__101(): PHPStan\Rules\Regexp\RegularExpressionPatternRule + { + return new PHPStan\Rules\Regexp\RegularExpressionPatternRule($this->getService('0276')); + } + + + public function createServiceRules__102(): PHPStan\Rules\Traits\ConflictingTraitConstantsRule + { + return new PHPStan\Rules\Traits\ConflictingTraitConstantsRule($this->getService('095'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__103(): PHPStan\Rules\Traits\ConstantsInTraitsRule + { + return new PHPStan\Rules\Traits\ConstantsInTraitsRule($this->getService('026')); + } + + + public function createServiceRules__104(): PHPStan\Rules\Traits\TraitAttributesRule + { + return new PHPStan\Rules\Traits\TraitAttributesRule($this->getService('0129')); + } + + + public function createServiceRules__105(): PHPStan\Rules\Types\InvalidTypesInUnionRule + { + return new PHPStan\Rules\Types\InvalidTypesInUnionRule; + } + + + public function createServiceRules__106(): PHPStan\Rules\Variables\UnsetRule + { + return new PHPStan\Rules\Variables\UnsetRule; + } + + + public function createServiceRules__107(): PHPStan\Rules\Whitespace\FileWhitespaceRule + { + return new PHPStan\Rules\Whitespace\FileWhitespaceRule; + } + + + public function createServiceRules__108(): PHPStan\Rules\Classes\UnusedConstructorParametersRule + { + return new PHPStan\Rules\Classes\UnusedConstructorParametersRule($this->getService('0180')); + } + + + public function createServiceRules__109(): PHPStan\Rules\Constants\ConstantRule + { + return new PHPStan\Rules\Constants\ConstantRule; + } + + + public function createServiceRules__11(): PHPStan\Rules\Api\ApiMethodCallRule + { + return new PHPStan\Rules\Api\ApiMethodCallRule($this->getService('0128')); + } + + + public function createServiceRules__110(): PHPStan\Rules\Functions\UnusedClosureUsesRule + { + return new PHPStan\Rules\Functions\UnusedClosureUsesRule($this->getService('0180')); + } + + + public function createServiceRules__111(): PHPStan\Rules\Variables\EmptyRule + { + return new PHPStan\Rules\Variables\EmptyRule($this->getService('0156')); + } + + + public function createServiceRules__112(): PHPStan\Rules\Variables\IssetRule + { + return new PHPStan\Rules\Variables\IssetRule($this->getService('0156')); + } + + + public function createServiceRules__113(): PHPStan\Rules\Variables\NullCoalesceRule + { + return new PHPStan\Rules\Variables\NullCoalesceRule($this->getService('0156')); + } + + + public function createServiceRules__114(): PHPStan\Rules\Cast\EchoRule + { + return new PHPStan\Rules\Cast\EchoRule($this->getService('0179')); + } + + + public function createServiceRules__115(): PHPStan\Rules\Cast\InvalidCastRule + { + return new PHPStan\Rules\Cast\InvalidCastRule($this->getService('reflectionProvider'), $this->getService('0179')); + } + + + public function createServiceRules__116(): PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule + { + return new PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule($this->getService('023'), $this->getService('0179')); + } + + + public function createServiceRules__117(): PHPStan\Rules\Cast\PrintRule + { + return new PHPStan\Rules\Cast\PrintRule($this->getService('0179')); + } + + + public function createServiceRules__118(): PHPStan\Rules\Classes\AccessPrivateConstantThroughStaticRule + { + return new PHPStan\Rules\Classes\AccessPrivateConstantThroughStaticRule; + } + + + public function createServiceRules__119(): PHPStan\Rules\Classes\MethodTagRule + { + return new PHPStan\Rules\Classes\MethodTagRule($this->getService('0135')); + } + + + public function createServiceRules__12(): PHPStan\Rules\Api\ApiStaticCallRule + { + return new PHPStan\Rules\Api\ApiStaticCallRule($this->getService('0128'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__120(): PHPStan\Rules\Classes\MethodTagTraitRule + { + return new PHPStan\Rules\Classes\MethodTagTraitRule($this->getService('0135'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__121(): PHPStan\Rules\Classes\MethodTagTraitUseRule + { + return new PHPStan\Rules\Classes\MethodTagTraitUseRule($this->getService('0135')); + } + + + public function createServiceRules__122(): PHPStan\Rules\Classes\PropertyTagRule + { + return new PHPStan\Rules\Classes\PropertyTagRule($this->getService('0137')); + } + + + public function createServiceRules__123(): PHPStan\Rules\Classes\PropertyTagTraitRule + { + return new PHPStan\Rules\Classes\PropertyTagTraitRule($this->getService('0137'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__124(): PHPStan\Rules\Classes\PropertyTagTraitUseRule + { + return new PHPStan\Rules\Classes\PropertyTagTraitUseRule($this->getService('0137')); + } + + + public function createServiceRules__125(): PHPStan\Rules\Classes\MixinTraitRule + { + return new PHPStan\Rules\Classes\MixinTraitRule($this->getService('0136'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__126(): PHPStan\Rules\Classes\MixinTraitUseRule + { + return new PHPStan\Rules\Classes\MixinTraitUseRule($this->getService('0136')); + } + + + public function createServiceRules__127(): PHPStan\Rules\Comparison\UsageOfVoidMatchExpressionRule + { + return new PHPStan\Rules\Comparison\UsageOfVoidMatchExpressionRule; + } + + + public function createServiceRules__128(): PHPStan\Rules\Constants\ValueAssignedToClassConstantRule + { + return new PHPStan\Rules\Constants\ValueAssignedToClassConstantRule; + } + + + public function createServiceRules__129(): PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule + { + return new PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule; + } + + + public function createServiceRules__13(): PHPStan\Rules\Api\ApiTraitUseRule + { + return new PHPStan\Rules\Api\ApiTraitUseRule($this->getService('0128'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__130(): PHPStan\Rules\Functions\IncompatibleArrowFunctionDefaultParameterTypeRule + { + return new PHPStan\Rules\Functions\IncompatibleArrowFunctionDefaultParameterTypeRule; + } + + + public function createServiceRules__131(): PHPStan\Rules\Functions\IncompatibleClosureDefaultParameterTypeRule + { + return new PHPStan\Rules\Functions\IncompatibleClosureDefaultParameterTypeRule; + } + + + public function createServiceRules__132(): PHPStan\Rules\Generics\ClassAncestorsRule + { + return new PHPStan\Rules\Generics\ClassAncestorsRule($this->getService('0151'), $this->getService('0150')); + } + + + public function createServiceRules__133(): PHPStan\Rules\Generics\ClassTemplateTypeRule + { + return new PHPStan\Rules\Generics\ClassTemplateTypeRule($this->getService('0154')); + } + + + public function createServiceRules__134(): PHPStan\Rules\Generics\EnumAncestorsRule + { + return new PHPStan\Rules\Generics\EnumAncestorsRule($this->getService('0151'), $this->getService('0150')); + } + + + public function createServiceRules__135(): PHPStan\Rules\Generics\EnumTemplateTypeRule + { + return new PHPStan\Rules\Generics\EnumTemplateTypeRule; + } + + + public function createServiceRules__136(): PHPStan\Rules\Generics\FunctionTemplateTypeRule + { + return new PHPStan\Rules\Generics\FunctionTemplateTypeRule($this->getService('0182'), $this->getService('0154')); + } + + + public function createServiceRules__137(): PHPStan\Rules\Generics\FunctionSignatureVarianceRule + { + return new PHPStan\Rules\Generics\FunctionSignatureVarianceRule($this->getService('0155')); + } + + + public function createServiceRules__138(): PHPStan\Rules\Generics\InterfaceAncestorsRule + { + return new PHPStan\Rules\Generics\InterfaceAncestorsRule($this->getService('0151'), $this->getService('0150')); + } + + + public function createServiceRules__139(): PHPStan\Rules\Generics\InterfaceTemplateTypeRule + { + return new PHPStan\Rules\Generics\InterfaceTemplateTypeRule($this->getService('0154')); + } + + + public function createServiceRules__14(): PHPStan\Rules\Api\GetTemplateTypeRule + { + return new PHPStan\Rules\Api\GetTemplateTypeRule($this->getService('reflectionProvider')); + } + + + public function createServiceRules__140(): PHPStan\Rules\Generics\MethodTemplateTypeRule + { + return new PHPStan\Rules\Generics\MethodTemplateTypeRule($this->getService('0182'), $this->getService('0154')); + } + + + public function createServiceRules__141(): PHPStan\Rules\Generics\MethodTagTemplateTypeRule + { + return new PHPStan\Rules\Generics\MethodTagTemplateTypeRule($this->getService('0153')); + } + + + public function createServiceRules__142(): PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule + { + return new PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule( + $this->getService('0153'), + $this->getService('reflectionProvider') + ); + } + + + public function createServiceRules__143(): PHPStan\Rules\Generics\MethodSignatureVarianceRule + { + return new PHPStan\Rules\Generics\MethodSignatureVarianceRule($this->getService('0155')); + } + + + public function createServiceRules__144(): PHPStan\Rules\Generics\PropertyVarianceRule + { + return new PHPStan\Rules\Generics\PropertyVarianceRule($this->getService('0155')); + } + + + public function createServiceRules__145(): PHPStan\Rules\Generics\TraitTemplateTypeRule + { + return new PHPStan\Rules\Generics\TraitTemplateTypeRule($this->getService('0182'), $this->getService('0154')); + } + + + public function createServiceRules__146(): PHPStan\Rules\Generics\UsedTraitsRule + { + return new PHPStan\Rules\Generics\UsedTraitsRule($this->getService('0182'), $this->getService('0151')); + } + + + public function createServiceRules__147(): PHPStan\Rules\Methods\CallPrivateMethodThroughStaticRule + { + return new PHPStan\Rules\Methods\CallPrivateMethodThroughStaticRule; + } + + + public function createServiceRules__148(): PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule + { + return new PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule; + } + + + public function createServiceRules__149(): PHPStan\Rules\Operators\InvalidBinaryOperationRule + { + return new PHPStan\Rules\Operators\InvalidBinaryOperationRule($this->getService('023'), $this->getService('0179')); + } + + + public function createServiceRules__15(): PHPStan\Rules\Api\NodeConnectingVisitorAttributesRule + { + return new PHPStan\Rules\Api\NodeConnectingVisitorAttributesRule; + } + + + public function createServiceRules__150(): PHPStan\Rules\Operators\InvalidComparisonOperationRule + { + return new PHPStan\Rules\Operators\InvalidComparisonOperationRule($this->getService('0179')); + } + + + public function createServiceRules__151(): PHPStan\Rules\Operators\InvalidUnaryOperationRule + { + return new PHPStan\Rules\Operators\InvalidUnaryOperationRule($this->getService('0179')); + } + + + public function createServiceRules__152(): PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule + { + return new PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule($this->getService('0166')); + } + + + public function createServiceRules__153(): PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule + { + return new PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule($this->getService('0166')); + } + + + public function createServiceRules__154(): PHPStan\Rules\PhpDoc\FunctionAssertRule + { + return new PHPStan\Rules\PhpDoc\FunctionAssertRule($this->getService('0167')); + } + + + public function createServiceRules__155(): PHPStan\Rules\PhpDoc\MethodAssertRule + { + return new PHPStan\Rules\PhpDoc\MethodAssertRule($this->getService('0167')); + } + + + public function createServiceRules__156(): PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule + { + return new PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule($this->getService('0168'), $this->getService('0152')); + } + + + public function createServiceRules__157(): PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule + { + return new PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule($this->getService('0152'), $this->getService('0168')); + } + + + public function createServiceRules__158(): PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule + { + return new PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule($this->getService('0182'), $this->getService('0170')); + } + + + public function createServiceRules__159(): PHPStan\Rules\PhpDoc\IncompatiblePropertyHookPhpDocTypeRule + { + return new PHPStan\Rules\PhpDoc\IncompatiblePropertyHookPhpDocTypeRule($this->getService('0182'), $this->getService('0170')); + } + + + public function createServiceRules__16(): PHPStan\Rules\Api\OldPhpParser4ClassRule + { + return new PHPStan\Rules\Api\OldPhpParser4ClassRule; + } + + + public function createServiceRules__160(): PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule + { + return new PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule( + $this->getService('0152'), + $this->getService('0168'), + $this->getService('0169') + ); + } + + + public function createServiceRules__161(): PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule + { + return new PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule($this->getService('0182')); + } + + + public function createServiceRules__162(): PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule + { + return new PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule($this->getService('0182')); + } + + + public function createServiceRules__163(): PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule + { + return new PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule($this->getService('0171')); + } + + + public function createServiceRules__164(): PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule + { + return new PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule($this->getService('0182'), $this->getService('0171')); + } + + + public function createServiceRules__165(): PHPStan\Rules\Properties\AccessPrivatePropertyThroughStaticRule + { + return new PHPStan\Rules\Properties\AccessPrivatePropertyThroughStaticRule; + } + + + public function createServiceRules__166(): PHPStan\Rules\Classes\RequireImplementsRule + { + return new PHPStan\Rules\Classes\RequireImplementsRule; + } + + + public function createServiceRules__167(): PHPStan\Rules\Classes\RequireExtendsRule + { + return new PHPStan\Rules\Classes\RequireExtendsRule; + } + + + public function createServiceRules__168(): PHPStan\Rules\PhpDoc\RequireImplementsDefinitionClassRule + { + return new PHPStan\Rules\PhpDoc\RequireImplementsDefinitionClassRule; + } + + + public function createServiceRules__169(): PHPStan\Rules\PhpDoc\RequireExtendsDefinitionClassRule + { + return new PHPStan\Rules\PhpDoc\RequireExtendsDefinitionClassRule($this->getService('0384')); + } + + + public function createServiceRules__17(): PHPStan\Rules\Api\PhpStanNamespaceIn3rdPartyPackageRule + { + return new PHPStan\Rules\Api\PhpStanNamespaceIn3rdPartyPackageRule($this->getService('0128')); + } + + + public function createServiceRules__170(): PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule + { + return new PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule( + $this->getService('reflectionProvider'), + $this->getService('0384') + ); + } + + + public function createServiceRules__171(): PHPStan\Rules\Pure\PureFunctionRule + { + return new PHPStan\Rules\Pure\PureFunctionRule($this->getService('0178')); + } + + + public function createServiceRules__172(): PHPStan\Rules\Pure\PureMethodRule + { + return new PHPStan\Rules\Pure\PureMethodRule($this->getService('0178')); + } + + + public function createServiceRules__173(): PHPStan\Rules\Arrays\ArrayDestructuringRule + { + return new PHPStan\Rules\Arrays\ArrayDestructuringRule($this->getService('0179'), $this->getService('0130')); + } + + + public function createServiceRules__174(): PHPStan\Rules\Arrays\ArrayUnpackingRule + { + return new PHPStan\Rules\Arrays\ArrayUnpackingRule($this->getService('026'), $this->getService('0179')); + } + + + public function createServiceRules__175(): PHPStan\Rules\Arrays\IterableInForeachRule + { + return new PHPStan\Rules\Arrays\IterableInForeachRule($this->getService('0179')); + } + + + public function createServiceRules__176(): PHPStan\Rules\Arrays\OffsetAccessAssignmentRule + { + return new PHPStan\Rules\Arrays\OffsetAccessAssignmentRule($this->getService('0179')); + } + + + public function createServiceRules__177(): PHPStan\Rules\Arrays\OffsetAccessAssignOpRule + { + return new PHPStan\Rules\Arrays\OffsetAccessAssignOpRule($this->getService('0179')); + } + + + public function createServiceRules__178(): PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule + { + return new PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule($this->getService('0179')); + } + + + public function createServiceRules__179(): PHPStan\Rules\Arrays\UnpackIterableInArrayRule + { + return new PHPStan\Rules\Arrays\UnpackIterableInArrayRule($this->getService('0179')); + } + + + public function createServiceRules__18(): PHPStan\Rules\Api\RuntimeReflectionInstantiationRule + { + return new PHPStan\Rules\Api\RuntimeReflectionInstantiationRule($this->getService('reflectionProvider')); + } + + + public function createServiceRules__180(): PHPStan\Rules\Exceptions\ThrowExprTypeRule + { + return new PHPStan\Rules\Exceptions\ThrowExprTypeRule($this->getService('0179')); + } + + + public function createServiceRules__181(): PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule + { + return new PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule($this->getService('0148')); + } + + + public function createServiceRules__182(): PHPStan\Rules\Functions\ClosureReturnTypeRule + { + return new PHPStan\Rules\Functions\ClosureReturnTypeRule($this->getService('0148')); + } + + + public function createServiceRules__183(): PHPStan\Rules\Functions\ReturnTypeRule + { + return new PHPStan\Rules\Functions\ReturnTypeRule($this->getService('0148')); + } + + + public function createServiceRules__184(): PHPStan\Rules\Generators\YieldTypeRule + { + return new PHPStan\Rules\Generators\YieldTypeRule($this->getService('0179')); + } + + + public function createServiceRules__185(): PHPStan\Rules\Methods\ReturnTypeRule + { + return new PHPStan\Rules\Methods\ReturnTypeRule($this->getService('0148')); + } + + + public function createServiceRules__186(): PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule + { + return new PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule($this->getService('0179')); + } + + + public function createServiceRules__187(): PHPStan\Rules\Properties\GetNonVirtualPropertyHookReadRule + { + return new PHPStan\Rules\Properties\GetNonVirtualPropertyHookReadRule; + } + + + public function createServiceRules__188(): PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule + { + return new PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule($this->getService('0177'), $this->getService('0109')); + } + + + public function createServiceRules__189(): PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule + { + return new PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule($this->getService('0177'), $this->getService('0109')); + } + + + public function createServiceRules__19(): PHPStan\Rules\Api\RuntimeReflectionFunctionRule + { + return new PHPStan\Rules\Api\RuntimeReflectionFunctionRule($this->getService('reflectionProvider')); + } + + + public function createServiceRules__190(): PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule + { + return new PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule($this->getService('0177')); + } + + + public function createServiceRules__191(): PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule + { + return new PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule($this->getService('0177')); + } + + + public function createServiceRules__192(): PHPStan\Rules\Properties\SetNonVirtualPropertyHookAssignRule + { + return new PHPStan\Rules\Properties\SetNonVirtualPropertyHookAssignRule; + } + + + public function createServiceRules__193(): PHPStan\Rules\Properties\TypesAssignedToPropertiesRule + { + return new PHPStan\Rules\Properties\TypesAssignedToPropertiesRule($this->getService('0179'), $this->getService('0177')); + } + + + public function createServiceRules__194(): PHPStan\Rules\Variables\ParameterOutAssignedTypeRule + { + return new PHPStan\Rules\Variables\ParameterOutAssignedTypeRule($this->getService('0179')); + } + + + public function createServiceRules__195(): PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule + { + return new PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule($this->getService('0179')); + } + + + public function createServiceRules__196(): PHPStan\Rules\Variables\VariableCloningRule + { + return new PHPStan\Rules\Variables\VariableCloningRule($this->getService('0179')); + } + + + public function createServiceRules__197(): PHPStan\Rules\Arrays\DeadForeachRule + { + return new PHPStan\Rules\Arrays\DeadForeachRule; + } + + + public function createServiceRules__198(): PHPStan\Rules\DeadCode\CallToConstructorStatementWithoutImpurePointsRule + { + return new PHPStan\Rules\DeadCode\CallToConstructorStatementWithoutImpurePointsRule; + } + + + public function createServiceRules__199(): PHPStan\Rules\DeadCode\CallToFunctionStatementWithoutImpurePointsRule + { + return new PHPStan\Rules\DeadCode\CallToFunctionStatementWithoutImpurePointsRule; + } + + + public function createServiceRules__2(): PHPStan\Rules\Debug\DumpTypeRule + { + return new PHPStan\Rules\Debug\DumpTypeRule($this->getService('reflectionProvider')); + } + + + public function createServiceRules__20(): PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule + { + return new PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule($this->getService('023')); + } + + + public function createServiceRules__200(): PHPStan\Rules\DeadCode\CallToMethodStatementWithoutImpurePointsRule + { + return new PHPStan\Rules\DeadCode\CallToMethodStatementWithoutImpurePointsRule; + } + + + public function createServiceRules__201(): PHPStan\Rules\DeadCode\CallToStaticMethodStatementWithoutImpurePointsRule + { + return new PHPStan\Rules\DeadCode\CallToStaticMethodStatementWithoutImpurePointsRule; + } + + + public function createServiceRules__202(): PHPStan\Rules\DeadCode\NoopRule + { + return new PHPStan\Rules\DeadCode\NoopRule($this->getService('023')); + } + + + public function createServiceRules__203(): PHPStan\Rules\DeadCode\UnreachableStatementRule + { + return new PHPStan\Rules\DeadCode\UnreachableStatementRule; + } + + + public function createServiceRules__204(): PHPStan\Rules\DeadCode\UnusedPrivateConstantRule + { + return new PHPStan\Rules\DeadCode\UnusedPrivateConstantRule($this->getService('0164')); + } + + + public function createServiceRules__205(): PHPStan\Rules\DeadCode\UnusedPrivateMethodRule + { + return new PHPStan\Rules\DeadCode\UnusedPrivateMethodRule($this->getService('0165')); + } + + + public function createServiceRules__206(): PHPStan\Rules\Exceptions\OverwrittenExitPointByFinallyRule + { + return new PHPStan\Rules\Exceptions\OverwrittenExitPointByFinallyRule; + } + + + public function createServiceRules__207(): PHPStan\Rules\Functions\CallToFunctionStatementWithoutSideEffectsRule + { + return new PHPStan\Rules\Functions\CallToFunctionStatementWithoutSideEffectsRule($this->getService('reflectionProvider')); + } + + + public function createServiceRules__208(): PHPStan\Rules\Functions\UselessFunctionReturnValueRule + { + return new PHPStan\Rules\Functions\UselessFunctionReturnValueRule($this->getService('reflectionProvider')); + } + + + public function createServiceRules__209(): PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule + { + return new PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule($this->getService('reflectionProvider')); + } + + + public function createServiceRules__21(): PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule + { + return new PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule; + } + + + public function createServiceRules__210(): PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule + { + return new PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule($this->getService('0179')); + } + + + public function createServiceRules__211(): PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule + { + return new PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule( + $this->getService('0179'), + $this->getService('reflectionProvider') + ); + } + + + public function createServiceRules__212(): PHPStan\Rules\Methods\NullsafeMethodCallRule + { + return new PHPStan\Rules\Methods\NullsafeMethodCallRule; + } + + + public function createServiceRules__213(): PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule + { + return new PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule; + } + + + public function createServiceRules__214(): PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule + { + return new PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule; + } + + + public function createServiceRules__215(): PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule + { + return new PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule; + } + + + public function createServiceRules__216(): PHPStan\Rules\TooWideTypehints\TooWideFunctionParameterOutTypeRule + { + return new PHPStan\Rules\TooWideTypehints\TooWideFunctionParameterOutTypeRule($this->getService('0181')); + } + + + public function createServiceRules__217(): PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule + { + return new PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule($this->getService('0181')); + } + + + public function createServiceRules__218(): PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule + { + return new PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule($this->getService('0175'), $this->getService('0177')); + } + + + public function createServiceRules__219(): PHPStan\Rules\Traits\NotAnalysedTraitRule + { + return new PHPStan\Rules\Traits\NotAnalysedTraitRule; + } + + + public function createServiceRules__22(): PHPStan\Rules\Cast\UnsetCastRule + { + return new PHPStan\Rules\Cast\UnsetCastRule($this->getService('026')); + } + + + public function createServiceRules__220(): PHPStan\Rules\DateTimeInstantiationRule + { + return new PHPStan\Rules\DateTimeInstantiationRule; + } + + + public function createServiceRules__221(): PHPStan\Rules\Functions\CallUserFuncRule + { + return new PHPStan\Rules\Functions\CallUserFuncRule($this->getService('reflectionProvider'), $this->getService('0146')); + } + + + public function createServiceRules__222(): PHPStan\Rules\Functions\ParameterCastableToStringRule + { + return new PHPStan\Rules\Functions\ParameterCastableToStringRule( + $this->getService('reflectionProvider'), + $this->getService('0149') + ); + } + + + public function createServiceRules__223(): PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule + { + return new PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule( + $this->getService('reflectionProvider'), + $this->getService('0149') + ); + } + + + public function createServiceRules__224(): PHPStan\Rules\Functions\SortParameterCastableToStringRule + { + return new PHPStan\Rules\Functions\SortParameterCastableToStringRule( + $this->getService('reflectionProvider'), + $this->getService('0149') + ); + } + + + public function createServiceRules__225(): PHPStan\Rules\Regexp\RegularExpressionQuotingRule + { + return new PHPStan\Rules\Regexp\RegularExpressionQuotingRule($this->getService('reflectionProvider'), $this->getService('0276')); + } + + + public function createServiceRules__226(): Larastan\Larastan\Rules\UselessConstructs\NoUselessWithFunctionCallsRule + { + return new Larastan\Larastan\Rules\UselessConstructs\NoUselessWithFunctionCallsRule; + } + + + public function createServiceRules__227(): Larastan\Larastan\Rules\UselessConstructs\NoUselessValueFunctionCallsRule + { + return new Larastan\Larastan\Rules\UselessConstructs\NoUselessValueFunctionCallsRule; + } + + + public function createServiceRules__228(): Larastan\Larastan\Rules\DeferrableServiceProviderMissingProvidesRule + { + return new Larastan\Larastan\Rules\DeferrableServiceProviderMissingProvidesRule; + } + + + public function createServiceRules__229(): Larastan\Larastan\Rules\ConsoleCommand\UndefinedArgumentOrOptionRule + { + return new Larastan\Larastan\Rules\ConsoleCommand\UndefinedArgumentOrOptionRule($this->getService('0533')); + } + + + public function createServiceRules__23(): PHPStan\Rules\Classes\AllowedSubTypesRule + { + return new PHPStan\Rules\Classes\AllowedSubTypesRule; + } + + + public function createServiceRules__230(): PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule + { + return new PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule( + $this->getService('reflectionProvider'), + $this->getService('0539') + ); + } + + + public function createServiceRules__231(): PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule + { + return new PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule( + $this->getService('reflectionProvider'), + $this->getService('0179'), + $this->getService('0539') + ); + } + + + public function createServiceRules__232(): PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule + { + return new PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule( + $this->getService('reflectionProvider'), + $this->getService('0539') + ); + } + + + public function createServiceRules__233(): PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule + { + return new PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule( + $this->getService('reflectionProvider'), + $this->getService('0539') + ); + } + + + public function createServiceRules__234(): PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule + { + return new PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule( + $this->getService('reflectionProvider'), + $this->getService('0179'), + $this->getService('0539') + ); + } + + + public function createServiceRules__235(): PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule + { + return new PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule( + $this->getService('reflectionProvider'), + $this->getService('0179'), + $this->getService('0539') + ); + } + + + public function createServiceRules__236(): PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule + { + return new PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule( + $this->getService('reflectionProvider'), + $this->getService('0539') + ); + } + + + public function createServiceRules__237(): PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule + { + return new PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule( + $this->getService('reflectionProvider'), + $this->getService('0539') + ); + } + + + public function createServiceRules__238(): PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule + { + return new PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule( + $this->getService('reflectionProvider'), + $this->getService('0539') + ); + } + + + public function createServiceRules__239(): PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule + { + return new PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule($this->getService('reflectionProvider')); + } + + + public function createServiceRules__24(): PHPStan\Rules\Classes\ClassAttributesRule + { + return new PHPStan\Rules\Classes\ClassAttributesRule($this->getService('0129')); + } + + + public function createServiceRules__240(): PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule + { + return new PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule( + $this->getService('reflectionProvider'), + $this->getService('0179'), + $this->getService('0539') + ); + } + + + public function createServiceRules__241(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule + { + return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule( + $this->getService('0537'), + $this->getService('0539') + ); + } + + + public function createServiceRules__242(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule + { + return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule( + $this->getService('0537'), + $this->getService('0539') + ); + } + + + public function createServiceRules__243(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule + { + return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule( + $this->getService('0537'), + $this->getService('0539') + ); + } + + + public function createServiceRules__244(): PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule + { + return new PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule($this->getService('0539')); + } + + + public function createServiceRules__245(): PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule + { + return new PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule( + $this->getService('reflectionProvider'), + $this->getService('0539') + ); + } + + + public function createServiceRules__246(): PHPStan\Rules\PHPUnit\AssertSameBooleanExpectedRule + { + return new PHPStan\Rules\PHPUnit\AssertSameBooleanExpectedRule; + } + + + public function createServiceRules__247(): PHPStan\Rules\PHPUnit\AssertSameNullExpectedRule + { + return new PHPStan\Rules\PHPUnit\AssertSameNullExpectedRule; + } + + + public function createServiceRules__248(): PHPStan\Rules\PHPUnit\AssertSameWithCountRule + { + return new PHPStan\Rules\PHPUnit\AssertSameWithCountRule; + } + + + public function createServiceRules__249(): PHPStan\Rules\PHPUnit\ClassCoversExistsRule + { + return new PHPStan\Rules\PHPUnit\ClassCoversExistsRule($this->getService('0549'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__25(): PHPStan\Rules\Classes\ClassConstantAttributesRule + { + return new PHPStan\Rules\Classes\ClassConstantAttributesRule($this->getService('0129')); + } + + + public function createServiceRules__250(): PHPStan\Rules\PHPUnit\ClassMethodCoversExistsRule + { + return new PHPStan\Rules\PHPUnit\ClassMethodCoversExistsRule($this->getService('0549'), $this->getService('0182')); + } + + + public function createServiceRules__251(): PHPStan\Rules\PHPUnit\MockMethodCallRule + { + return new PHPStan\Rules\PHPUnit\MockMethodCallRule; + } + + + public function createServiceRules__252(): PHPStan\Rules\PHPUnit\NoMissingSpaceInClassAnnotationRule + { + return new PHPStan\Rules\PHPUnit\NoMissingSpaceInClassAnnotationRule($this->getService('0550')); + } + + + public function createServiceRules__253(): PHPStan\Rules\PHPUnit\NoMissingSpaceInMethodAnnotationRule + { + return new PHPStan\Rules\PHPUnit\NoMissingSpaceInMethodAnnotationRule($this->getService('0550')); + } + + + public function createServiceRules__254(): PHPStan\Rules\PHPUnit\ShouldCallParentMethodsRule + { + return new PHPStan\Rules\PHPUnit\ShouldCallParentMethodsRule; + } + + + public function createServiceRules__26(): PHPStan\Rules\Classes\ClassConstantRule + { + return new PHPStan\Rules\Classes\ClassConstantRule( + $this->getService('reflectionProvider'), + $this->getService('0179'), + $this->getService('0131'), + $this->getService('026') + ); + } + + + public function createServiceRules__27(): PHPStan\Rules\Classes\DuplicateDeclarationRule + { + return new PHPStan\Rules\Classes\DuplicateDeclarationRule; + } + + + public function createServiceRules__28(): PHPStan\Rules\Classes\EnumSanityRule + { + return new PHPStan\Rules\Classes\EnumSanityRule; + } + + + public function createServiceRules__29(): PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule + { + return new PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule( + $this->getService('0131'), + $this->getService('reflectionProvider') + ); + } + + + public function createServiceRules__3(): PHPStan\Rules\Debug\FileAssertRule + { + return new PHPStan\Rules\Debug\FileAssertRule($this->getService('reflectionProvider')); + } + + + public function createServiceRules__30(): PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule + { + return new PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule( + $this->getService('0131'), + $this->getService('reflectionProvider') + ); + } + + + public function createServiceRules__31(): PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule + { + return new PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule( + $this->getService('0131'), + $this->getService('reflectionProvider') + ); + } + + + public function createServiceRules__32(): PHPStan\Rules\Classes\ExistingClassInTraitUseRule + { + return new PHPStan\Rules\Classes\ExistingClassInTraitUseRule($this->getService('0131'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__33(): PHPStan\Rules\Classes\InstantiationRule + { + return new PHPStan\Rules\Classes\InstantiationRule( + $this->getService('reflectionProvider'), + $this->getService('0146'), + $this->getService('0131') + ); + } + + + public function createServiceRules__34(): PHPStan\Rules\Classes\InstantiationCallableRule + { + return new PHPStan\Rules\Classes\InstantiationCallableRule; + } + + + public function createServiceRules__35(): PHPStan\Rules\Classes\InvalidPromotedPropertiesRule + { + return new PHPStan\Rules\Classes\InvalidPromotedPropertiesRule($this->getService('026')); + } + + + public function createServiceRules__36(): PHPStan\Rules\Classes\LocalTypeAliasesRule + { + return new PHPStan\Rules\Classes\LocalTypeAliasesRule($this->getService('0134')); + } + + + public function createServiceRules__37(): PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule + { + return new PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule($this->getService('0134')); + } + + + public function createServiceRules__38(): PHPStan\Rules\Classes\LocalTypeTraitAliasesRule + { + return new PHPStan\Rules\Classes\LocalTypeTraitAliasesRule($this->getService('0134'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__39(): PHPStan\Rules\Classes\NewStaticRule + { + return new PHPStan\Rules\Classes\NewStaticRule; + } + + + public function createServiceRules__4(): PHPStan\Rules\Api\ApiInstanceofRule + { + return new PHPStan\Rules\Api\ApiInstanceofRule($this->getService('0128'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__40(): PHPStan\Rules\Classes\NonClassAttributeClassRule + { + return new PHPStan\Rules\Classes\NonClassAttributeClassRule; + } + + + public function createServiceRules__41(): PHPStan\Rules\Classes\ReadOnlyClassRule + { + return new PHPStan\Rules\Classes\ReadOnlyClassRule($this->getService('026')); + } + + + public function createServiceRules__42(): PHPStan\Rules\Classes\TraitAttributeClassRule + { + return new PHPStan\Rules\Classes\TraitAttributeClassRule; + } + + + public function createServiceRules__43(): PHPStan\Rules\Constants\ClassAsClassConstantRule + { + return new PHPStan\Rules\Constants\ClassAsClassConstantRule; + } + + + public function createServiceRules__44(): PHPStan\Rules\Constants\DynamicClassConstantFetchRule + { + return new PHPStan\Rules\Constants\DynamicClassConstantFetchRule($this->getService('026'), $this->getService('0179')); + } + + + public function createServiceRules__45(): PHPStan\Rules\Constants\FinalConstantRule + { + return new PHPStan\Rules\Constants\FinalConstantRule($this->getService('026')); + } + + + public function createServiceRules__46(): PHPStan\Rules\Constants\MagicConstantContextRule + { + return new PHPStan\Rules\Constants\MagicConstantContextRule; + } + + + public function createServiceRules__47(): PHPStan\Rules\Constants\NativeTypedClassConstantRule + { + return new PHPStan\Rules\Constants\NativeTypedClassConstantRule($this->getService('026')); + } + + + public function createServiceRules__48(): PHPStan\Rules\EnumCases\EnumCaseAttributesRule + { + return new PHPStan\Rules\EnumCases\EnumCaseAttributesRule($this->getService('0129')); + } + + + public function createServiceRules__49(): PHPStan\Rules\Exceptions\NoncapturingCatchRule + { + return new PHPStan\Rules\Exceptions\NoncapturingCatchRule; + } + + + public function createServiceRules__5(): PHPStan\Rules\Api\ApiInstanceofTypeRule + { + return new PHPStan\Rules\Api\ApiInstanceofTypeRule($this->getService('reflectionProvider')); + } + + + public function createServiceRules__50(): PHPStan\Rules\Exceptions\ThrowExpressionRule + { + return new PHPStan\Rules\Exceptions\ThrowExpressionRule($this->getService('026')); + } + + + public function createServiceRules__51(): PHPStan\Rules\Functions\ArrowFunctionAttributesRule + { + return new PHPStan\Rules\Functions\ArrowFunctionAttributesRule($this->getService('0129')); + } + + + public function createServiceRules__52(): PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule + { + return new PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule($this->getService('0163')); + } + + + public function createServiceRules__53(): PHPStan\Rules\Functions\ClosureAttributesRule + { + return new PHPStan\Rules\Functions\ClosureAttributesRule($this->getService('0129')); + } + + + public function createServiceRules__54(): PHPStan\Rules\Functions\DefineParametersRule + { + return new PHPStan\Rules\Functions\DefineParametersRule($this->getService('026')); + } + + + public function createServiceRules__55(): PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule + { + return new PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule( + $this->getService('0147'), + $this->getService('026') + ); + } + + + public function createServiceRules__56(): PHPStan\Rules\Functions\CallToFunctionParametersRule + { + return new PHPStan\Rules\Functions\CallToFunctionParametersRule( + $this->getService('reflectionProvider'), + $this->getService('0146') + ); + } + + + public function createServiceRules__57(): PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule + { + return new PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule($this->getService('0147')); + } + + + public function createServiceRules__58(): PHPStan\Rules\Functions\ExistingClassesInTypehintsRule + { + return new PHPStan\Rules\Functions\ExistingClassesInTypehintsRule($this->getService('0147')); + } + + + public function createServiceRules__59(): PHPStan\Rules\Functions\FunctionAttributesRule + { + return new PHPStan\Rules\Functions\FunctionAttributesRule($this->getService('0129')); + } + + + public function createServiceRules__6(): PHPStan\Rules\Api\ApiInstantiationRule + { + return new PHPStan\Rules\Api\ApiInstantiationRule($this->getService('0128'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__60(): PHPStan\Rules\Functions\InnerFunctionRule + { + return new PHPStan\Rules\Functions\InnerFunctionRule; + } + + + public function createServiceRules__61(): PHPStan\Rules\Functions\InvalidLexicalVariablesInClosureUseRule + { + return new PHPStan\Rules\Functions\InvalidLexicalVariablesInClosureUseRule; + } + + + public function createServiceRules__62(): PHPStan\Rules\Functions\ParamAttributesRule + { + return new PHPStan\Rules\Functions\ParamAttributesRule($this->getService('0129')); + } + + + public function createServiceRules__63(): PHPStan\Rules\Functions\PrintfArrayParametersRule + { + return new PHPStan\Rules\Functions\PrintfArrayParametersRule($this->getService('0355'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__64(): PHPStan\Rules\Functions\PrintfParametersRule + { + return new PHPStan\Rules\Functions\PrintfParametersRule($this->getService('0355'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__65(): PHPStan\Rules\Functions\RedefinedParametersRule + { + return new PHPStan\Rules\Functions\RedefinedParametersRule; + } + + + public function createServiceRules__66(): PHPStan\Rules\Functions\ReturnNullsafeByRefRule + { + return new PHPStan\Rules\Functions\ReturnNullsafeByRefRule($this->getService('0163')); + } + + + public function createServiceRules__67(): PHPStan\Rules\Ignore\IgnoreParseErrorRule + { + return new PHPStan\Rules\Ignore\IgnoreParseErrorRule; + } + + + public function createServiceRules__68(): PHPStan\Rules\Functions\VariadicParametersDeclarationRule + { + return new PHPStan\Rules\Functions\VariadicParametersDeclarationRule; + } + + + public function createServiceRules__69(): PHPStan\Rules\Keywords\ContinueBreakInLoopRule + { + return new PHPStan\Rules\Keywords\ContinueBreakInLoopRule; + } + + + public function createServiceRules__7(): PHPStan\Rules\Api\ApiClassConstFetchRule + { + return new PHPStan\Rules\Api\ApiClassConstFetchRule($this->getService('0128'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__70(): PHPStan\Rules\Keywords\DeclareStrictTypesRule + { + return new PHPStan\Rules\Keywords\DeclareStrictTypesRule($this->getService('023')); + } + + + public function createServiceRules__71(): PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule + { + return new PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule; + } + + + public function createServiceRules__72(): PHPStan\Rules\Methods\AbstractPrivateMethodRule + { + return new PHPStan\Rules\Methods\AbstractPrivateMethodRule; + } + + + public function createServiceRules__73(): PHPStan\Rules\Methods\CallMethodsRule + { + return new PHPStan\Rules\Methods\CallMethodsRule($this->getService('0157'), $this->getService('0146')); + } + + + public function createServiceRules__74(): PHPStan\Rules\Methods\CallStaticMethodsRule + { + return new PHPStan\Rules\Methods\CallStaticMethodsRule($this->getService('0158'), $this->getService('0146')); + } + + + public function createServiceRules__75(): PHPStan\Rules\Methods\ConsistentConstructorRule + { + return new PHPStan\Rules\Methods\ConsistentConstructorRule($this->getService('0160'), $this->getService('0161')); + } + + + public function createServiceRules__76(): PHPStan\Rules\Methods\ConstructorReturnTypeRule + { + return new PHPStan\Rules\Methods\ConstructorReturnTypeRule; + } + + + public function createServiceRules__77(): PHPStan\Rules\Methods\ExistingClassesInTypehintsRule + { + return new PHPStan\Rules\Methods\ExistingClassesInTypehintsRule($this->getService('0147')); + } + + + public function createServiceRules__78(): PHPStan\Rules\Methods\FinalPrivateMethodRule + { + return new PHPStan\Rules\Methods\FinalPrivateMethodRule; + } + + + public function createServiceRules__79(): PHPStan\Rules\Methods\MethodCallableRule + { + return new PHPStan\Rules\Methods\MethodCallableRule($this->getService('0157'), $this->getService('026')); + } + + + public function createServiceRules__8(): PHPStan\Rules\Api\ApiClassExtendsRule + { + return new PHPStan\Rules\Api\ApiClassExtendsRule($this->getService('0128'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__80(): PHPStan\Rules\Methods\MethodVisibilityInInterfaceRule + { + return new PHPStan\Rules\Methods\MethodVisibilityInInterfaceRule; + } + + + public function createServiceRules__81(): PHPStan\Rules\Methods\MissingMagicSerializationMethodsRule + { + return new PHPStan\Rules\Methods\MissingMagicSerializationMethodsRule($this->getService('026')); + } + + + public function createServiceRules__82(): PHPStan\Rules\Methods\MissingMethodImplementationRule + { + return new PHPStan\Rules\Methods\MissingMethodImplementationRule; + } + + + public function createServiceRules__83(): PHPStan\Rules\Methods\MethodAttributesRule + { + return new PHPStan\Rules\Methods\MethodAttributesRule($this->getService('0129')); + } + + + public function createServiceRules__84(): PHPStan\Rules\Methods\StaticMethodCallableRule + { + return new PHPStan\Rules\Methods\StaticMethodCallableRule($this->getService('0158'), $this->getService('026')); + } + + + public function createServiceRules__85(): PHPStan\Rules\Names\UsedNamesRule + { + return new PHPStan\Rules\Names\UsedNamesRule; + } + + + public function createServiceRules__86(): PHPStan\Rules\Operators\InvalidAssignVarRule + { + return new PHPStan\Rules\Operators\InvalidAssignVarRule($this->getService('0163')); + } + + + public function createServiceRules__87(): PHPStan\Rules\Operators\InvalidIncDecOperationRule + { + return new PHPStan\Rules\Operators\InvalidIncDecOperationRule($this->getService('0179')); + } + + + public function createServiceRules__88(): PHPStan\Rules\Properties\AccessPropertiesInAssignRule + { + return new PHPStan\Rules\Properties\AccessPropertiesInAssignRule($this->getService('0173')); + } + + + public function createServiceRules__89(): PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule + { + return new PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule($this->getService('0373')); + } + + + public function createServiceRules__9(): PHPStan\Rules\Api\ApiClassImplementsRule + { + return new PHPStan\Rules\Api\ApiClassImplementsRule($this->getService('0128'), $this->getService('reflectionProvider')); + } + + + public function createServiceRules__90(): PHPStan\Rules\Properties\ExistingClassesInPropertyHookTypehintsRule + { + return new PHPStan\Rules\Properties\ExistingClassesInPropertyHookTypehintsRule($this->getService('0147')); + } + + + public function createServiceRules__91(): PHPStan\Rules\Properties\InvalidCallablePropertyTypeRule + { + return new PHPStan\Rules\Properties\InvalidCallablePropertyTypeRule; + } + + + public function createServiceRules__92(): PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule + { + return new PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule($this->getService('0109')); + } + + + public function createServiceRules__93(): PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule + { + return new PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule($this->getService('0109')); + } + + + public function createServiceRules__94(): PHPStan\Rules\Properties\PropertiesInInterfaceRule + { + return new PHPStan\Rules\Properties\PropertiesInInterfaceRule($this->getService('026')); + } + + + public function createServiceRules__95(): PHPStan\Rules\Properties\PropertyAssignRefRule + { + return new PHPStan\Rules\Properties\PropertyAssignRefRule($this->getService('026'), $this->getService('0177')); + } + + + public function createServiceRules__96(): PHPStan\Rules\Properties\PropertyAttributesRule + { + return new PHPStan\Rules\Properties\PropertyAttributesRule($this->getService('0129')); + } + + + public function createServiceRules__97(): PHPStan\Rules\Properties\PropertyHookAttributesRule + { + return new PHPStan\Rules\Properties\PropertyHookAttributesRule($this->getService('0129')); + } + + + public function createServiceRules__98(): PHPStan\Rules\Properties\PropertyInClassRule + { + return new PHPStan\Rules\Properties\PropertyInClassRule($this->getService('026')); + } + + + public function createServiceRules__99(): PHPStan\Rules\Properties\ReadOnlyPropertyRule + { + return new PHPStan\Rules\Properties\ReadOnlyPropertyRule($this->getService('026')); + } + + + public function createServiceSimpleRelativePathHelper(): PHPStan\File\RelativePathHelper + { + return new PHPStan\File\SimpleRelativePathHelper('/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'); + } + + + public function createServiceStubFileTypeMapper(): PHPStan\Type\FileTypeMapper + { + return new PHPStan\Type\FileTypeMapper( + $this->getService('0121'), + $this->getService('stubParser'), + $this->getService('038'), + $this->getService('037'), + $this->getService('025'), + $this->getService('084') + ); + } + + + public function createServiceStubParser(): PHPStan\Parser\CachedParser + { + return new PHPStan\Parser\CachedParser($this->getService('freshStubParser'), 256); + } + + + public function createServiceStubPhpDocProvider(): PHPStan\PhpDoc\StubPhpDocProvider + { + return new PHPStan\PhpDoc\StubPhpDocProvider( + $this->getService('stubParser'), + $this->getService('stubFileTypeMapper'), + $this->getService('045') + ); + } + + + public function createServiceTypeSpecifier(): PHPStan\Analyser\TypeSpecifier + { + return $this->getService('typeSpecifierFactory')->create(); + } + + + public function createServiceTypeSpecifierFactory(): PHPStan\Analyser\TypeSpecifierFactory + { + return new PHPStan\Analyser\TypeSpecifierFactory($this->getService('074')); + } + + + public function initialize(): void + { + } + + + protected function getStaticParameters(): array + { + return [ + 'bootstrapFiles' => [ + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionUnionType.php', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionAttribute.php', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/Attribute.php', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionIntersectionType.php', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/bootstrap.php', + ], + 'excludePaths' => ['analyseAndScan' => [], 'analyse' => []], + 'level' => 5, + 'paths' => [ + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/config', + ], + 'exceptions' => [ + 'implicitThrows' => true, + 'reportUncheckedExceptionDeadCatch' => true, + 'uncheckedExceptionRegexes' => ['#^PHPUnit\\\#', '#^SebastianBergmann\\\#'], + 'uncheckedExceptionClasses' => [], + 'checkedExceptionRegexes' => [], + 'checkedExceptionClasses' => [], + 'check' => ['missingCheckedExceptionInThrows' => false, 'tooWideThrowType' => true], + ], + 'featureToggles' => [ + 'bleedingEdge' => false, + 'checkParameterCastableToNumberFunctions' => false, + 'skipCheckGenericClasses' => [], + 'stricterFunctionMap' => false, + 'reportPreciseLineForUnusedFunctionParameter' => false, + ], + 'fileExtensions' => ['php'], + 'checkAdvancedIsset' => true, + 'reportAlwaysTrueInLastCondition' => false, + 'checkClassCaseSensitivity' => true, + 'checkExplicitMixed' => false, + 'checkImplicitMixed' => false, + 'checkFunctionArgumentTypes' => true, + 'checkFunctionNameCase' => false, + 'checkInternalClassCaseSensitivity' => false, + 'checkMissingCallableSignature' => false, + 'checkMissingVarTagTypehint' => false, + 'checkArgumentsPassedByReference' => true, + 'checkMaybeUndefinedVariables' => true, + 'checkNullables' => false, + 'checkThisOnly' => false, + 'checkUnionTypes' => false, + 'checkBenevolentUnionTypes' => false, + 'checkExplicitMixedMissingReturn' => false, + 'checkPhpDocMissingReturn' => true, + 'checkPhpDocMethodSignatures' => true, + 'checkExtraArguments' => true, + 'checkMissingTypehints' => false, + 'checkTooWideReturnTypesInProtectedAndPublicMethods' => false, + 'checkUninitializedProperties' => false, + 'checkDynamicProperties' => false, + 'strictRulesInstalled' => false, + 'deprecationRulesInstalled' => true, + 'inferPrivatePropertyTypeFromConstructor' => false, + 'reportMaybes' => false, + 'reportMaybesInMethodSignatures' => false, + 'reportMaybesInPropertyPhpDocTypes' => false, + 'reportStaticMethodSignatures' => false, + 'reportWrongPhpDocTypeInVarTag' => false, + 'reportAnyTypeWideningInVarTag' => false, + 'reportPossiblyNonexistentGeneralArrayOffset' => false, + 'reportPossiblyNonexistentConstantArrayOffset' => false, + 'checkMissingOverrideMethodAttribute' => false, + 'mixinExcludeClasses' => ['Eloquent'], + 'scanFiles' => [], + 'scanDirectories' => [], + 'parallel' => [ + 'jobSize' => 20, + 'processTimeout' => 600.0, + 'maximumNumberOfProcesses' => 32, + 'minimumNumberOfJobsPerProcess' => 2, + 'buffer' => 134217728, + ], + 'phpVersion' => null, + 'polluteScopeWithLoopInitialAssignments' => true, + 'polluteScopeWithAlwaysIterableForeach' => true, + 'polluteScopeWithBlock' => true, + 'propertyAlwaysWrittenTags' => [], + 'propertyAlwaysReadTags' => [], + 'additionalConstructors' => ['PHPUnit\Framework\TestCase::setUp'], + 'treatPhpDocTypesAsCertain' => true, + 'usePathConstantsAsConstantString' => false, + 'rememberPossiblyImpureFunctionValues' => true, + 'tips' => ['treatPhpDocTypesAsCertain' => true], + 'tipsOfTheDay' => true, + 'reportMagicMethods' => true, + 'reportMagicProperties' => true, + 'ignoreErrors' => [], + 'internalErrorsCountLimit' => 50, + 'cache' => ['nodesByStringCountMax' => 256], + 'reportUnmatchedIgnoredErrors' => true, + 'typeAliases' => [], + 'universalObjectCratesClasses' => [ + 'stdClass', + 'Illuminate\Http\Request', + 'Illuminate\Support\Optional', + 'Pest\Support\HigherOrderTapProxy', + 'Pest\Expectation', + ], + 'stubFiles' => [ + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionAttribute.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionClassConstant.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionFunctionAbstract.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionMethod.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionParameter.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionProperty.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/iterable.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ArrayObject.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/WeakReference.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ext-ds.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ImagickPixel.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/PDOStatement.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/date.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ibm_db2.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/mysqli.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/zip.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/dom.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/spl.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/SplObjectStorage.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/Exception.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/arrayFunctions.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/core.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/typeCheckingFunctions.stub', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/Countable.stub', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/Assert.stub', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/AssertionFailedError.stub', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/ExpectationFailedException.stub', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/Stub.stub', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', + ], + 'earlyTerminatingMethodCalls' => ['PHPUnit\Framework\Assert' => ['fail', 'markTestIncomplete', 'markTestSkipped']], + 'earlyTerminatingFunctionCalls' => ['abort', 'dd'], + 'resultCachePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/build/phpstan/resultCache.php', + 'resultCacheChecksProjectExtensionFilesDependencies' => false, + 'dynamicConstantNames' => [ + 'ICONV_IMPL', + 'LIBXML_VERSION', + 'LIBXML_DOTTED_VERSION', + 'Memcached::HAVE_ENCODING', + 'Memcached::HAVE_IGBINARY', + 'Memcached::HAVE_JSON', + 'Memcached::HAVE_MSGPACK', + 'Memcached::HAVE_SASL', + 'Memcached::HAVE_SESSION', + 'PHP_VERSION', + 'PHP_MAJOR_VERSION', + 'PHP_MINOR_VERSION', + 'PHP_RELEASE_VERSION', + 'PHP_VERSION_ID', + 'PHP_EXTRA_VERSION', + 'PHP_WINDOWS_VERSION_MAJOR', + 'PHP_WINDOWS_VERSION_MINOR', + 'PHP_WINDOWS_VERSION_BUILD', + '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', + 'OPENSSL_VERSION_NUMBER', + 'ZEND_DEBUG_BUILD', + 'ZEND_THREAD_SAFE', + 'E_ALL', + ], + 'customRulesetUsed' => false, + 'editorUrl' => null, + 'editorUrlTitle' => null, + 'errorFormat' => null, + 'sourceLocatorPlaygroundMode' => false, + '__validate' => true, + 'checkOctaneCompatibility' => true, + 'noEnvCallsOutsideOfConfig' => false, + 'noModelMake' => true, + 'noUnnecessaryCollectionCall' => true, + 'noUnnecessaryCollectionCallOnly' => [], + 'noUnnecessaryCollectionCallExcept' => [], + 'squashedMigrationsPath' => [], + 'databaseMigrationsPath' => [], + 'disableMigrationScan' => false, + 'disableSchemaScan' => false, + 'viewDirectories' => [], + 'checkModelProperties' => true, + 'checkUnusedViews' => false, + 'checkModelAppends' => true, + 'phpunit' => ['convertUnionToIntersectionType' => true], + 'tmpDir' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/build/phpstan', + 'debugMode' => true, + 'productionMode' => false, + 'tempDir' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/build/phpstan', + 'rootDir' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan', + 'currentWorkingDirectory' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify', + 'cliArgumentsVariablesRegistered' => true, + 'additionalConfigFiles' => [ + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level5.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../../larastan/larastan/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../../nesbot/carbon/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../../pestphp/pest/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../phpstan-deprecation-rules/rules.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../phpstan-phpunit/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../phpstan-phpunit/rules.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan.neon.dist', + ], + 'allConfigFiles' => [ + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/parametersSchema.neon', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level5.neon', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level4.neon', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level3.neon', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level2.neon', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level1.neon', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level0.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nesbot/carbon/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/pestphp/pest/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/rules.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/extension.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/rules.neon', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan.neon.dist', + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan-baseline.neon', + ], + 'composerAutoloaderProjectPaths' => ['/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'], + 'generateBaselineFile' => null, + 'usedLevel' => '5', + 'cliAutoloadFile' => null, + ]; + } + + + protected function getDynamicParameter($key) + { + switch (true) { + case $key === 'analysedPaths': return null; + case $key === 'analysedPathsFromConfig': return null; + case $key === 'env': return null; + case $key === 'sysGetTempDir': return sys_get_temp_dir(); + case $key === 'pro': return [ + 'dnsServers' => ['1.1.1.2'], + 'tmpDir' => ($this->getParameter('sysGetTempDir')) . '/phpstan-fixer', + ]; + default: return parent::getDynamicParameter($key); + }; + } + + + public function getParameters(): array + { + array_map(function ($key) { $this->getParameter($key); }, [ + 'analysedPaths', + 'analysedPathsFromConfig', + 'env', + 'sysGetTempDir', + 'pro', + ]); + return parent::getParameters(); + } +} diff --git a/build/phpstan/cache/nette.configurator/Container_c5db45e753.php.lock b/build/phpstan/cache/nette.configurator/Container_c5db45e753.php.lock new file mode 100644 index 0000000..e69de29 diff --git a/build/phpstan/cache/nette.configurator/Container_c5db45e753.php.meta b/build/phpstan/cache/nette.configurator/Container_c5db45e753.php.meta new file mode 100644 index 0000000..8400e2b --- /dev/null +++ b/build/phpstan/cache/nette.configurator/Container_c5db45e753.php.meta @@ -0,0 +1 @@ +a:6:{i:0;i:1;i:1;a:25:{s:122:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.neon";i:1739979920;s:132:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/parametersSchema.neon";i:1739979920;s:129:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level5.neon";i:1739979920;s:129:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level4.neon";i:1739979920;s:129:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level3.neon";i:1739979920;s:129:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level2.neon";i:1739979920;s:129:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level1.neon";i:1739979920;s:129:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level0.neon";i:1739979920;s:143:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../../larastan/larastan/extension.neon";i:1740065115;s:139:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../../nesbot/carbon/extension.neon";i:1740072818;s:138:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../../pestphp/pest/extension.neon";i:1737641009;s:144:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../phpstan-deprecation-rules/rules.neon";i:1732830996;s:138:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../phpstan-phpunit/extension.neon";i:1737551258;s:134:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../phpstan-phpunit/rules.neon";i:1737551258;s:80:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan.neon.dist";i:1740672339;s:84:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan-baseline.neon";i:1740672313;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nette/di/src/DI/Extensions/ServicesExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nette/di/src/DI/Extensions/ParametersExtension.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nette/bootstrap/src/Bootstrap/Extensions/PhpExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nette/di/src/DI/Extensions/ExtensionsExtension.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/RulesExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/ConditionalTagsExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/ParametersSchemaExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/ValidateIgnoredErrorsExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/ValidateExcludePathsExtension.php";i:1739979920;}i:2;a:899:{s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Debug/DebugScopeRule.php";i:1739979920;s:124:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Rule.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Debug/DumpPhpDocTypeRule.php";i:1739979920;s:138:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Debug/DumpTypeRule.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Debug/FileAssertRule.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiInstanceofRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiInstanceofTypeRule.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiInstantiationRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiClassConstFetchRule.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiClassExtendsRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiClassImplementsRule.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiInterfaceExtendsRule.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiMethodCallRule.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiStaticCallRule.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiTraitUseRule.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/GetTemplateTypeRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/NodeConnectingVisitorAttributesRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/OldPhpParser4ClassRule.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/PhpStanNamespaceIn3rdPartyPackageRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/RuntimeReflectionInstantiationRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/RuntimeReflectionFunctionRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/DuplicateKeysInLiteralArraysRule.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/OffsetAccessWithoutDimForReadingRule.php";i:1739979920;s:138:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Cast/UnsetCastRule.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/AllowedSubTypesRule.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ClassAttributesRule.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ClassConstantAttributesRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ClassConstantRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/DuplicateDeclarationRule.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/EnumSanityRule.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ExistingClassesInClassImplementsRule.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ExistingClassesInEnumImplementsRule.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ExistingClassesInInterfaceExtendsRule.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ExistingClassInTraitUseRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/InstantiationRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/InstantiationCallableRule.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/InvalidPromotedPropertiesRule.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/LocalTypeAliasesRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/LocalTypeTraitUseAliasesRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/LocalTypeTraitAliasesRule.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/NewStaticRule.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/NonClassAttributeClassRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ReadOnlyClassRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/TraitAttributeClassRule.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/ClassAsClassConstantRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/DynamicClassConstantFetchRule.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/FinalConstantRule.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/MagicConstantContextRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/NativeTypedClassConstantRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/EnumCases/EnumCaseAttributesRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/NoncapturingCatchRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/ThrowExpressionRule.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ArrowFunctionAttributesRule.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ArrowFunctionReturnNullsafeByRefRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ClosureAttributesRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/DefineParametersRule.php";i:1739979920;s:173:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ExistingClassesInArrowFunctionTypehintsRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/CallToFunctionParametersRule.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ExistingClassesInClosureTypehintsRule.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ExistingClassesInTypehintsRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/FunctionAttributesRule.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/InnerFunctionRule.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/InvalidLexicalVariablesInClosureUseRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ParamAttributesRule.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/PrintfArrayParametersRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/PrintfParametersRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/RedefinedParametersRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ReturnNullsafeByRefRule.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Ignore/IgnoreParseErrorRule.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/VariadicParametersDeclarationRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Keywords/ContinueBreakInLoopRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Keywords/DeclareStrictTypesRule.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/AbstractMethodInNonAbstractClassRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/AbstractPrivateMethodRule.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/CallMethodsRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/CallStaticMethodsRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/ConsistentConstructorRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/ConstructorReturnTypeRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/ExistingClassesInTypehintsRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/FinalPrivateMethodRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodCallableRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodVisibilityInInterfaceRule.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MissingMagicSerializationMethodsRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MissingMethodImplementationRule.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodAttributesRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/StaticMethodCallableRule.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Names/UsedNamesRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Operators/InvalidAssignVarRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Operators/InvalidIncDecOperationRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/AccessPropertiesInAssignRule.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/AccessStaticPropertiesInAssignRule.php";i:1739979920;s:173:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ExistingClassesInPropertyHookTypehintsRule.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/InvalidCallablePropertyTypeRule.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/MissingReadOnlyPropertyAssignRule.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/MissingReadOnlyByPhpDocPropertyAssignRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/PropertiesInInterfaceRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/PropertyAssignRefRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/PropertyAttributesRule.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/PropertyHookAttributesRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/PropertyInClassRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadOnlyPropertyRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadOnlyByPhpDocPropertyRule.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Regexp/RegularExpressionPatternRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Traits/ConflictingTraitConstantsRule.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Traits/ConstantsInTraitsRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Traits/TraitAttributesRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Types/InvalidTypesInUnionRule.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/UnsetRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Whitespace/FileWhitespaceRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/UnusedConstructorParametersRule.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/ConstantRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/UnusedClosureUsesRule.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/EmptyRule.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/IssetRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/NullCoalesceRule.php";i:1739979920;s:133:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Cast/EchoRule.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Cast/InvalidCastRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Cast/InvalidPartOfEncapsedStringRule.php";i:1739979920;s:134:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Cast/PrintRule.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/AccessPrivateConstantThroughStaticRule.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MethodTagRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MethodTagTraitRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MethodTagTraitUseRule.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/PropertyTagRule.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/PropertyTagTraitRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/PropertyTagTraitUseRule.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MixinTraitRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MixinTraitUseRule.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/UsageOfVoidMatchExpressionRule.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/ValueAssignedToClassConstantRule.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/IncompatibleDefaultParameterTypeRule.php";i:1739979920;s:179:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/IncompatibleArrowFunctionDefaultParameterTypeRule.php";i:1739979920;s:173:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/IncompatibleClosureDefaultParameterTypeRule.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/ClassAncestorsRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/ClassTemplateTypeRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/EnumAncestorsRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/EnumTemplateTypeRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/FunctionTemplateTypeRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/FunctionSignatureVarianceRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/InterfaceAncestorsRule.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/InterfaceTemplateTypeRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/MethodTemplateTypeRule.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/MethodTagTemplateTypeRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/MethodTagTemplateTypeTraitRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/MethodSignatureVarianceRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/PropertyVarianceRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/TraitTemplateTypeRule.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/UsedTraitsRule.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/CallPrivateMethodThroughStaticRule.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/IncompatibleDefaultParameterTypeRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Operators/InvalidBinaryOperationRule.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Operators/InvalidComparisonOperationRule.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Operators/InvalidUnaryOperationRule.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/FunctionConditionalReturnTypeRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/MethodConditionalReturnTypeRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/FunctionAssertRule.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/MethodAssertRule.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatibleSelfOutTypeRule.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatibleClassConstantPhpDocTypeRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatiblePhpDocTypeRule.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatiblePropertyHookPhpDocTypeRule.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatiblePropertyPhpDocTypeRule.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/InvalidThrowsPhpDocValueRule.php";i:1739979920;s:174:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatibleParamImmediatelyInvokedCallableRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/VarTagChangedExpressionTypeRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/WrongVariableNameInVarTagRule.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/AccessPrivatePropertyThroughStaticRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/RequireImplementsRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/RequireExtendsRule.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/RequireImplementsDefinitionClassRule.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/RequireExtendsDefinitionClassRule.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/RequireExtendsDefinitionTraitRule.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Pure/PureFunctionRule.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Pure/PureMethodRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/ArrayDestructuringRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/ArrayUnpackingRule.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/IterableInForeachRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/OffsetAccessAssignmentRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/OffsetAccessAssignOpRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/OffsetAccessValueAssignmentRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/UnpackIterableInArrayRule.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/ThrowExprTypeRule.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ArrowFunctionReturnTypeRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ClosureReturnTypeRule.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ReturnTypeRule.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generators/YieldTypeRule.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/ReturnTypeRule.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/DefaultValueTypesAssignedToPropertiesRule.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/GetNonVirtualPropertyHookReadRule.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadOnlyPropertyAssignRule.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadOnlyByPhpDocPropertyAssignRule.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadOnlyPropertyAssignRefRule.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadOnlyByPhpDocPropertyAssignRefRule.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/SetNonVirtualPropertyHookAssignRule.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/TypesAssignedToPropertiesRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/ParameterOutAssignedTypeRule.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/ParameterOutExecutionEndTypeRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/VariableCloningRule.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/DeadForeachRule.php";i:1739979920;s:178:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/CallToConstructorStatementWithoutImpurePointsRule.php";i:1739979920;s:175:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/CallToFunctionStatementWithoutImpurePointsRule.php";i:1739979920;s:173:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/CallToMethodStatementWithoutImpurePointsRule.php";i:1739979920;s:179:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/CallToStaticMethodStatementWithoutImpurePointsRule.php";i:1739979920;s:137:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/NoopRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/UnreachableStatementRule.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/UnusedPrivateConstantRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/UnusedPrivateMethodRule.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/OverwrittenExitPointByFinallyRule.php";i:1739979920;s:175:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/CallToFunctionStatementWithoutSideEffectsRule.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/UselessFunctionReturnValueRule.php";i:1739979920;s:176:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/CallToConstructorStatementWithoutSideEffectsRule.php";i:1739979920;s:171:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/CallToMethodStatementWithoutSideEffectsRule.php";i:1739979920;s:177:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/CallToStaticMethodStatementWithoutSideEffectsRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/NullsafeMethodCallRule.php";i:1739979920;s:175:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideArrowFunctionReturnTypehintRule.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideClosureReturnTypehintRule.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideFunctionReturnTypehintRule.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideFunctionParameterOutTypeRule.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideMethodParameterOutTypeRule.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWidePropertyTypeRule.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Traits/NotAnalysedTraitRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DateTimeInstantiationRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/CallUserFuncRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ParameterCastableToStringRule.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ImplodeParameterCastableToStringRule.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/SortParameterCastableToStringRule.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Regexp/RegularExpressionQuotingRule.php";i:1739979920;s:150:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/UselessConstructs/NoUselessWithFunctionCallsRule.php";i:1740065115;s:151:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/UselessConstructs/NoUselessValueFunctionCallsRule.php";i:1740065115;s:146:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/DeferrableServiceProviderMissingProvidesRule.php";i:1740065115;s:146:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/ConsoleCommand/UndefinedArgumentOrOptionRule.php";i:1740065115;s:159:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/AccessDeprecatedPropertyRule.php";i:1732830996;s:165:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/AccessDeprecatedStaticPropertyRule.php";i:1732830996;s:159:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedFunctionRule.php";i:1732830996;s:157:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedMethodRule.php";i:1732830996;s:163:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedStaticMethodRule.php";i:1732830996;s:170:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/FetchingClassConstOfDeprecatedClassRule.php";i:1732830996;s:158:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/FetchingDeprecatedConstRule.php";i:1732830996;s:170:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/ImplementationOfDeprecatedInterfaceRule.php";i:1732830996;s:163:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InheritanceOfDeprecatedClassRule.php";i:1732830996;s:167:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InheritanceOfDeprecatedInterfaceRule.php";i:1732830996;s:165:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InstantiationOfDeprecatedClassRule.php";i:1732830996;s:175:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInClassMethodSignatureRule.php";i:1732830996;s:171:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInClosureSignatureRule.php";i:1732830996;s:172:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInFunctionSignatureRule.php";i:1732830996;s:156:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/UsageOfDeprecatedCastRule.php";i:1732830996;s:157:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/UsageOfDeprecatedTraitRule.php";i:1732830996;s:145:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/AssertSameBooleanExpectedRule.php";i:1737551258;s:142:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/AssertSameNullExpectedRule.php";i:1737551258;s:139:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/AssertSameWithCountRule.php";i:1737551258;s:137:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/ClassCoversExistsRule.php";i:1737551258;s:143:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/ClassMethodCoversExistsRule.php";i:1737551258;s:134:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/MockMethodCallRule.php";i:1737551258;s:151:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/NoMissingSpaceInClassAnnotationRule.php";i:1737551258;s:152:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/NoMissingSpaceInMethodAnnotationRule.php";i:1737551258;s:143:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/ShouldCallParentMethodsRule.php";i:1737551258;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/BuilderFactory.php";i:1739979920;s:133:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/LexerFactory.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/AnonymousClassVisitor.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ArrayFilterArgVisitor.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ArrayFindArgVisitor.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ArrayMapArgVisitor.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ArrayWalkArgVisitor.php";i:1739979920;s:138:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ClosureArgVisitor.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ClosureBindToVarVisitor.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ClosureBindArgVisitor.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/CurlSetOptArgVisitor.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ArrowFunctionArgVisitor.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/MagicConstantParamDefaultVisitor.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/NewAssignedToPropertyVisitor.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ParentStmtTypesVisitor.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/StandaloneThrowExprVisitor.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/TryCatchTypeVisitor.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/LastConditionVisitor.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/TypeTraverserInstanceofVisitor.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/VariadicMethodsVisitor.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/VariadicFunctionsVisitor.php";i:1739979920;s:138:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Node/Printer/ExprPrinter.php";i:1739979920;s:134:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Node/Printer/Printer.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinter.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Broker/AnonymousClassNameHelper.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Php/PhpVersionFactoryFactory.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Php/ComposerPhpVersionFactory.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/phpstan/phpdoc-parser/src/ParserConfig.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/phpstan/phpdoc-parser/src/Lexer/Lexer.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/phpstan/phpdoc-parser/src/Parser/TypeParser.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/phpstan/phpdoc-parser/src/Parser/ConstExprParser.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/phpstan/phpdoc-parser/src/Parser/PhpDocParser.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/phpstan/phpdoc-parser/src/Printer/Printer.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/PhpDocInheritanceResolver.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/PhpDocNodeResolver.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/PhpDocStringResolver.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/ConstExprNodeResolver.php";i:1739979920;s:137:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/TypeNodeResolver.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/TypeStringResolver.php";i:1739979920;s:134:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/StubValidator.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/SocketSelectStubFilesExtension.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/StubFilesExtension.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/DefaultStubFilesProvider.php";i:1739979920;s:138:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/StubFilesProvider.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/JsonValidateStubFilesExtension.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/ReflectionClassStubFilesExtension.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/ReflectionEnumStubFilesExtension.php";i:1739979920;s:131:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/Analyser.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/AnalyserResultFinalizer.php";i:1739979920;s:135:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/FileAnalyser.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/LocalIgnoresProcessor.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/RuleErrorTransformer.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/Ignore/IgnoredErrorHelper.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/Ignore/IgnoreLexer.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/LazyInternalScopeFactory.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/InternalScopeFactory.php";i:1739979920;s:135:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/ScopeFactory.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/NodeScopeResolver.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/ConstantResolverFactory.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/ResultCache/ResultCacheClearer.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/RicherScopeGetTypeHelper.php";i:1739979920;s:125:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Cache/Cache.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Collectors/RegistryFactory.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/AnalyseApplication.php";i:1739979920;s:136:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/AnalyserRunner.php";i:1739979920;s:138:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/FixerApplication.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Dependency/DependencyResolver.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Dependency/ExportedNodeFetcher.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Dependency/ExportedNodeResolver.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Dependency/ExportedNodeVisitor.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Nette/NetteContainer.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Container.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/DerivativeContainerFactory.php";i:1739979920;s:129:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/FileHelper.php";i:1739979920;s:138:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/FileExcluderFactory.php";i:1739979920;s:129:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/FileFinder.php";i:1739979920;s:130:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/FileMonitor.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/DeclarePositionVisitor.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ImmediatelyInvokedClosureVisitor.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parallel/ParallelAnalyser.php";i:1739979920;s:132:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parallel/Scheduler.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Diagnose/DiagnoseExtension.php";i:1739979920;s:136:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Process/CpuCoreCounter.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/AttributeReflectionFactory.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/InitializerExprTypeResolver.php";i:1739979920;s:179:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Annotations/AnnotationsMethodsClassReflectionExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/MethodsClassReflectionExtension.php";i:1739979920;s:182:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Annotations/AnnotationsPropertiesClassReflectionExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/PropertiesClassReflectionExtension.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/CachingVisitor.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/FileNodesFetcher.php";i:1739979920;s:202:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/ComposerJsonAndInstalledJsonSourceLocatorMaker.php";i:1739979920;s:194:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedDirectorySourceLocatorFactory.php";i:1739979920;s:197:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedDirectorySourceLocatorRepository.php";i:1739979920;s:198:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocatorRepository.php";i:1739979920;s:198:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/Type/AdapterReflectionEnumCaseDynamicReturnTypeExtension.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/DynamicMethodReturnTypeExtension.php";i:1739979920;s:194:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/Type/AdapterReflectionEnumDynamicReturnTypeExtension.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ConstructorsHelper.php";i:1739979920;s:187:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/RequireExtension/RequireExtendsMethodsClassReflectionExtension.php";i:1739979920;s:190:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/RequireExtension/RequireExtendsPropertiesClassReflectionExtension.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Mixin/MixinMethodsClassReflectionExtension.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Mixin/MixinPropertiesClassReflectionExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/PhpClassReflectionExtension.php";i:1739979920;s:175:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/Soap/SoapClientMethodsClassReflectionExtension.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/EnumAllowedSubTypesClassReflectionExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/AllowedSubTypesClassReflectionExtension.php";i:1739979920;s:174:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/UniversalObjectCratesClassReflectionExtension.php";i:1739979920;s:185:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/PHPStan/NativeReflectionEnumReturnDynamicReturnTypeExtension.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/SignatureMap/NativeFunctionReflectionProvider.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/SignatureMap/SignatureMapParser.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/SignatureMap/FunctionSignatureMapProvider.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/SignatureMap/SignatureMapProvider.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/SignatureMap/Php8SignatureMapProvider.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/SignatureMap/SignatureMapProviderFactory.php";i:1739979920;s:137:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiRuleHelper.php";i:1739979920;s:135:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/AttributesCheck.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/NonexistentOffsetInArrayDimFetchCheck.php";i:1739979920;s:134:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/ClassNameCheck.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/ClassCaseSensitivityCheck.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/ClassForbiddenNameCheck.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/LocalTypeAliasesCheck.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MethodTagCheck.php";i:1739979920;s:138:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MixinCheck.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/PropertyTagCheck.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ConstantConditionRuleHelper.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ImpossibleCheckTypeHelper.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/DefaultExceptionTypeResolver.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/ExceptionTypeResolver.php";i:1739979920;s:174:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/MissingCheckedExceptionInFunctionThrowsRule.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/MissingCheckedExceptionInMethodThrowsRule.php";i:1739979920;s:178:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/MissingCheckedExceptionInPropertyHookThrowsRule.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/MissingCheckedExceptionInThrowsCheck.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/TooWideThrowTypeCheck.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/FunctionCallParametersCheck.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/FunctionDefinitionCheck.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/FunctionReturnTypeCheck.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/ParameterCastableToStringCheck.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/CrossCheckInterfacesHelper.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/GenericAncestorsCheck.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/GenericObjectTypeCheck.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/MethodTagTemplateTypeCheck.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/TemplateTypeCheck.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/VarianceCheck.php";i:1739979920;s:130:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/IssetCheck.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodCallCheck.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/StaticMethodCallCheck.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodSignatureRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodParameterComparisonHelper.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodVisibilityComparisonHelper.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/MissingTypehintCheck.php";i:1739979920;s:133:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/NullsafeCheck.php";i:1739979920;s:175:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/LazyAlwaysUsedClassConstantsExtensionProvider.php";i:1739979920;s:171:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/AlwaysUsedClassConstantsExtensionProvider.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/LazyAlwaysUsedMethodExtensionProvider.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/AlwaysUsedMethodExtensionProvider.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/ConditionalReturnTypeRuleHelper.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/AssertRuleHelper.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/UnresolvableTypeHelper.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/GenericCallableRuleHelper.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatiblePhpDocTypeCheck.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/VarTagTypeRuleHelper.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Playground/NeverRuleHelper.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/AccessPropertiesCheck.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/UninitializedPropertyRule.php";i:1739979920;s:171:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/LazyReadWritePropertiesExtensionProvider.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadWritePropertiesExtensionProvider.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/PropertyDescriptor.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/PropertyReflectionFinder.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Pure/FunctionPurityCheck.php";i:1739979920;s:135:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/RuleLevelHelper.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/UnusedFunctionParametersCheck.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideParameterOutTypeCheck.php";i:1739979920;s:133:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/FileTypeMapper.php";i:1739979920;s:136:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/BitwiseFlagHelper.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/AbsFunctionDynamicReturnTypeExtension.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/DynamicFunctionReturnTypeExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArgumentBasedFunctionReturnTypeExtension.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayChangeKeyCaseFunctionReturnTypeExtension.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayIntersectKeyFunctionReturnTypeExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayChunkFunctionReturnTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayColumnFunctionReturnTypeExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayCombineFunctionReturnTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayCurrentDynamicReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFillFunctionReturnTypeExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFillKeysFunctionReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFilterFunctionReturnTypeHelper.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFilterFunctionReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFlipFunctionReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFindFunctionReturnTypeExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFindKeyFunctionReturnTypeExtension.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayKeyDynamicReturnTypeExtension.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayKeyExistsFunctionTypeSpecifyingExtension.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/FunctionTypeSpecifyingExtension.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/TypeSpecifierAwareExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayKeyFirstDynamicReturnTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayKeyLastDynamicReturnTypeExtension.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayKeysFunctionDynamicReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayMapFunctionReturnTypeExtension.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayMergeFunctionDynamicReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayNextDynamicReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayPopFunctionReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayRandFunctionReturnTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayReduceFunctionReturnTypeExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayReplaceFunctionReturnTypeExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayReverseFunctionReturnTypeExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayShiftFunctionReturnTypeExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArraySliceFunctionReturnTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArraySpliceFunctionReturnTypeExtension.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArraySearchFunctionDynamicReturnTypeExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArraySearchFunctionTypeSpecifyingExtension.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayValuesFunctionDynamicReturnTypeExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArraySumFunctionDynamicReturnTypeExtension.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/AssertThrowTypeExtension.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/DynamicFunctionThrowTypeExtension.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/BackedEnumFromMethodDynamicReturnTypeExtension.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/DynamicStaticMethodReturnTypeExtension.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/Base64DecodeDynamicFunctionReturnTypeExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/BcMathStringOrNullReturnTypeExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ClosureBindDynamicReturnTypeExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ClosureBindToDynamicReturnTypeExtension.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ClosureFromCallableDynamicReturnTypeExtension.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/CompactFunctionReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ConstantFunctionReturnTypeExtension.php";i:1739979920;s:137:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ConstantHelper.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/CountFunctionReturnTypeExtension.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/CountCharsFunctionDynamicReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/CountFunctionTypeSpecifyingExtension.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/CurlGetinfoFunctionDynamicReturnTypeExtension.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateFunctionReturnTypeHelper.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateFormatFunctionReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateFormatMethodReturnTypeExtension.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateFunctionReturnTypeExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateIntervalConstructorThrowTypeExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/DynamicStaticMethodThrowTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateIntervalDynamicReturnTypeExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeCreateDynamicReturnTypeExtension.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeDynamicReturnTypeExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeModifyReturnTypeExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeConstructorThrowTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeModifyMethodThrowTypeExtension.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/DynamicMethodThrowTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeSubMethodThrowTypeExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeZoneConstructorThrowTypeExtension.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DsMapDynamicReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DsMapDynamicMethodThrowTypeExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DioStatDynamicFunctionReturnTypeExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ExplodeFunctionDynamicReturnTypeExtension.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/FilterFunctionReturnTypeHelper.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/FilterInputDynamicReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/FilterVarDynamicReturnTypeExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/FilterVarArrayDynamicReturnTypeExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GetCalledClassDynamicReturnTypeExtension.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GetClassDynamicReturnTypeExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GetDebugTypeFunctionReturnTypeExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GetDefinedVarsFunctionReturnTypeExtension.php";i:1739979920;s:171:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GetParentClassDynamicFunctionReturnTypeExtension.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GettypeFunctionReturnTypeExtension.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GettimeofdayDynamicFunctionReturnTypeExtension.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/HashFunctionsReturnTypeExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/HighlightStringDynamicReturnTypeExtension.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IntdivThrowTypeExtension.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IniGetReturnTypeExtension.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/JsonThrowTypeExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/OpenSslEncryptParameterOutTypeExtension.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/FunctionParameterOutTypeExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ParseStrParameterOutTypeExtension.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PregMatchTypeSpecifyingExtension.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PregMatchParameterOutTypeExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PregReplaceCallbackClosureTypeExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/FunctionParameterClosureTypeExtension.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/RegexArrayShapeMatcher.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Regex/RegexGroupParser.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Regex/RegexExpressionHelper.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReflectionClassConstructorThrowTypeExtension.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReflectionFunctionConstructorThrowTypeExtension.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReflectionMethodConstructorThrowTypeExtension.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReflectionPropertyConstructorThrowTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrContainingTypeSpecifyingExtension.php";i:1739979920;s:171:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SimpleXMLElementClassPropertyReflectionExtension.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SimpleXMLElementConstructorThrowTypeExtension.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StatDynamicReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MethodExistsTypeSpecifyingExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PropertyExistsTypeSpecifyingExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MinMaxFunctionReturnTypeExtension.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/NumberFormatFunctionDynamicReturnTypeExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PathinfoFunctionDynamicReturnTypeExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PregFilterFunctionReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PregSplitDynamicReturnTypeExtension.php";i:1739979920;s:173:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReflectionClassIsSubclassOfTypeSpecifyingExtension.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/MethodTypeSpecifyingExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReplaceFunctionsDynamicReturnTypeExtension.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayPointerFunctionsDynamicReturnTypeExtension.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/LtrimFunctionReturnTypeExtension.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MbFunctionsReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MbFunctionsReturnTypeExtensionTrait.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MbConvertEncodingFunctionReturnTypeExtension.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MbSubstituteCharacterDynamicReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MbStrlenFunctionReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MicrotimeFunctionReturnTypeExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/HrtimeFunctionReturnTypeExtension.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ImplodeFunctionReturnTypeExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/NonEmptyStringFunctionsReturnTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SetTypeFunctionTypeSpecifyingExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrCaseFunctionsReturnTypeExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrlenFunctionReturnTypeExtension.php";i:1739979920;s:171:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrIncrementDecrementFunctionReturnTypeExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrPadFunctionReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrRepeatFunctionReturnTypeExtension.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SubstrDynamicReturnTypeExtension.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ThrowableReturnTypeExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ParseUrlFunctionDynamicReturnTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/TriggerErrorDynamicReturnTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/TrimFunctionDynamicReturnTypeExtension.php";i:1739979920;s:171:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/VersionCompareFunctionDynamicReturnTypeExtension.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PowFunctionReturnTypeExtension.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/RoundFunctionReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrtotimeFunctionReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/RandomIntFunctionReturnTypeExtension.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/RangeFunctionReturnTypeExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/AssertFunctionTypeSpecifyingExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ClassExistsFunctionTypeSpecifyingExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ClassImplementsFunctionReturnTypeExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DefineConstantTypeSpecifyingExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DefinedConstantTypeSpecifyingExtension.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/FunctionExistsFunctionTypeSpecifyingExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/InArrayFunctionTypeSpecifyingExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IsArrayFunctionTypeSpecifyingExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IsCallableFunctionTypeSpecifyingExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IsIterableFunctionTypeSpecifyingExtension.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IsSubclassOfFunctionTypeSpecifyingExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IteratorToArrayFunctionReturnTypeExtension.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IsAFunctionTypeSpecifyingExtension.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IsAFunctionTypeSpecifyingHelper.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/CtypeDigitFunctionTypeSpecifyingExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/JsonThrowOnErrorDynamicReturnTypeExtension.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/TypeSpecifyingFunctionsDynamicReturnTypeExtension.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SimpleXMLElementAsXMLMethodReturnTypeExtension.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SimpleXMLElementXpathMethodReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrSplitFunctionReturnTypeExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrTokFunctionReturnTypeExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SprintfFunctionDynamicReturnTypeExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SscanfFunctionDynamicReturnTypeExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrvalFamilyFunctionReturnTypeExtension.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrWordCountFunctionDynamicReturnTypeExtension.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/XMLReaderOpenReturnTypeExtension.php";i:1739979920;s:171:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReflectionGetAttributesMethodReturnTypeExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DatePeriodConstructorReturnTypeExtension.php";i:1739979920;s:137:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/ClosureTypeFactory.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Constant/OversizedArrayBuilder.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/PrintfHelper.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/TypeSpecifierFactory.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/ParentDirectoryRelativePathHelper.php";i:1739979920;s:137:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/RelativePathHelper.php";i:1739979920;s:136:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Cache/FileCacheStorage.php";i:1739979920;s:132:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Cache/CacheStorage.php";i:1739979920;s:131:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/RichParser.php";i:1739979920;s:127:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/Parser.php";i:1739979920;s:135:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/CleaningParser.php";i:1739979920;s:133:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/SimpleParser.php";i:1739979920;s:133:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/CachedParser.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/PhpParserDecorator.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/Parser.php";i:1739979920;s:137:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/PhpParserFactory.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/ParserAbstract.php";i:1739979920;s:132:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/LazyRegistry.php";i:1739979920;s:128:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Registry.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/StubPhpDocProvider.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ReflectionProvider/ReflectionProviderFactory.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ReflectionProvider.php";i:1739979920;s:178:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/Reflector/DefaultReflector.php";i:1739979920;s:171:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/Reflector/Reflector.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/Reflector/MemoizingReflector.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/BetterReflectionProvider.php";i:1739979920;s:178:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/BetterReflectionSourceLocatorFactory.php";i:1739979920;s:189:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceStubber/PhpStormStubsSourceStubberFactory.php";i:1739979920;s:206:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/PhpStormStubsSourceStubber.php";i:1739979920;s:193:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/SourceStubber.php";i:1739979920;s:186:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceStubber/ReflectionSourceStubberFactory.php";i:1739979920;s:203:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/ReflectionSourceStubber.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/Parser/Php8.php";i:1739979920;s:138:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/PathRoutingParser.php";i:1739979920;s:131:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/StubParser.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Diagnose/PHPStanDiagnoseExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/CiDetectedErrorFormatter.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/ErrorFormatter.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/RawErrorFormatter.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/TableErrorFormatter.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/CheckstyleErrorFormatter.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/JsonErrorFormatter.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/JunitErrorFormatter.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/GitlabErrorFormatter.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/GithubErrorFormatter.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/TeamcityErrorFormatter.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ExistingClassInClassExtendsRule.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ExistingClassInInstanceOfRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/CaughtExceptionExistenceRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/CallToNonExistentFunctionRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/OverridingConstantRule.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/OverridingMethodRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Missing/MissingReturnRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Namespaces/ExistingNamesInGroupUseRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Namespaces/ExistingNamesInUseRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/AccessPropertiesRule.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/AccessStaticPropertiesRule.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ExistingClassesInPropertiesRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/FunctionCallableRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/OverridingPropertyRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/SetPropertyHookParameterRule.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/WritingToReadOnlyPropertiesRule.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadingWriteOnlyPropertiesRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/CompactVariablesRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/DefinedVariableRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Keywords/RequireFileExistsRule.php";i:1739979920;s:137:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MixinRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/RequireExtendsCheck.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/RequireImplementsDefinitionTraitRule.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/CallCallablesRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/InvalidPhpDocTagValueRule.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/InvalidPhpDocVarTagTypeRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/InvalidPHPStanDocTagRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/InvalidKeyInArrayDimFetchRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/InvalidKeyInArrayItemRule.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/NonexistentOffsetInArrayDimFetchRule.php";i:1739979920;s:175:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/ThrowsVoidFunctionWithExplicitThrowPointRule.php";i:1739979920;s:173:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/ThrowsVoidMethodWithExplicitThrowPointRule.php";i:1739979920;s:179:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/ThrowsVoidPropertyHookWithExplicitThrowPointRule.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generators/YieldFromTypeRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generators/YieldInGeneratorRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ImpossibleInstanceOfRule.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/BooleanAndConstantConditionRule.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/BooleanOrConstantConditionRule.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/BooleanNotConstantConditionRule.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/ConstructorWithoutImpurePointsCollector.php";i:1739979920;s:134:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Collectors/Collector.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/PossiblyPureNewCollector.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/FunctionWithoutImpurePointsCollector.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/PossiblyPureFuncCallCollector.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/MethodWithoutImpurePointsCollector.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/PossiblyPureMethodCallCollector.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/PossiblyPureStaticCallCollector.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/UnusedPrivatePropertyRule.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/DoWhileLoopConstantConditionRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ElseIfConstantConditionRule.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/IfConstantConditionRule.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ImpossibleCheckTypeFunctionCallRule.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ImpossibleCheckTypeMethodCallRule.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ImpossibleCheckTypeStaticMethodCallRule.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/LogicalXorConstantConditionRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/MatchExpressionRule.php";i:1739979920;s:177:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/NumberComparisonOperatorsConstantConditionRule.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/StrictComparisonOfDifferentTypesRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ConstantLooseComparisonRule.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/TernaryOperatorConstantConditionRule.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/WhileLoopAlwaysFalseConditionRule.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/WhileLoopAlwaysTrueConditionRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/TooWideFunctionThrowTypeRule.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/TooWideMethodThrowTypeRule.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/TooWidePropertyHookThrowTypeRule.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideMethodReturnTypehintRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/NullsafePropertyFetchRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Traits/TraitDeclarationCollector.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Traits/TraitUseCollector.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/CatchWithUnthrownExceptionRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/RandomIntParametersRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ArrayFilterRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ArrayValuesRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ParameterCastableToNumberRule.php";i:1739979920;s:134:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/RelationForwardsCallsExtension.php";i:1740065115;s:131:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/ModelForwardsCallsExtension.php";i:1740065115;s:141:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/EloquentBuilderForwardsCallsExtension.php";i:1740065115;s:132:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/HigherOrderTapProxyExtension.php";i:1740065115;s:139:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/HigherOrderCollectionProxyExtension.php";i:1740065115;s:142:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/StorageMethodsClassReflectionExtension.php";i:1740065115;s:113:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/Extension.php";i:1740065115;s:147:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/ModelFactoryMethodsClassReflectionExtension.php";i:1740065115;s:151:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/RedirectResponseMethodsClassReflectionExtension.php";i:1740065115;s:140:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/MacroMethodsClassReflectionExtension.php";i:1740065115;s:117:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Concerns/HasContainer.php";i:1740065115;s:143:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/ViewWithMethodsClassReflectionExtension.php";i:1740065115;s:129:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Properties/ModelAccessorExtension.php";i:1740065115;s:129:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Properties/ModelPropertyExtension.php";i:1740065115;s:150:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Properties/HigherOrderCollectionProxyPropertyExtension.php";i:1740065115;s:136:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/HigherOrderTapProxyExtension.php";i:1740065115;s:160:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ContainerArrayAccessDynamicMethodReturnTypeExtension.php";i:1740065115;s:130:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Properties/ModelRelationsExtension.php";i:1740065115;s:149:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ModelOnlyDynamicMethodReturnTypeExtension.php";i:1740065115;s:158:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ModelFactoryDynamicStaticMethodReturnTypeExtension.php";i:1740065115;s:151:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ModelDynamicStaticMethodReturnTypeExtension.php";i:1740065115;s:141:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/AppMakeDynamicReturnTypeExtension.php";i:1740065115;s:121:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/AuthExtension.php";i:1740065115;s:119:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Concerns/LoadsAuthModel.php";i:1740065115;s:151:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/GuardDynamicStaticMethodReturnTypeExtension.php";i:1740065115;s:128:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/AuthManagerExtension.php";i:1740065115;s:121:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/DateExtension.php";i:1740065115;s:122:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/GuardExtension.php";i:1740065115;s:128:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/RequestFileExtension.php";i:1740065115;s:129:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/RequestRouteExtension.php";i:1740065115;s:128:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/RequestUserExtension.php";i:1740065115;s:132:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/EloquentBuilderExtension.php";i:1740065115;s:129:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/RelationFindExtension.php";i:1740065115;s:135:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/RelationCollectionExtension.php";i:1740065115;s:126:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ModelFindExtension.php";i:1740065115;s:133:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/BuilderModelFindExtension.php";i:1740065115;s:125:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/TestCaseExtension.php";i:1740065115;s:120:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Support/CollectionHelper.php";i:1740065115;s:129:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/AuthExtension.php";i:1740065115;s:132:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/CollectExtension.php";i:1740065115;s:136:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/NowAndTodayExtension.php";i:1740065115;s:133:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/ResponseExtension.php";i:1740065115;s:134:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/ValidatorExtension.php";i:1740065115;s:132:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/LiteralExtension.php";i:1740065115;s:156:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/CollectionFilterRejectDynamicReturnTypeExtension.php";i:1740065115;s:156:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/CollectionWhereNotNullDynamicReturnTypeExtension.php";i:1740065115;s:153:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/NewModelQueryDynamicMethodReturnTypeExtension.php";i:1740065115;s:147:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/FactoryDynamicMethodReturnTypeExtension.php";i:1740065115;s:140:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Types/AbortIfFunctionTypeSpecifyingExtension.php";i:1740065115;s:128:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/AppExtension.php";i:1740065115;s:130:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/ValueExtension.php";i:1740065115;s:128:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/StrExtension.php";i:1740065115;s:128:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/TapExtension.php";i:1740065115;s:153:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/StorageDynamicStaticMethodReturnTypeExtension.php";i:1740065115;s:152:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Types/GenericEloquentCollectionTypeNodeResolverExtension.php";i:1740065115;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/TypeNodeResolverExtension.php";i:1739979920;s:137:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Types/ViewStringTypeNodeResolverExtension.php";i:1740065115;s:125:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/OctaneCompatibilityRule.php";i:1740065115;s:131:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/NoEnvCallsOutsideOfConfigRule.php";i:1740065115;s:117:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/NoModelMakeRule.php";i:1740065115;s:133:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/NoUnnecessaryCollectionCallRule.php";i:1740065115;s:118:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/ModelAppendsRule.php";i:1740065115;s:149:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Types/GenericEloquentBuilderTypeNodeResolverExtension.php";i:1740065115;s:141:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/AppEnvironmentReturnTypeExtension.php";i:1740065115;s:154:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Types/ModelProperty/ModelPropertyTypeNodeResolverExtension.php";i:1740065115;s:122:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Properties/MigrationHelper.php";i:1740065115;s:130:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Properties/SquashedMigrationHelper.php";i:1740065115;s:122:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Properties/ModelCastHelper.php";i:1740065115;s:126:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Properties/ModelPropertyHelper.php";i:1740065115;s:117:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/ModelRuleHelper.php";i:1740065115;s:117:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/BuilderHelper.php";i:1740065115;s:123:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/RelationExistenceRule.php";i:1740065115;s:162:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/CheckDispatchArgumentTypesCompatibleWithClassConstructorRule.php";i:1740065115;s:150:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Properties/Schema/PhpMyAdminDataTypeToPhpTypeConverter.php";i:1740065115;s:122:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/LarastanStubFilesExtension.php";i:1740065115;s:117:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/UnusedViewsRule.php";i:1740065115;s:132:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Collectors/UsedViewFunctionCollector.php";i:1740065115;s:129:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Collectors/UsedEmailViewCollector.php";i:1740065115;s:128:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Collectors/UsedViewMakeCollector.php";i:1740065115;s:134:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Collectors/UsedViewFacadeMakeCollector.php";i:1740065115;s:135:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Collectors/UsedRouteFacadeViewCollector.php";i:1740065115;s:137:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Collectors/UsedViewInAnotherViewCollector.php";i:1740065115;s:118:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Support/ViewFileHelper.php";i:1740065115;s:149:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ApplicationMakeDynamicReturnTypeExtension.php";i:1740065115;s:147:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ContainerMakeDynamicReturnTypeExtension.php";i:1740065115;s:157:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ConsoleCommand/ArgumentDynamicReturnTypeExtension.php";i:1740065115;s:160:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ConsoleCommand/HasArgumentDynamicReturnTypeExtension.php";i:1740065115;s:155:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ConsoleCommand/OptionDynamicReturnTypeExtension.php";i:1740065115;s:158:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ConsoleCommand/HasOptionDynamicReturnTypeExtension.php";i:1740065115;s:140:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/TranslatorGetReturnTypeExtension.php";i:1740065115;s:138:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/TransHelperReturnTypeExtension.php";i:1740065115;s:149:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/DoubleUnderscoreHelperReturnTypeExtension.php";i:1740065115;s:121:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/AppMakeHelper.php";i:1740065115;s:131:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Internal/ConsoleApplicationResolver.php";i:1740065115;s:129:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Internal/ConsoleApplicationHelper.php";i:1740065115;s:136:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Support/HigherOrderCollectionProxyHelper.php";i:1740065115;s:121:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nesbot/carbon/src/Carbon/PHPStan/MacroExtension.php";i:1740072818;s:152:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/DeprecatedClassHelper.php";i:1732830996;s:167:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/DependencyInjection/LazyDeprecatedScopeResolverProvider.php";i:1732830996;s:161:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/DefaultDeprecatedScopeResolver.php";i:1732830996;s:154:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/DeprecatedScopeResolver.php";i:1732830996;s:162:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallWithDeprecatedIniOptionRule.php";i:1732830996;s:152:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/PhpDoc/PHPUnit/MockObjectTypeNodeResolverExtension.php";i:1737551258;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/TypeNodeResolverAwareExtension.php";i:1739979920;s:159:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/Assert/AssertFunctionTypeSpecifyingExtension.php";i:1737551258;s:157:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/Assert/AssertMethodTypeSpecifyingExtension.php";i:1737551258;s:163:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/Assert/AssertStaticMethodTypeSpecifyingExtension.php";i:1737551258;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/StaticMethodTypeSpecifyingExtension.php";i:1739979920;s:157:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/InvocationMockerDynamicReturnTypeExtension.php";i:1737551258;s:152:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/MockBuilderDynamicReturnTypeExtension.php";i:1737551258;s:151:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/MockObjectDynamicReturnTypeExtension.php";i:1737551258;s:128:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/CoversHelper.php";i:1737551258;s:132:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/AnnotationHelper.php";i:1737551258;s:141:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/DataProviderHelperFactory.php";i:1737551258;s:143:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/DataProviderDeclarationRule.php";i:1737551258;s:145:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/AssertEqualsIsDiscouragedRule.php";i:1737551258;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nette/di/src/DI/Container.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nette/utils/src/SmartObject.php";i:1739979920;s:135:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Php/PhpVersionFactory.php";i:1739979920;s:128:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Php/PhpVersion.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/LazyTypeNodeResolverExtensionRegistryProvider.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/TypeNodeResolverExtensionRegistryProvider.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/ConstantResolver.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/ResultCache/ResultCacheManager.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/ResultCache/ResultCacheManagerFactory.php";i:1739979920;s:133:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Collectors/Registry.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/MemoizingContainer.php";i:1739979920;s:189:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Reflection/LazyClassReflectionExtensionRegistryProvider.php";i:1739979920;s:185:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Reflection/ClassReflectionExtensionRegistryProvider.php";i:1739979920;s:185:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/LazyDynamicReturnTypeExtensionRegistryProvider.php";i:1739979920;s:181:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/DynamicReturnTypeExtensionRegistryProvider.php";i:1739979920;s:176:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/LazyParameterOutTypeExtensionProvider.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/ParameterOutTypeExtensionProvider.php";i:1739979920;s:190:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/LazyExpressionTypeResolverExtensionRegistryProvider.php";i:1739979920;s:186:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/ExpressionTypeResolverExtensionRegistryProvider.php";i:1739979920;s:190:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/LazyOperatorTypeSpecifyingExtensionRegistryProvider.php";i:1739979920;s:186:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/OperatorTypeSpecifyingExtensionRegistryProvider.php";i:1739979920;s:176:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/LazyDynamicThrowTypeExtensionProvider.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/DynamicThrowTypeExtensionProvider.php";i:1739979920;s:180:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/LazyParameterClosureTypeExtensionProvider.php";i:1739979920;s:176:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/ParameterClosureTypeExtensionProvider.php";i:1739979920;s:131:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/FileExcluder.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/FileExcluderRawFactory.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/PhpFunctionReflection.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/FunctionReflection.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/FunctionReflectionFactory.php";i:1739979920;s:185:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedPsrAutoloaderLocator.php";i:1739979920;s:184:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/SourceLocator/Type/SourceLocator.php";i:1739979920;s:192:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedPsrAutoloaderLocatorFactory.php";i:1739979920;s:188:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocator.php";i:1739979920;s:195:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocatorFactory.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/PhpMethodReflection.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ExtendedMethodReflection.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ClassMemberReflection.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/MethodReflection.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/PhpMethodReflectionFactory.php";i:1739979920;s:174:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ReflectionProvider/LazyReflectionProviderProvider.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ReflectionProvider/ReflectionProviderProvider.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/UsefulTypeAliasResolver.php";i:1739979920;s:136:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/TypeAliasResolver.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/LazyTypeAliasResolverProvider.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/TypeAliasResolverProvider.php";i:1739979920;s:136:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/TypeSpecifier.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/FuzzyRelativePathHelper.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/SimpleRelativePathHelper.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/Lexer.php";i:1739979920;s:173:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/BetterReflectionProviderFactory.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php";i:1739979920;s:152:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/DeprecatedScopeHelper.php";i:1732830996;s:134:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/DataProviderHelper.php";i:1737551258;}i:3;a:885:{i:0;s:34:"PHPStan\Rules\Debug\DebugScopeRule";i:1;s:18:"PHPStan\Rules\Rule";i:2;s:38:"PHPStan\Rules\Debug\DumpPhpDocTypeRule";i:3;s:32:"PHPStan\Rules\Debug\DumpTypeRule";i:4;s:34:"PHPStan\Rules\Debug\FileAssertRule";i:5;s:35:"PHPStan\Rules\Api\ApiInstanceofRule";i:6;s:39:"PHPStan\Rules\Api\ApiInstanceofTypeRule";i:7;s:38:"PHPStan\Rules\Api\ApiInstantiationRule";i:8;s:40:"PHPStan\Rules\Api\ApiClassConstFetchRule";i:9;s:37:"PHPStan\Rules\Api\ApiClassExtendsRule";i:10;s:40:"PHPStan\Rules\Api\ApiClassImplementsRule";i:11;s:41:"PHPStan\Rules\Api\ApiInterfaceExtendsRule";i:12;s:35:"PHPStan\Rules\Api\ApiMethodCallRule";i:13;s:35:"PHPStan\Rules\Api\ApiStaticCallRule";i:14;s:33:"PHPStan\Rules\Api\ApiTraitUseRule";i:15;s:37:"PHPStan\Rules\Api\GetTemplateTypeRule";i:16;s:53:"PHPStan\Rules\Api\NodeConnectingVisitorAttributesRule";i:17;s:40:"PHPStan\Rules\Api\OldPhpParser4ClassRule";i:18;s:55:"PHPStan\Rules\Api\PhpStanNamespaceIn3rdPartyPackageRule";i:19;s:52:"PHPStan\Rules\Api\RuntimeReflectionInstantiationRule";i:20;s:47:"PHPStan\Rules\Api\RuntimeReflectionFunctionRule";i:21;s:53:"PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule";i:22;s:57:"PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule";i:23;s:32:"PHPStan\Rules\Cast\UnsetCastRule";i:24;s:41:"PHPStan\Rules\Classes\AllowedSubTypesRule";i:25;s:41:"PHPStan\Rules\Classes\ClassAttributesRule";i:26;s:49:"PHPStan\Rules\Classes\ClassConstantAttributesRule";i:27;s:39:"PHPStan\Rules\Classes\ClassConstantRule";i:28;s:46:"PHPStan\Rules\Classes\DuplicateDeclarationRule";i:29;s:36:"PHPStan\Rules\Classes\EnumSanityRule";i:30;s:58:"PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule";i:31;s:57:"PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule";i:32;s:59:"PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule";i:33;s:49:"PHPStan\Rules\Classes\ExistingClassInTraitUseRule";i:34;s:39:"PHPStan\Rules\Classes\InstantiationRule";i:35;s:47:"PHPStan\Rules\Classes\InstantiationCallableRule";i:36;s:51:"PHPStan\Rules\Classes\InvalidPromotedPropertiesRule";i:37;s:42:"PHPStan\Rules\Classes\LocalTypeAliasesRule";i:38;s:50:"PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule";i:39;s:47:"PHPStan\Rules\Classes\LocalTypeTraitAliasesRule";i:40;s:35:"PHPStan\Rules\Classes\NewStaticRule";i:41;s:48:"PHPStan\Rules\Classes\NonClassAttributeClassRule";i:42;s:39:"PHPStan\Rules\Classes\ReadOnlyClassRule";i:43;s:45:"PHPStan\Rules\Classes\TraitAttributeClassRule";i:44;s:48:"PHPStan\Rules\Constants\ClassAsClassConstantRule";i:45;s:53:"PHPStan\Rules\Constants\DynamicClassConstantFetchRule";i:46;s:41:"PHPStan\Rules\Constants\FinalConstantRule";i:47;s:48:"PHPStan\Rules\Constants\MagicConstantContextRule";i:48;s:52:"PHPStan\Rules\Constants\NativeTypedClassConstantRule";i:49;s:46:"PHPStan\Rules\EnumCases\EnumCaseAttributesRule";i:50;s:46:"PHPStan\Rules\Exceptions\NoncapturingCatchRule";i:51;s:44:"PHPStan\Rules\Exceptions\ThrowExpressionRule";i:52;s:51:"PHPStan\Rules\Functions\ArrowFunctionAttributesRule";i:53;s:60:"PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule";i:54;s:45:"PHPStan\Rules\Functions\ClosureAttributesRule";i:55;s:44:"PHPStan\Rules\Functions\DefineParametersRule";i:56;s:67:"PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule";i:57;s:52:"PHPStan\Rules\Functions\CallToFunctionParametersRule";i:58;s:61:"PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule";i:59;s:54:"PHPStan\Rules\Functions\ExistingClassesInTypehintsRule";i:60;s:46:"PHPStan\Rules\Functions\FunctionAttributesRule";i:61;s:41:"PHPStan\Rules\Functions\InnerFunctionRule";i:62;s:63:"PHPStan\Rules\Functions\InvalidLexicalVariablesInClosureUseRule";i:63;s:43:"PHPStan\Rules\Functions\ParamAttributesRule";i:64;s:49:"PHPStan\Rules\Functions\PrintfArrayParametersRule";i:65;s:44:"PHPStan\Rules\Functions\PrintfParametersRule";i:66;s:47:"PHPStan\Rules\Functions\RedefinedParametersRule";i:67;s:47:"PHPStan\Rules\Functions\ReturnNullsafeByRefRule";i:68;s:41:"PHPStan\Rules\Ignore\IgnoreParseErrorRule";i:69;s:57:"PHPStan\Rules\Functions\VariadicParametersDeclarationRule";i:70;s:46:"PHPStan\Rules\Keywords\ContinueBreakInLoopRule";i:71;s:45:"PHPStan\Rules\Keywords\DeclareStrictTypesRule";i:72;s:58:"PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule";i:73;s:47:"PHPStan\Rules\Methods\AbstractPrivateMethodRule";i:74;s:37:"PHPStan\Rules\Methods\CallMethodsRule";i:75;s:43:"PHPStan\Rules\Methods\CallStaticMethodsRule";i:76;s:47:"PHPStan\Rules\Methods\ConsistentConstructorRule";i:77;s:47:"PHPStan\Rules\Methods\ConstructorReturnTypeRule";i:78;s:52:"PHPStan\Rules\Methods\ExistingClassesInTypehintsRule";i:79;s:44:"PHPStan\Rules\Methods\FinalPrivateMethodRule";i:80;s:40:"PHPStan\Rules\Methods\MethodCallableRule";i:81;s:53:"PHPStan\Rules\Methods\MethodVisibilityInInterfaceRule";i:82;s:58:"PHPStan\Rules\Methods\MissingMagicSerializationMethodsRule";i:83;s:53:"PHPStan\Rules\Methods\MissingMethodImplementationRule";i:84;s:42:"PHPStan\Rules\Methods\MethodAttributesRule";i:85;s:46:"PHPStan\Rules\Methods\StaticMethodCallableRule";i:86;s:33:"PHPStan\Rules\Names\UsedNamesRule";i:87;s:44:"PHPStan\Rules\Operators\InvalidAssignVarRule";i:88;s:50:"PHPStan\Rules\Operators\InvalidIncDecOperationRule";i:89;s:53:"PHPStan\Rules\Properties\AccessPropertiesInAssignRule";i:90;s:59:"PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule";i:91;s:67:"PHPStan\Rules\Properties\ExistingClassesInPropertyHookTypehintsRule";i:92;s:56:"PHPStan\Rules\Properties\InvalidCallablePropertyTypeRule";i:93;s:58:"PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule";i:94;s:66:"PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule";i:95;s:50:"PHPStan\Rules\Properties\PropertiesInInterfaceRule";i:96;s:46:"PHPStan\Rules\Properties\PropertyAssignRefRule";i:97;s:47:"PHPStan\Rules\Properties\PropertyAttributesRule";i:98;s:51:"PHPStan\Rules\Properties\PropertyHookAttributesRule";i:99;s:44:"PHPStan\Rules\Properties\PropertyInClassRule";i:100;s:45:"PHPStan\Rules\Properties\ReadOnlyPropertyRule";i:101;s:53:"PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyRule";i:102;s:49:"PHPStan\Rules\Regexp\RegularExpressionPatternRule";i:103;s:50:"PHPStan\Rules\Traits\ConflictingTraitConstantsRule";i:104;s:42:"PHPStan\Rules\Traits\ConstantsInTraitsRule";i:105;s:40:"PHPStan\Rules\Traits\TraitAttributesRule";i:106;s:43:"PHPStan\Rules\Types\InvalidTypesInUnionRule";i:107;s:33:"PHPStan\Rules\Variables\UnsetRule";i:108;s:43:"PHPStan\Rules\Whitespace\FileWhitespaceRule";i:109;s:53:"PHPStan\Rules\Classes\UnusedConstructorParametersRule";i:110;s:36:"PHPStan\Rules\Constants\ConstantRule";i:111;s:45:"PHPStan\Rules\Functions\UnusedClosureUsesRule";i:112;s:33:"PHPStan\Rules\Variables\EmptyRule";i:113;s:33:"PHPStan\Rules\Variables\IssetRule";i:114;s:40:"PHPStan\Rules\Variables\NullCoalesceRule";i:115;s:27:"PHPStan\Rules\Cast\EchoRule";i:116;s:34:"PHPStan\Rules\Cast\InvalidCastRule";i:117;s:50:"PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule";i:118;s:28:"PHPStan\Rules\Cast\PrintRule";i:119;s:60:"PHPStan\Rules\Classes\AccessPrivateConstantThroughStaticRule";i:120;s:35:"PHPStan\Rules\Classes\MethodTagRule";i:121;s:40:"PHPStan\Rules\Classes\MethodTagTraitRule";i:122;s:43:"PHPStan\Rules\Classes\MethodTagTraitUseRule";i:123;s:37:"PHPStan\Rules\Classes\PropertyTagRule";i:124;s:42:"PHPStan\Rules\Classes\PropertyTagTraitRule";i:125;s:45:"PHPStan\Rules\Classes\PropertyTagTraitUseRule";i:126;s:36:"PHPStan\Rules\Classes\MixinTraitRule";i:127;s:39:"PHPStan\Rules\Classes\MixinTraitUseRule";i:128;s:55:"PHPStan\Rules\Comparison\UsageOfVoidMatchExpressionRule";i:129;s:56:"PHPStan\Rules\Constants\ValueAssignedToClassConstantRule";i:130;s:60:"PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule";i:131;s:73:"PHPStan\Rules\Functions\IncompatibleArrowFunctionDefaultParameterTypeRule";i:132;s:67:"PHPStan\Rules\Functions\IncompatibleClosureDefaultParameterTypeRule";i:133;s:41:"PHPStan\Rules\Generics\ClassAncestorsRule";i:134;s:44:"PHPStan\Rules\Generics\ClassTemplateTypeRule";i:135;s:40:"PHPStan\Rules\Generics\EnumAncestorsRule";i:136;s:43:"PHPStan\Rules\Generics\EnumTemplateTypeRule";i:137;s:47:"PHPStan\Rules\Generics\FunctionTemplateTypeRule";i:138;s:52:"PHPStan\Rules\Generics\FunctionSignatureVarianceRule";i:139;s:45:"PHPStan\Rules\Generics\InterfaceAncestorsRule";i:140;s:48:"PHPStan\Rules\Generics\InterfaceTemplateTypeRule";i:141;s:45:"PHPStan\Rules\Generics\MethodTemplateTypeRule";i:142;s:48:"PHPStan\Rules\Generics\MethodTagTemplateTypeRule";i:143;s:53:"PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule";i:144;s:50:"PHPStan\Rules\Generics\MethodSignatureVarianceRule";i:145;s:43:"PHPStan\Rules\Generics\PropertyVarianceRule";i:146;s:44:"PHPStan\Rules\Generics\TraitTemplateTypeRule";i:147;s:37:"PHPStan\Rules\Generics\UsedTraitsRule";i:148;s:56:"PHPStan\Rules\Methods\CallPrivateMethodThroughStaticRule";i:149;s:58:"PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule";i:150;s:50:"PHPStan\Rules\Operators\InvalidBinaryOperationRule";i:151;s:54:"PHPStan\Rules\Operators\InvalidComparisonOperationRule";i:152;s:49:"PHPStan\Rules\Operators\InvalidUnaryOperationRule";i:153;s:54:"PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule";i:154;s:52:"PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule";i:155;s:39:"PHPStan\Rules\PhpDoc\FunctionAssertRule";i:156;s:37:"PHPStan\Rules\PhpDoc\MethodAssertRule";i:157;s:48:"PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule";i:158;s:60:"PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule";i:159;s:47:"PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule";i:160;s:59:"PHPStan\Rules\PhpDoc\IncompatiblePropertyHookPhpDocTypeRule";i:161;s:55:"PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule";i:162;s:49:"PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule";i:163;s:68:"PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule";i:164;s:52:"PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule";i:165;s:50:"PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule";i:166;s:63:"PHPStan\Rules\Properties\AccessPrivatePropertyThroughStaticRule";i:167;s:43:"PHPStan\Rules\Classes\RequireImplementsRule";i:168;s:40:"PHPStan\Rules\Classes\RequireExtendsRule";i:169;s:57:"PHPStan\Rules\PhpDoc\RequireImplementsDefinitionClassRule";i:170;s:54:"PHPStan\Rules\PhpDoc\RequireExtendsDefinitionClassRule";i:171;s:54:"PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule";i:172;s:35:"PHPStan\Rules\Pure\PureFunctionRule";i:173;s:33:"PHPStan\Rules\Pure\PureMethodRule";i:174;s:43:"PHPStan\Rules\Arrays\ArrayDestructuringRule";i:175;s:39:"PHPStan\Rules\Arrays\ArrayUnpackingRule";i:176;s:42:"PHPStan\Rules\Arrays\IterableInForeachRule";i:177;s:47:"PHPStan\Rules\Arrays\OffsetAccessAssignmentRule";i:178;s:45:"PHPStan\Rules\Arrays\OffsetAccessAssignOpRule";i:179;s:52:"PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule";i:180;s:46:"PHPStan\Rules\Arrays\UnpackIterableInArrayRule";i:181;s:42:"PHPStan\Rules\Exceptions\ThrowExprTypeRule";i:182;s:51:"PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule";i:183;s:45:"PHPStan\Rules\Functions\ClosureReturnTypeRule";i:184;s:38:"PHPStan\Rules\Functions\ReturnTypeRule";i:185;s:38:"PHPStan\Rules\Generators\YieldTypeRule";i:186;s:36:"PHPStan\Rules\Methods\ReturnTypeRule";i:187;s:66:"PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule";i:188;s:58:"PHPStan\Rules\Properties\GetNonVirtualPropertyHookReadRule";i:189;s:51:"PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule";i:190;s:59:"PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule";i:191;s:54:"PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule";i:192;s:62:"PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule";i:193;s:60:"PHPStan\Rules\Properties\SetNonVirtualPropertyHookAssignRule";i:194;s:54:"PHPStan\Rules\Properties\TypesAssignedToPropertiesRule";i:195;s:52:"PHPStan\Rules\Variables\ParameterOutAssignedTypeRule";i:196;s:56:"PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule";i:197;s:43:"PHPStan\Rules\Variables\VariableCloningRule";i:198;s:36:"PHPStan\Rules\Arrays\DeadForeachRule";i:199;s:72:"PHPStan\Rules\DeadCode\CallToConstructorStatementWithoutImpurePointsRule";i:200;s:69:"PHPStan\Rules\DeadCode\CallToFunctionStatementWithoutImpurePointsRule";i:201;s:67:"PHPStan\Rules\DeadCode\CallToMethodStatementWithoutImpurePointsRule";i:202;s:73:"PHPStan\Rules\DeadCode\CallToStaticMethodStatementWithoutImpurePointsRule";i:203;s:31:"PHPStan\Rules\DeadCode\NoopRule";i:204;s:47:"PHPStan\Rules\DeadCode\UnreachableStatementRule";i:205;s:48:"PHPStan\Rules\DeadCode\UnusedPrivateConstantRule";i:206;s:46:"PHPStan\Rules\DeadCode\UnusedPrivateMethodRule";i:207;s:58:"PHPStan\Rules\Exceptions\OverwrittenExitPointByFinallyRule";i:208;s:69:"PHPStan\Rules\Functions\CallToFunctionStatementWithoutSideEffectsRule";i:209;s:54:"PHPStan\Rules\Functions\UselessFunctionReturnValueRule";i:210;s:70:"PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule";i:211;s:65:"PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule";i:212;s:71:"PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule";i:213;s:44:"PHPStan\Rules\Methods\NullsafeMethodCallRule";i:214;s:69:"PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule";i:215;s:63:"PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule";i:216;s:64:"PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule";i:217;s:66:"PHPStan\Rules\TooWideTypehints\TooWideFunctionParameterOutTypeRule";i:218;s:64:"PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule";i:219;s:54:"PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule";i:220;s:41:"PHPStan\Rules\Traits\NotAnalysedTraitRule";i:221;s:39:"PHPStan\Rules\DateTimeInstantiationRule";i:222;s:40:"PHPStan\Rules\Functions\CallUserFuncRule";i:223;s:53:"PHPStan\Rules\Functions\ParameterCastableToStringRule";i:224;s:60:"PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule";i:225;s:57:"PHPStan\Rules\Functions\SortParameterCastableToStringRule";i:226;s:49:"PHPStan\Rules\Regexp\RegularExpressionQuotingRule";i:227;s:72:"Larastan\Larastan\Rules\UselessConstructs\NoUselessWithFunctionCallsRule";i:228;s:73:"Larastan\Larastan\Rules\UselessConstructs\NoUselessValueFunctionCallsRule";i:229;s:68:"Larastan\Larastan\Rules\DeferrableServiceProviderMissingProvidesRule";i:230;s:68:"Larastan\Larastan\Rules\ConsoleCommand\UndefinedArgumentOrOptionRule";i:231;s:55:"PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule";i:232;s:61:"PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule";i:233;s:55:"PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule";i:234;s:53:"PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule";i:235;s:59:"PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule";i:236;s:66:"PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule";i:237;s:54:"PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule";i:238;s:66:"PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule";i:239;s:59:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule";i:240;s:63:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule";i:241;s:61:"PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule";i:242;s:71:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule";i:243;s:67:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule";i:244;s:68:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule";i:245;s:52:"PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule";i:246;s:53:"PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule";i:247;s:51:"PHPStan\Rules\PHPUnit\AssertSameBooleanExpectedRule";i:248;s:48:"PHPStan\Rules\PHPUnit\AssertSameNullExpectedRule";i:249;s:45:"PHPStan\Rules\PHPUnit\AssertSameWithCountRule";i:250;s:43:"PHPStan\Rules\PHPUnit\ClassCoversExistsRule";i:251;s:49:"PHPStan\Rules\PHPUnit\ClassMethodCoversExistsRule";i:252;s:40:"PHPStan\Rules\PHPUnit\MockMethodCallRule";i:253;s:57:"PHPStan\Rules\PHPUnit\NoMissingSpaceInClassAnnotationRule";i:254;s:58:"PHPStan\Rules\PHPUnit\NoMissingSpaceInMethodAnnotationRule";i:255;s:49:"PHPStan\Rules\PHPUnit\ShouldCallParentMethodsRule";i:256;s:24:"PhpParser\BuilderFactory";i:257;s:27:"PHPStan\Parser\LexerFactory";i:258;s:34:"PhpParser\NodeVisitor\NameResolver";i:259;s:29:"PhpParser\NodeVisitorAbstract";i:260;s:21:"PhpParser\NodeVisitor";i:261;s:36:"PHPStan\Parser\AnonymousClassVisitor";i:262;s:36:"PHPStan\Parser\ArrayFilterArgVisitor";i:263;s:34:"PHPStan\Parser\ArrayFindArgVisitor";i:264;s:33:"PHPStan\Parser\ArrayMapArgVisitor";i:265;s:34:"PHPStan\Parser\ArrayWalkArgVisitor";i:266;s:32:"PHPStan\Parser\ClosureArgVisitor";i:267;s:38:"PHPStan\Parser\ClosureBindToVarVisitor";i:268;s:36:"PHPStan\Parser\ClosureBindArgVisitor";i:269;s:35:"PHPStan\Parser\CurlSetOptArgVisitor";i:270;s:38:"PHPStan\Parser\ArrowFunctionArgVisitor";i:271;s:47:"PHPStan\Parser\MagicConstantParamDefaultVisitor";i:272;s:43:"PHPStan\Parser\NewAssignedToPropertyVisitor";i:273;s:37:"PHPStan\Parser\ParentStmtTypesVisitor";i:274;s:41:"PHPStan\Parser\StandaloneThrowExprVisitor";i:275;s:34:"PHPStan\Parser\TryCatchTypeVisitor";i:276;s:35:"PHPStan\Parser\LastConditionVisitor";i:277;s:45:"PHPStan\Parser\TypeTraverserInstanceofVisitor";i:278;s:37:"PHPStan\Parser\VariadicMethodsVisitor";i:279;s:39:"PHPStan\Parser\VariadicFunctionsVisitor";i:280;s:32:"PHPStan\Node\Printer\ExprPrinter";i:281;s:28:"PHPStan\Node\Printer\Printer";i:282;s:32:"PhpParser\PrettyPrinter\Standard";i:283;s:31:"PhpParser\PrettyPrinterAbstract";i:284;s:23:"PhpParser\PrettyPrinter";i:285;s:39:"PHPStan\Broker\AnonymousClassNameHelper";i:286;s:36:"PHPStan\Php\PhpVersionFactoryFactory";i:287;s:37:"PHPStan\Php\ComposerPhpVersionFactory";i:288;s:33:"PHPStan\PhpDocParser\ParserConfig";i:289;s:32:"PHPStan\PhpDocParser\Lexer\Lexer";i:290;s:38:"PHPStan\PhpDocParser\Parser\TypeParser";i:291;s:43:"PHPStan\PhpDocParser\Parser\ConstExprParser";i:292;s:40:"PHPStan\PhpDocParser\Parser\PhpDocParser";i:293;s:36:"PHPStan\PhpDocParser\Printer\Printer";i:294;s:40:"PHPStan\PhpDoc\PhpDocInheritanceResolver";i:295;s:33:"PHPStan\PhpDoc\PhpDocNodeResolver";i:296;s:35:"PHPStan\PhpDoc\PhpDocStringResolver";i:297;s:36:"PHPStan\PhpDoc\ConstExprNodeResolver";i:298;s:31:"PHPStan\PhpDoc\TypeNodeResolver";i:299;s:33:"PHPStan\PhpDoc\TypeStringResolver";i:300;s:28:"PHPStan\PhpDoc\StubValidator";i:301;s:45:"PHPStan\PhpDoc\SocketSelectStubFilesExtension";i:302;s:33:"PHPStan\PhpDoc\StubFilesExtension";i:303;s:39:"PHPStan\PhpDoc\DefaultStubFilesProvider";i:304;s:32:"PHPStan\PhpDoc\StubFilesProvider";i:305;s:45:"PHPStan\PhpDoc\JsonValidateStubFilesExtension";i:306;s:48:"PHPStan\PhpDoc\ReflectionClassStubFilesExtension";i:307;s:47:"PHPStan\PhpDoc\ReflectionEnumStubFilesExtension";i:308;s:25:"PHPStan\Analyser\Analyser";i:309;s:40:"PHPStan\Analyser\AnalyserResultFinalizer";i:310;s:29:"PHPStan\Analyser\FileAnalyser";i:311;s:38:"PHPStan\Analyser\LocalIgnoresProcessor";i:312;s:37:"PHPStan\Analyser\RuleErrorTransformer";i:313;s:42:"PHPStan\Analyser\Ignore\IgnoredErrorHelper";i:314;s:35:"PHPStan\Analyser\Ignore\IgnoreLexer";i:315;s:41:"PHPStan\Analyser\LazyInternalScopeFactory";i:316;s:37:"PHPStan\Analyser\InternalScopeFactory";i:317;s:29:"PHPStan\Analyser\ScopeFactory";i:318;s:34:"PHPStan\Analyser\NodeScopeResolver";i:319;s:40:"PHPStan\Analyser\ConstantResolverFactory";i:320;s:47:"PHPStan\Analyser\ResultCache\ResultCacheClearer";i:321;s:41:"PHPStan\Analyser\RicherScopeGetTypeHelper";i:322;s:19:"PHPStan\Cache\Cache";i:323;s:34:"PHPStan\Collectors\RegistryFactory";i:324;s:34:"PHPStan\Command\AnalyseApplication";i:325;s:30:"PHPStan\Command\AnalyserRunner";i:326;s:32:"PHPStan\Command\FixerApplication";i:327;s:37:"PHPStan\Dependency\DependencyResolver";i:328;s:38:"PHPStan\Dependency\ExportedNodeFetcher";i:329;s:39:"PHPStan\Dependency\ExportedNodeResolver";i:330;s:38:"PHPStan\Dependency\ExportedNodeVisitor";i:331;s:48:"PHPStan\DependencyInjection\Nette\NetteContainer";i:332;s:37:"PHPStan\DependencyInjection\Container";i:333;s:54:"PHPStan\DependencyInjection\DerivativeContainerFactory";i:334;s:23:"PHPStan\File\FileHelper";i:335;s:32:"PHPStan\File\FileExcluderFactory";i:336;s:23:"PHPStan\File\FileFinder";i:337;s:24:"PHPStan\File\FileMonitor";i:338;s:37:"PHPStan\Parser\DeclarePositionVisitor";i:339;s:47:"PHPStan\Parser\ImmediatelyInvokedClosureVisitor";i:340;s:33:"PHPStan\Parallel\ParallelAnalyser";i:341;s:26:"PHPStan\Parallel\Scheduler";i:342;s:34:"PHPStan\Diagnose\DiagnoseExtension";i:343;s:30:"PHPStan\Process\CpuCoreCounter";i:344;s:45:"PHPStan\Reflection\AttributeReflectionFactory";i:345;s:46:"PHPStan\Reflection\InitializerExprTypeResolver";i:346;s:73:"PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension";i:347;s:50:"PHPStan\Reflection\MethodsClassReflectionExtension";i:348;s:76:"PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension";i:349;s:53:"PHPStan\Reflection\PropertiesClassReflectionExtension";i:350;s:64:"PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor";i:351;s:66:"PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher";i:352;s:96:"PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker";i:353;s:88:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory";i:354;s:91:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository";i:355;s:92:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository";i:356;s:92:"PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumCaseDynamicReturnTypeExtension";i:357;s:45:"PHPStan\Type\DynamicMethodReturnTypeExtension";i:358;s:88:"PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumDynamicReturnTypeExtension";i:359;s:37:"PHPStan\Reflection\ConstructorsHelper";i:360;s:81:"PHPStan\Reflection\RequireExtension\RequireExtendsMethodsClassReflectionExtension";i:361;s:84:"PHPStan\Reflection\RequireExtension\RequireExtendsPropertiesClassReflectionExtension";i:362;s:61:"PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension";i:363;s:64:"PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension";i:364;s:50:"PHPStan\Reflection\Php\PhpClassReflectionExtension";i:365;s:69:"PHPStan\Reflection\Php\Soap\SoapClientMethodsClassReflectionExtension";i:366;s:66:"PHPStan\Reflection\Php\EnumAllowedSubTypesClassReflectionExtension";i:367;s:58:"PHPStan\Reflection\AllowedSubTypesClassReflectionExtension";i:368;s:68:"PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension";i:369;s:79:"PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension";i:370;s:64:"PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider";i:371;s:50:"PHPStan\Reflection\SignatureMap\SignatureMapParser";i:372;s:60:"PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider";i:373;s:52:"PHPStan\Reflection\SignatureMap\SignatureMapProvider";i:374;s:56:"PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider";i:375;s:59:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory";i:376;s:31:"PHPStan\Rules\Api\ApiRuleHelper";i:377;s:29:"PHPStan\Rules\AttributesCheck";i:378;s:58:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck";i:379;s:28:"PHPStan\Rules\ClassNameCheck";i:380;s:39:"PHPStan\Rules\ClassCaseSensitivityCheck";i:381;s:37:"PHPStan\Rules\ClassForbiddenNameCheck";i:382;s:43:"PHPStan\Rules\Classes\LocalTypeAliasesCheck";i:383;s:36:"PHPStan\Rules\Classes\MethodTagCheck";i:384;s:32:"PHPStan\Rules\Classes\MixinCheck";i:385;s:38:"PHPStan\Rules\Classes\PropertyTagCheck";i:386;s:52:"PHPStan\Rules\Comparison\ConstantConditionRuleHelper";i:387;s:50:"PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper";i:388;s:53:"PHPStan\Rules\Exceptions\DefaultExceptionTypeResolver";i:389;s:46:"PHPStan\Rules\Exceptions\ExceptionTypeResolver";i:390;s:68:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule";i:391;s:66:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule";i:392;s:72:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInPropertyHookThrowsRule";i:393;s:61:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck";i:394;s:46:"PHPStan\Rules\Exceptions\TooWideThrowTypeCheck";i:395;s:41:"PHPStan\Rules\FunctionCallParametersCheck";i:396;s:37:"PHPStan\Rules\FunctionDefinitionCheck";i:397;s:37:"PHPStan\Rules\FunctionReturnTypeCheck";i:398;s:44:"PHPStan\Rules\ParameterCastableToStringCheck";i:399;s:49:"PHPStan\Rules\Generics\CrossCheckInterfacesHelper";i:400;s:44:"PHPStan\Rules\Generics\GenericAncestorsCheck";i:401;s:45:"PHPStan\Rules\Generics\GenericObjectTypeCheck";i:402;s:49:"PHPStan\Rules\Generics\MethodTagTemplateTypeCheck";i:403;s:40:"PHPStan\Rules\Generics\TemplateTypeCheck";i:404;s:36:"PHPStan\Rules\Generics\VarianceCheck";i:405;s:24:"PHPStan\Rules\IssetCheck";i:406;s:37:"PHPStan\Rules\Methods\MethodCallCheck";i:407;s:43:"PHPStan\Rules\Methods\StaticMethodCallCheck";i:408;s:41:"PHPStan\Rules\Methods\MethodSignatureRule";i:409;s:53:"PHPStan\Rules\Methods\MethodParameterComparisonHelper";i:410;s:54:"PHPStan\Rules\Methods\MethodVisibilityComparisonHelper";i:411;s:34:"PHPStan\Rules\MissingTypehintCheck";i:412;s:27:"PHPStan\Rules\NullsafeCheck";i:413;s:69:"PHPStan\Rules\Constants\LazyAlwaysUsedClassConstantsExtensionProvider";i:414;s:65:"PHPStan\Rules\Constants\AlwaysUsedClassConstantsExtensionProvider";i:415;s:59:"PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider";i:416;s:55:"PHPStan\Rules\Methods\AlwaysUsedMethodExtensionProvider";i:417;s:52:"PHPStan\Rules\PhpDoc\ConditionalReturnTypeRuleHelper";i:418;s:37:"PHPStan\Rules\PhpDoc\AssertRuleHelper";i:419;s:43:"PHPStan\Rules\PhpDoc\UnresolvableTypeHelper";i:420;s:46:"PHPStan\Rules\PhpDoc\GenericCallableRuleHelper";i:421;s:48:"PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck";i:422;s:41:"PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper";i:423;s:40:"PHPStan\Rules\Playground\NeverRuleHelper";i:424;s:46:"PHPStan\Rules\Properties\AccessPropertiesCheck";i:425;s:50:"PHPStan\Rules\Properties\UninitializedPropertyRule";i:426;s:65:"PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider";i:427;s:61:"PHPStan\Rules\Properties\ReadWritePropertiesExtensionProvider";i:428;s:43:"PHPStan\Rules\Properties\PropertyDescriptor";i:429;s:49:"PHPStan\Rules\Properties\PropertyReflectionFinder";i:430;s:38:"PHPStan\Rules\Pure\FunctionPurityCheck";i:431;s:29:"PHPStan\Rules\RuleLevelHelper";i:432;s:43:"PHPStan\Rules\UnusedFunctionParametersCheck";i:433;s:59:"PHPStan\Rules\TooWideTypehints\TooWideParameterOutTypeCheck";i:434;s:27:"PHPStan\Type\FileTypeMapper";i:435;s:30:"PHPStan\Type\BitwiseFlagHelper";i:436;s:54:"PHPStan\Type\Php\AbsFunctionDynamicReturnTypeExtension";i:437;s:47:"PHPStan\Type\DynamicFunctionReturnTypeExtension";i:438;s:57:"PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension";i:439;s:62:"PHPStan\Type\Php\ArrayChangeKeyCaseFunctionReturnTypeExtension";i:440;s:61:"PHPStan\Type\Php\ArrayIntersectKeyFunctionReturnTypeExtension";i:441;s:54:"PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension";i:442;s:55:"PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension";i:443;s:56:"PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension";i:444;s:55:"PHPStan\Type\Php\ArrayCurrentDynamicReturnTypeExtension";i:445;s:53:"PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension";i:446;s:57:"PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension";i:447;s:52:"PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper";i:448;s:55:"PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension";i:449;s:53:"PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension";i:450;s:53:"PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension";i:451;s:56:"PHPStan\Type\Php\ArrayFindKeyFunctionReturnTypeExtension";i:452;s:51:"PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension";i:453;s:62:"PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension";i:454;s:44:"PHPStan\Type\FunctionTypeSpecifyingExtension";i:455;s:44:"PHPStan\Analyser\TypeSpecifierAwareExtension";i:456;s:56:"PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension";i:457;s:55:"PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension";i:458;s:60:"PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension";i:459;s:52:"PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension";i:460;s:61:"PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension";i:461;s:52:"PHPStan\Type\Php\ArrayNextDynamicReturnTypeExtension";i:462;s:52:"PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension";i:463;s:53:"PHPStan\Type\Php\ArrayRandFunctionReturnTypeExtension";i:464;s:55:"PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension";i:465;s:56:"PHPStan\Type\Php\ArrayReplaceFunctionReturnTypeExtension";i:466;s:56:"PHPStan\Type\Php\ArrayReverseFunctionReturnTypeExtension";i:467;s:54:"PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension";i:468;s:54:"PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension";i:469;s:55:"PHPStan\Type\Php\ArraySpliceFunctionReturnTypeExtension";i:470;s:62:"PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension";i:471;s:59:"PHPStan\Type\Php\ArraySearchFunctionTypeSpecifyingExtension";i:472;s:62:"PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension";i:473;s:59:"PHPStan\Type\Php\ArraySumFunctionDynamicReturnTypeExtension";i:474;s:41:"PHPStan\Type\Php\AssertThrowTypeExtension";i:475;s:46:"PHPStan\Type\DynamicFunctionThrowTypeExtension";i:476;s:63:"PHPStan\Type\Php\BackedEnumFromMethodDynamicReturnTypeExtension";i:477;s:51:"PHPStan\Type\DynamicStaticMethodReturnTypeExtension";i:478;s:63:"PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension";i:479;s:54:"PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension";i:480;s:54:"PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension";i:481;s:56:"PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension";i:482;s:62:"PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension";i:483;s:51:"PHPStan\Type\Php\CompactFunctionReturnTypeExtension";i:484;s:52:"PHPStan\Type\Php\ConstantFunctionReturnTypeExtension";i:485;s:31:"PHPStan\Type\Php\ConstantHelper";i:486;s:49:"PHPStan\Type\Php\CountFunctionReturnTypeExtension";i:487;s:61:"PHPStan\Type\Php\CountCharsFunctionDynamicReturnTypeExtension";i:488;s:53:"PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension";i:489;s:62:"PHPStan\Type\Php\CurlGetinfoFunctionDynamicReturnTypeExtension";i:490;s:45:"PHPStan\Type\Php\DateFunctionReturnTypeHelper";i:491;s:54:"PHPStan\Type\Php\DateFormatFunctionReturnTypeExtension";i:492;s:52:"PHPStan\Type\Php\DateFormatMethodReturnTypeExtension";i:493;s:48:"PHPStan\Type\Php\DateFunctionReturnTypeExtension";i:494;s:58:"PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension";i:495;s:50:"PHPStan\Type\DynamicStaticMethodThrowTypeExtension";i:496;s:55:"PHPStan\Type\Php\DateIntervalDynamicReturnTypeExtension";i:497;s:57:"PHPStan\Type\Php\DateTimeCreateDynamicReturnTypeExtension";i:498;s:51:"PHPStan\Type\Php\DateTimeDynamicReturnTypeExtension";i:499;s:50:"PHPStan\Type\Php\DateTimeModifyReturnTypeExtension";i:500;s:54:"PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension";i:501;s:55:"PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension";i:502;s:44:"PHPStan\Type\DynamicMethodThrowTypeExtension";i:503;s:52:"PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension";i:504;s:58:"PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension";i:505;s:48:"PHPStan\Type\Php\DsMapDynamicReturnTypeExtension";i:506;s:53:"PHPStan\Type\Php\DsMapDynamicMethodThrowTypeExtension";i:507;s:58:"PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension";i:508;s:58:"PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension";i:509;s:47:"PHPStan\Type\Php\FilterFunctionReturnTypeHelper";i:510;s:54:"PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension";i:511;s:52:"PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension";i:512;s:57:"PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension";i:513;s:57:"PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension";i:514;s:51:"PHPStan\Type\Php\GetClassDynamicReturnTypeExtension";i:515;s:56:"PHPStan\Type\Php\GetDebugTypeFunctionReturnTypeExtension";i:516;s:58:"PHPStan\Type\Php\GetDefinedVarsFunctionReturnTypeExtension";i:517;s:65:"PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension";i:518;s:51:"PHPStan\Type\Php\GettypeFunctionReturnTypeExtension";i:519;s:63:"PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension";i:520;s:49:"PHPStan\Type\Php\HashFunctionsReturnTypeExtension";i:521;s:58:"PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension";i:522;s:41:"PHPStan\Type\Php\IntdivThrowTypeExtension";i:523;s:42:"PHPStan\Type\Php\IniGetReturnTypeExtension";i:524;s:39:"PHPStan\Type\Php\JsonThrowTypeExtension";i:525;s:56:"PHPStan\Type\Php\OpenSslEncryptParameterOutTypeExtension";i:526;s:46:"PHPStan\Type\FunctionParameterOutTypeExtension";i:527;s:50:"PHPStan\Type\Php\ParseStrParameterOutTypeExtension";i:528;s:49:"PHPStan\Type\Php\PregMatchTypeSpecifyingExtension";i:529;s:51:"PHPStan\Type\Php\PregMatchParameterOutTypeExtension";i:530;s:56:"PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension";i:531;s:50:"PHPStan\Type\FunctionParameterClosureTypeExtension";i:532;s:39:"PHPStan\Type\Php\RegexArrayShapeMatcher";i:533;s:35:"PHPStan\Type\Regex\RegexGroupParser";i:534;s:40:"PHPStan\Type\Regex\RegexExpressionHelper";i:535;s:61:"PHPStan\Type\Php\ReflectionClassConstructorThrowTypeExtension";i:536;s:64:"PHPStan\Type\Php\ReflectionFunctionConstructorThrowTypeExtension";i:537;s:62:"PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension";i:538;s:64:"PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension";i:539;s:53:"PHPStan\Type\Php\StrContainingTypeSpecifyingExtension";i:540;s:65:"PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension";i:541;s:62:"PHPStan\Type\Php\SimpleXMLElementConstructorThrowTypeExtension";i:542;s:47:"PHPStan\Type\Php\StatDynamicReturnTypeExtension";i:543;s:52:"PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension";i:544;s:54:"PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension";i:545;s:50:"PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension";i:546;s:63:"PHPStan\Type\Php\NumberFormatFunctionDynamicReturnTypeExtension";i:547;s:59:"PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension";i:548;s:54:"PHPStan\Type\Php\PregFilterFunctionReturnTypeExtension";i:549;s:52:"PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension";i:550;s:67:"PHPStan\Type\Php\ReflectionClassIsSubclassOfTypeSpecifyingExtension";i:551;s:42:"PHPStan\Type\MethodTypeSpecifyingExtension";i:552;s:59:"PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension";i:553;s:64:"PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension";i:554;s:49:"PHPStan\Type\Php\LtrimFunctionReturnTypeExtension";i:555;s:47:"PHPStan\Type\Php\MbFunctionsReturnTypeExtension";i:556;s:52:"PHPStan\Type\Php\MbFunctionsReturnTypeExtensionTrait";i:557;s:61:"PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension";i:558;s:64:"PHPStan\Type\Php\MbSubstituteCharacterDynamicReturnTypeExtension";i:559;s:52:"PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension";i:560;s:53:"PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension";i:561;s:50:"PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension";i:562;s:51:"PHPStan\Type\Php\ImplodeFunctionReturnTypeExtension";i:563;s:59:"PHPStan\Type\Php\NonEmptyStringFunctionsReturnTypeExtension";i:564;s:55:"PHPStan\Type\Php\SetTypeFunctionTypeSpecifyingExtension";i:565;s:52:"PHPStan\Type\Php\StrCaseFunctionsReturnTypeExtension";i:566;s:50:"PHPStan\Type\Php\StrlenFunctionReturnTypeExtension";i:567;s:65:"PHPStan\Type\Php\StrIncrementDecrementFunctionReturnTypeExtension";i:568;s:50:"PHPStan\Type\Php\StrPadFunctionReturnTypeExtension";i:569;s:53:"PHPStan\Type\Php\StrRepeatFunctionReturnTypeExtension";i:570;s:49:"PHPStan\Type\Php\SubstrDynamicReturnTypeExtension";i:571;s:45:"PHPStan\Type\Php\ThrowableReturnTypeExtension";i:572;s:59:"PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension";i:573;s:55:"PHPStan\Type\Php\TriggerErrorDynamicReturnTypeExtension";i:574;s:55:"PHPStan\Type\Php\TrimFunctionDynamicReturnTypeExtension";i:575;s:65:"PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension";i:576;s:47:"PHPStan\Type\Php\PowFunctionReturnTypeExtension";i:577;s:49:"PHPStan\Type\Php\RoundFunctionReturnTypeExtension";i:578;s:53:"PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension";i:579;s:53:"PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension";i:580;s:49:"PHPStan\Type\Php\RangeFunctionReturnTypeExtension";i:581;s:54:"PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension";i:582;s:59:"PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension";i:583;s:59:"PHPStan\Type\Php\ClassImplementsFunctionReturnTypeExtension";i:584;s:54:"PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension";i:585;s:55:"PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension";i:586;s:62:"PHPStan\Type\Php\FunctionExistsFunctionTypeSpecifyingExtension";i:587;s:55:"PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension";i:588;s:55:"PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension";i:589;s:58:"PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension";i:590;s:58:"PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension";i:591;s:60:"PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension";i:592;s:59:"PHPStan\Type\Php\IteratorToArrayFunctionReturnTypeExtension";i:593;s:51:"PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension";i:594;s:48:"PHPStan\Type\Php\IsAFunctionTypeSpecifyingHelper";i:595;s:58:"PHPStan\Type\Php\CtypeDigitFunctionTypeSpecifyingExtension";i:596;s:59:"PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension";i:597;s:66:"PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension";i:598;s:63:"PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension";i:599;s:63:"PHPStan\Type\Php\SimpleXMLElementXpathMethodReturnTypeExtension";i:600;s:52:"PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension";i:601;s:50:"PHPStan\Type\Php\StrTokFunctionReturnTypeExtension";i:602;s:58:"PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension";i:603;s:57:"PHPStan\Type\Php\SscanfFunctionDynamicReturnTypeExtension";i:604;s:56:"PHPStan\Type\Php\StrvalFamilyFunctionReturnTypeExtension";i:605;s:63:"PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension";i:606;s:49:"PHPStan\Type\Php\XMLReaderOpenReturnTypeExtension";i:607;s:65:"PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension";i:608;s:57:"PHPStan\Type\Php\DatePeriodConstructorReturnTypeExtension";i:609;s:31:"PHPStan\Type\ClosureTypeFactory";i:610;s:43:"PHPStan\Type\Constant\OversizedArrayBuilder";i:611;s:36:"PHPStan\Rules\Functions\PrintfHelper";i:612;s:37:"PHPStan\Analyser\TypeSpecifierFactory";i:613;s:46:"PHPStan\File\ParentDirectoryRelativePathHelper";i:614;s:31:"PHPStan\File\RelativePathHelper";i:615;s:30:"PHPStan\Cache\FileCacheStorage";i:616;s:26:"PHPStan\Cache\CacheStorage";i:617;s:25:"PHPStan\Parser\RichParser";i:618;s:21:"PHPStan\Parser\Parser";i:619;s:29:"PHPStan\Parser\CleaningParser";i:620;s:27:"PHPStan\Parser\SimpleParser";i:621;s:27:"PHPStan\Parser\CachedParser";i:622;s:33:"PHPStan\Parser\PhpParserDecorator";i:623;s:16:"PhpParser\Parser";i:624;s:31:"PHPStan\Parser\PhpParserFactory";i:625;s:24:"PhpParser\ParserAbstract";i:626;s:26:"PHPStan\Rules\LazyRegistry";i:627;s:22:"PHPStan\Rules\Registry";i:628;s:33:"PHPStan\PhpDoc\StubPhpDocProvider";i:629;s:63:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory";i:630;s:37:"PHPStan\Reflection\ReflectionProvider";i:631;s:51:"PHPStan\BetterReflection\Reflector\DefaultReflector";i:632;s:44:"PHPStan\BetterReflection\Reflector\Reflector";i:633;s:64:"PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector";i:634;s:60:"PHPStan\Reflection\BetterReflection\BetterReflectionProvider";i:635;s:72:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory";i:636;s:83:"PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory";i:637;s:79:"PHPStan\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber";i:638;s:66:"PHPStan\BetterReflection\SourceLocator\SourceStubber\SourceStubber";i:639;s:76:"PHPStan\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber";i:640;s:80:"PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory";i:641;s:21:"PhpParser\Parser\Php8";i:642;s:32:"PHPStan\Parser\PathRoutingParser";i:643;s:25:"PHPStan\Parser\StubParser";i:644;s:41:"PHPStan\Diagnose\PHPStanDiagnoseExtension";i:645;s:55:"PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter";i:646;s:45:"PHPStan\Command\ErrorFormatter\ErrorFormatter";i:647;s:48:"PHPStan\Command\ErrorFormatter\RawErrorFormatter";i:648;s:50:"PHPStan\Command\ErrorFormatter\TableErrorFormatter";i:649;s:55:"PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter";i:650;s:49:"PHPStan\Command\ErrorFormatter\JsonErrorFormatter";i:651;s:50:"PHPStan\Command\ErrorFormatter\JunitErrorFormatter";i:652;s:51:"PHPStan\Command\ErrorFormatter\GitlabErrorFormatter";i:653;s:51:"PHPStan\Command\ErrorFormatter\GithubErrorFormatter";i:654;s:53:"PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter";i:655;s:53:"PHPStan\Rules\Classes\ExistingClassInClassExtendsRule";i:656;s:51:"PHPStan\Rules\Classes\ExistingClassInInstanceOfRule";i:657;s:53:"PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule";i:658;s:53:"PHPStan\Rules\Functions\CallToNonExistentFunctionRule";i:659;s:46:"PHPStan\Rules\Constants\OverridingConstantRule";i:660;s:42:"PHPStan\Rules\Methods\OverridingMethodRule";i:661;s:39:"PHPStan\Rules\Missing\MissingReturnRule";i:662;s:52:"PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule";i:663;s:47:"PHPStan\Rules\Namespaces\ExistingNamesInUseRule";i:664;s:45:"PHPStan\Rules\Properties\AccessPropertiesRule";i:665;s:51:"PHPStan\Rules\Properties\AccessStaticPropertiesRule";i:666;s:56:"PHPStan\Rules\Properties\ExistingClassesInPropertiesRule";i:667;s:44:"PHPStan\Rules\Functions\FunctionCallableRule";i:668;s:47:"PHPStan\Rules\Properties\OverridingPropertyRule";i:669;s:53:"PHPStan\Rules\Properties\SetPropertyHookParameterRule";i:670;s:56:"PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule";i:671;s:55:"PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule";i:672;s:44:"PHPStan\Rules\Variables\CompactVariablesRule";i:673;s:43:"PHPStan\Rules\Variables\DefinedVariableRule";i:674;s:44:"PHPStan\Rules\Keywords\RequireFileExistsRule";i:675;s:31:"PHPStan\Rules\Classes\MixinRule";i:676;s:40:"PHPStan\Rules\PhpDoc\RequireExtendsCheck";i:677;s:57:"PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule";i:678;s:41:"PHPStan\Rules\Functions\CallCallablesRule";i:679;s:46:"PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule";i:680;s:48:"PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule";i:681;s:45:"PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule";i:682;s:50:"PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule";i:683;s:46:"PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule";i:684;s:57:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule";i:685;s:69:"PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule";i:686;s:67:"PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule";i:687;s:73:"PHPStan\Rules\Exceptions\ThrowsVoidPropertyHookWithExplicitThrowPointRule";i:688;s:42:"PHPStan\Rules\Generators\YieldFromTypeRule";i:689;s:45:"PHPStan\Rules\Generators\YieldInGeneratorRule";i:690;s:46:"PHPStan\Rules\Classes\ImpossibleInstanceOfRule";i:691;s:56:"PHPStan\Rules\Comparison\BooleanAndConstantConditionRule";i:692;s:55:"PHPStan\Rules\Comparison\BooleanOrConstantConditionRule";i:693;s:56:"PHPStan\Rules\Comparison\BooleanNotConstantConditionRule";i:694;s:62:"PHPStan\Rules\DeadCode\ConstructorWithoutImpurePointsCollector";i:695;s:28:"PHPStan\Collectors\Collector";i:696;s:47:"PHPStan\Rules\DeadCode\PossiblyPureNewCollector";i:697;s:59:"PHPStan\Rules\DeadCode\FunctionWithoutImpurePointsCollector";i:698;s:52:"PHPStan\Rules\DeadCode\PossiblyPureFuncCallCollector";i:699;s:57:"PHPStan\Rules\DeadCode\MethodWithoutImpurePointsCollector";i:700;s:54:"PHPStan\Rules\DeadCode\PossiblyPureMethodCallCollector";i:701;s:54:"PHPStan\Rules\DeadCode\PossiblyPureStaticCallCollector";i:702;s:48:"PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule";i:703;s:57:"PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule";i:704;s:52:"PHPStan\Rules\Comparison\ElseIfConstantConditionRule";i:705;s:48:"PHPStan\Rules\Comparison\IfConstantConditionRule";i:706;s:60:"PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule";i:707;s:58:"PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule";i:708;s:64:"PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule";i:709;s:56:"PHPStan\Rules\Comparison\LogicalXorConstantConditionRule";i:710;s:44:"PHPStan\Rules\Comparison\MatchExpressionRule";i:711;s:71:"PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule";i:712;s:61:"PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule";i:713;s:52:"PHPStan\Rules\Comparison\ConstantLooseComparisonRule";i:714;s:61:"PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule";i:715;s:58:"PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule";i:716;s:57:"PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule";i:717;s:53:"PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule";i:718;s:51:"PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule";i:719;s:57:"PHPStan\Rules\Exceptions\TooWidePropertyHookThrowTypeRule";i:720;s:62:"PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule";i:721;s:50:"PHPStan\Rules\Properties\NullsafePropertyFetchRule";i:722;s:46:"PHPStan\Rules\Traits\TraitDeclarationCollector";i:723;s:38:"PHPStan\Rules\Traits\TraitUseCollector";i:724;s:55:"PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule";i:725;s:47:"PHPStan\Rules\Functions\RandomIntParametersRule";i:726;s:39:"PHPStan\Rules\Functions\ArrayFilterRule";i:727;s:39:"PHPStan\Rules\Functions\ArrayValuesRule";i:728;s:53:"PHPStan\Rules\Functions\ParameterCastableToNumberRule";i:729;s:56:"Larastan\Larastan\Methods\RelationForwardsCallsExtension";i:730;s:53:"Larastan\Larastan\Methods\ModelForwardsCallsExtension";i:731;s:63:"Larastan\Larastan\Methods\EloquentBuilderForwardsCallsExtension";i:732;s:54:"Larastan\Larastan\Methods\HigherOrderTapProxyExtension";i:733;s:61:"Larastan\Larastan\Methods\HigherOrderCollectionProxyExtension";i:734;s:64:"Larastan\Larastan\Methods\StorageMethodsClassReflectionExtension";i:735;s:35:"Larastan\Larastan\Methods\Extension";i:736;s:69:"Larastan\Larastan\Methods\ModelFactoryMethodsClassReflectionExtension";i:737;s:73:"Larastan\Larastan\Methods\RedirectResponseMethodsClassReflectionExtension";i:738;s:62:"Larastan\Larastan\Methods\MacroMethodsClassReflectionExtension";i:739;s:39:"Larastan\Larastan\Concerns\HasContainer";i:740;s:65:"Larastan\Larastan\Methods\ViewWithMethodsClassReflectionExtension";i:741;s:51:"Larastan\Larastan\Properties\ModelAccessorExtension";i:742;s:51:"Larastan\Larastan\Properties\ModelPropertyExtension";i:743;s:72:"Larastan\Larastan\Properties\HigherOrderCollectionProxyPropertyExtension";i:744;s:58:"Larastan\Larastan\ReturnTypes\HigherOrderTapProxyExtension";i:745;s:82:"Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension";i:746;s:52:"Larastan\Larastan\Properties\ModelRelationsExtension";i:747;s:71:"Larastan\Larastan\ReturnTypes\ModelOnlyDynamicMethodReturnTypeExtension";i:748;s:80:"Larastan\Larastan\ReturnTypes\ModelFactoryDynamicStaticMethodReturnTypeExtension";i:749;s:73:"Larastan\Larastan\ReturnTypes\ModelDynamicStaticMethodReturnTypeExtension";i:750;s:63:"Larastan\Larastan\ReturnTypes\AppMakeDynamicReturnTypeExtension";i:751;s:43:"Larastan\Larastan\ReturnTypes\AuthExtension";i:752;s:41:"Larastan\Larastan\Concerns\LoadsAuthModel";i:753;s:73:"Larastan\Larastan\ReturnTypes\GuardDynamicStaticMethodReturnTypeExtension";i:754;s:50:"Larastan\Larastan\ReturnTypes\AuthManagerExtension";i:755;s:43:"Larastan\Larastan\ReturnTypes\DateExtension";i:756;s:44:"Larastan\Larastan\ReturnTypes\GuardExtension";i:757;s:50:"Larastan\Larastan\ReturnTypes\RequestFileExtension";i:758;s:51:"Larastan\Larastan\ReturnTypes\RequestRouteExtension";i:759;s:50:"Larastan\Larastan\ReturnTypes\RequestUserExtension";i:760;s:54:"Larastan\Larastan\ReturnTypes\EloquentBuilderExtension";i:761;s:51:"Larastan\Larastan\ReturnTypes\RelationFindExtension";i:762;s:57:"Larastan\Larastan\ReturnTypes\RelationCollectionExtension";i:763;s:48:"Larastan\Larastan\ReturnTypes\ModelFindExtension";i:764;s:55:"Larastan\Larastan\ReturnTypes\BuilderModelFindExtension";i:765;s:47:"Larastan\Larastan\ReturnTypes\TestCaseExtension";i:766;s:42:"Larastan\Larastan\Support\CollectionHelper";i:767;s:51:"Larastan\Larastan\ReturnTypes\Helpers\AuthExtension";i:768;s:54:"Larastan\Larastan\ReturnTypes\Helpers\CollectExtension";i:769;s:58:"Larastan\Larastan\ReturnTypes\Helpers\NowAndTodayExtension";i:770;s:55:"Larastan\Larastan\ReturnTypes\Helpers\ResponseExtension";i:771;s:56:"Larastan\Larastan\ReturnTypes\Helpers\ValidatorExtension";i:772;s:54:"Larastan\Larastan\ReturnTypes\Helpers\LiteralExtension";i:773;s:78:"Larastan\Larastan\ReturnTypes\CollectionFilterRejectDynamicReturnTypeExtension";i:774;s:78:"Larastan\Larastan\ReturnTypes\CollectionWhereNotNullDynamicReturnTypeExtension";i:775;s:75:"Larastan\Larastan\ReturnTypes\NewModelQueryDynamicMethodReturnTypeExtension";i:776;s:69:"Larastan\Larastan\ReturnTypes\FactoryDynamicMethodReturnTypeExtension";i:777;s:62:"Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension";i:778;s:50:"Larastan\Larastan\ReturnTypes\Helpers\AppExtension";i:779;s:52:"Larastan\Larastan\ReturnTypes\Helpers\ValueExtension";i:780;s:50:"Larastan\Larastan\ReturnTypes\Helpers\StrExtension";i:781;s:50:"Larastan\Larastan\ReturnTypes\Helpers\TapExtension";i:782;s:75:"Larastan\Larastan\ReturnTypes\StorageDynamicStaticMethodReturnTypeExtension";i:783;s:74:"Larastan\Larastan\Types\GenericEloquentCollectionTypeNodeResolverExtension";i:784;s:40:"PHPStan\PhpDoc\TypeNodeResolverExtension";i:785;s:59:"Larastan\Larastan\Types\ViewStringTypeNodeResolverExtension";i:786;s:47:"Larastan\Larastan\Rules\OctaneCompatibilityRule";i:787;s:53:"Larastan\Larastan\Rules\NoEnvCallsOutsideOfConfigRule";i:788;s:39:"Larastan\Larastan\Rules\NoModelMakeRule";i:789;s:55:"Larastan\Larastan\Rules\NoUnnecessaryCollectionCallRule";i:790;s:40:"Larastan\Larastan\Rules\ModelAppendsRule";i:791;s:71:"Larastan\Larastan\Types\GenericEloquentBuilderTypeNodeResolverExtension";i:792;s:63:"Larastan\Larastan\ReturnTypes\AppEnvironmentReturnTypeExtension";i:793;s:76:"Larastan\Larastan\Types\ModelProperty\ModelPropertyTypeNodeResolverExtension";i:794;s:44:"Larastan\Larastan\Properties\MigrationHelper";i:795;s:52:"Larastan\Larastan\Properties\SquashedMigrationHelper";i:796;s:44:"Larastan\Larastan\Properties\ModelCastHelper";i:797;s:48:"Larastan\Larastan\Properties\ModelPropertyHelper";i:798;s:39:"Larastan\Larastan\Rules\ModelRuleHelper";i:799;s:39:"Larastan\Larastan\Methods\BuilderHelper";i:800;s:45:"Larastan\Larastan\Rules\RelationExistenceRule";i:801;s:84:"Larastan\Larastan\Rules\CheckDispatchArgumentTypesCompatibleWithClassConstructorRule";i:802;s:72:"Larastan\Larastan\Properties\Schema\PhpMyAdminDataTypeToPhpTypeConverter";i:803;s:44:"Larastan\Larastan\LarastanStubFilesExtension";i:804;s:39:"Larastan\Larastan\Rules\UnusedViewsRule";i:805;s:54:"Larastan\Larastan\Collectors\UsedViewFunctionCollector";i:806;s:51:"Larastan\Larastan\Collectors\UsedEmailViewCollector";i:807;s:50:"Larastan\Larastan\Collectors\UsedViewMakeCollector";i:808;s:56:"Larastan\Larastan\Collectors\UsedViewFacadeMakeCollector";i:809;s:57:"Larastan\Larastan\Collectors\UsedRouteFacadeViewCollector";i:810;s:59:"Larastan\Larastan\Collectors\UsedViewInAnotherViewCollector";i:811;s:40:"Larastan\Larastan\Support\ViewFileHelper";i:812;s:71:"Larastan\Larastan\ReturnTypes\ApplicationMakeDynamicReturnTypeExtension";i:813;s:69:"Larastan\Larastan\ReturnTypes\ContainerMakeDynamicReturnTypeExtension";i:814;s:79:"Larastan\Larastan\ReturnTypes\ConsoleCommand\ArgumentDynamicReturnTypeExtension";i:815;s:82:"Larastan\Larastan\ReturnTypes\ConsoleCommand\HasArgumentDynamicReturnTypeExtension";i:816;s:77:"Larastan\Larastan\ReturnTypes\ConsoleCommand\OptionDynamicReturnTypeExtension";i:817;s:80:"Larastan\Larastan\ReturnTypes\ConsoleCommand\HasOptionDynamicReturnTypeExtension";i:818;s:62:"Larastan\Larastan\ReturnTypes\TranslatorGetReturnTypeExtension";i:819;s:60:"Larastan\Larastan\ReturnTypes\TransHelperReturnTypeExtension";i:820;s:71:"Larastan\Larastan\ReturnTypes\DoubleUnderscoreHelperReturnTypeExtension";i:821;s:43:"Larastan\Larastan\ReturnTypes\AppMakeHelper";i:822;s:53:"Larastan\Larastan\Internal\ConsoleApplicationResolver";i:823;s:51:"Larastan\Larastan\Internal\ConsoleApplicationHelper";i:824;s:58:"Larastan\Larastan\Support\HigherOrderCollectionProxyHelper";i:825;s:29:"Carbon\PHPStan\MacroExtension";i:826;s:48:"PHPStan\Rules\Deprecations\DeprecatedClassHelper";i:827;s:63:"PHPStan\DependencyInjection\LazyDeprecatedScopeResolverProvider";i:828;s:57:"PHPStan\Rules\Deprecations\DefaultDeprecatedScopeResolver";i:829;s:50:"PHPStan\Rules\Deprecations\DeprecatedScopeResolver";i:830;s:58:"PHPStan\Rules\Deprecations\CallWithDeprecatedIniOptionRule";i:831;s:58:"PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension";i:832;s:45:"PHPStan\PhpDoc\TypeNodeResolverAwareExtension";i:833;s:65:"PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension";i:834;s:63:"PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension";i:835;s:69:"PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension";i:836;s:48:"PHPStan\Type\StaticMethodTypeSpecifyingExtension";i:837;s:63:"PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension";i:838;s:58:"PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension";i:839;s:57:"PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension";i:840;s:34:"PHPStan\Rules\PHPUnit\CoversHelper";i:841;s:38:"PHPStan\Rules\PHPUnit\AnnotationHelper";i:842;s:47:"PHPStan\Rules\PHPUnit\DataProviderHelperFactory";i:843;s:49:"PHPStan\Rules\PHPUnit\DataProviderDeclarationRule";i:844;s:51:"PHPStan\Rules\PHPUnit\AssertEqualsIsDiscouragedRule";i:845;s:37:"_PHPStan_24e2736d6\Nette\DI\Container";i:846;s:36:"_PHPStan_24e2736d6\Nette\SmartObject";i:847;s:22:"PHPStan\Php\PhpVersion";i:848;s:29:"PHPStan\Php\PhpVersionFactory";i:849;s:56:"PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider";i:850;s:33:"PHPStan\Analyser\ConstantResolver";i:851;s:47:"PHPStan\Analyser\ResultCache\ResultCacheManager";i:852;s:54:"PHPStan\Analyser\ResultCache\ResultCacheManagerFactory";i:853;s:27:"PHPStan\Collectors\Registry";i:854;s:79:"PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider";i:855;s:75:"PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider";i:856;s:66:"PHPStan\DependencyInjection\Type\ParameterOutTypeExtensionProvider";i:857;s:80:"PHPStan\DependencyInjection\Type\ExpressionTypeResolverExtensionRegistryProvider";i:858;s:80:"PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider";i:859;s:66:"PHPStan\DependencyInjection\Type\DynamicThrowTypeExtensionProvider";i:860;s:70:"PHPStan\DependencyInjection\Type\ParameterClosureTypeExtensionProvider";i:861;s:25:"PHPStan\File\FileExcluder";i:862;s:35:"PHPStan\File\FileExcluderRawFactory";i:863;s:44:"PHPStan\Reflection\Php\PhpFunctionReflection";i:864;s:37:"PHPStan\Reflection\FunctionReflection";i:865;s:44:"PHPStan\Reflection\FunctionReflectionFactory";i:866;s:79:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator";i:867;s:57:"PHPStan\BetterReflection\SourceLocator\Type\SourceLocator";i:868;s:86:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory";i:869;s:82:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator";i:870;s:89:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory";i:871;s:42:"PHPStan\Reflection\Php\PhpMethodReflection";i:872;s:43:"PHPStan\Reflection\ExtendedMethodReflection";i:873;s:40:"PHPStan\Reflection\ClassMemberReflection";i:874;s:35:"PHPStan\Reflection\MethodReflection";i:875;s:49:"PHPStan\Reflection\Php\PhpMethodReflectionFactory";i:876;s:64:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider";i:877;s:30:"PHPStan\Type\TypeAliasResolver";i:878;s:38:"PHPStan\Type\TypeAliasResolverProvider";i:879;s:30:"PHPStan\Analyser\TypeSpecifier";i:880;s:15:"PhpParser\Lexer";i:881;s:67:"PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory";i:882;s:25:"PhpParser\Lexer\Emulative";i:883;s:48:"PHPStan\Rules\Deprecations\DeprecatedScopeHelper";i:884;s:40:"PHPStan\Rules\PHPUnit\DataProviderHelper";}i:4;a:562:{i:0;s:39:"PHPStan\Parser\PhpParserFactory::create";i:1;s:71:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory::create";i:2;s:91:"PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory::create";i:3;s:88:"PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory::create";i:4;s:47:"PHPStan\Rules\Debug\DebugScopeRule::__construct";i:5;s:51:"PHPStan\Rules\Debug\DumpPhpDocTypeRule::__construct";i:6;s:45:"PHPStan\Rules\Debug\DumpTypeRule::__construct";i:7;s:47:"PHPStan\Rules\Debug\FileAssertRule::__construct";i:8;s:48:"PHPStan\Rules\Api\ApiInstanceofRule::__construct";i:9;s:52:"PHPStan\Rules\Api\ApiInstanceofTypeRule::__construct";i:10;s:51:"PHPStan\Rules\Api\ApiInstantiationRule::__construct";i:11;s:53:"PHPStan\Rules\Api\ApiClassConstFetchRule::__construct";i:12;s:50:"PHPStan\Rules\Api\ApiClassExtendsRule::__construct";i:13;s:53:"PHPStan\Rules\Api\ApiClassImplementsRule::__construct";i:14;s:54:"PHPStan\Rules\Api\ApiInterfaceExtendsRule::__construct";i:15;s:48:"PHPStan\Rules\Api\ApiMethodCallRule::__construct";i:16;s:48:"PHPStan\Rules\Api\ApiStaticCallRule::__construct";i:17;s:46:"PHPStan\Rules\Api\ApiTraitUseRule::__construct";i:18;s:50:"PHPStan\Rules\Api\GetTemplateTypeRule::__construct";i:19;s:68:"PHPStan\Rules\Api\PhpStanNamespaceIn3rdPartyPackageRule::__construct";i:20;s:65:"PHPStan\Rules\Api\RuntimeReflectionInstantiationRule::__construct";i:21;s:60:"PHPStan\Rules\Api\RuntimeReflectionFunctionRule::__construct";i:22;s:66:"PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule::__construct";i:23;s:45:"PHPStan\Rules\Cast\UnsetCastRule::__construct";i:24;s:54:"PHPStan\Rules\Classes\ClassAttributesRule::__construct";i:25;s:62:"PHPStan\Rules\Classes\ClassConstantAttributesRule::__construct";i:26;s:52:"PHPStan\Rules\Classes\ClassConstantRule::__construct";i:27;s:71:"PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule::__construct";i:28;s:70:"PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule::__construct";i:29;s:72:"PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule::__construct";i:30;s:62:"PHPStan\Rules\Classes\ExistingClassInTraitUseRule::__construct";i:31;s:52:"PHPStan\Rules\Classes\InstantiationRule::__construct";i:32;s:64:"PHPStan\Rules\Classes\InvalidPromotedPropertiesRule::__construct";i:33;s:55:"PHPStan\Rules\Classes\LocalTypeAliasesRule::__construct";i:34;s:63:"PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule::__construct";i:35;s:60:"PHPStan\Rules\Classes\LocalTypeTraitAliasesRule::__construct";i:36;s:52:"PHPStan\Rules\Classes\ReadOnlyClassRule::__construct";i:37;s:66:"PHPStan\Rules\Constants\DynamicClassConstantFetchRule::__construct";i:38;s:54:"PHPStan\Rules\Constants\FinalConstantRule::__construct";i:39;s:65:"PHPStan\Rules\Constants\NativeTypedClassConstantRule::__construct";i:40;s:59:"PHPStan\Rules\EnumCases\EnumCaseAttributesRule::__construct";i:41;s:57:"PHPStan\Rules\Exceptions\ThrowExpressionRule::__construct";i:42;s:64:"PHPStan\Rules\Functions\ArrowFunctionAttributesRule::__construct";i:43;s:73:"PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule::__construct";i:44;s:58:"PHPStan\Rules\Functions\ClosureAttributesRule::__construct";i:45;s:57:"PHPStan\Rules\Functions\DefineParametersRule::__construct";i:46;s:80:"PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule::__construct";i:47;s:65:"PHPStan\Rules\Functions\CallToFunctionParametersRule::__construct";i:48;s:74:"PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule::__construct";i:49;s:67:"PHPStan\Rules\Functions\ExistingClassesInTypehintsRule::__construct";i:50;s:59:"PHPStan\Rules\Functions\FunctionAttributesRule::__construct";i:51;s:56:"PHPStan\Rules\Functions\ParamAttributesRule::__construct";i:52;s:62:"PHPStan\Rules\Functions\PrintfArrayParametersRule::__construct";i:53;s:57:"PHPStan\Rules\Functions\PrintfParametersRule::__construct";i:54;s:60:"PHPStan\Rules\Functions\ReturnNullsafeByRefRule::__construct";i:55;s:58:"PHPStan\Rules\Keywords\DeclareStrictTypesRule::__construct";i:56;s:50:"PHPStan\Rules\Methods\CallMethodsRule::__construct";i:57;s:56:"PHPStan\Rules\Methods\CallStaticMethodsRule::__construct";i:58;s:60:"PHPStan\Rules\Methods\ConsistentConstructorRule::__construct";i:59;s:65:"PHPStan\Rules\Methods\ExistingClassesInTypehintsRule::__construct";i:60;s:53:"PHPStan\Rules\Methods\MethodCallableRule::__construct";i:61;s:71:"PHPStan\Rules\Methods\MissingMagicSerializationMethodsRule::__construct";i:62;s:55:"PHPStan\Rules\Methods\MethodAttributesRule::__construct";i:63;s:59:"PHPStan\Rules\Methods\StaticMethodCallableRule::__construct";i:64;s:57:"PHPStan\Rules\Operators\InvalidAssignVarRule::__construct";i:65;s:63:"PHPStan\Rules\Operators\InvalidIncDecOperationRule::__construct";i:66;s:66:"PHPStan\Rules\Properties\AccessPropertiesInAssignRule::__construct";i:67;s:72:"PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule::__construct";i:68;s:80:"PHPStan\Rules\Properties\ExistingClassesInPropertyHookTypehintsRule::__construct";i:69;s:71:"PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule::__construct";i:70;s:79:"PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule::__construct";i:71;s:63:"PHPStan\Rules\Properties\PropertiesInInterfaceRule::__construct";i:72;s:59:"PHPStan\Rules\Properties\PropertyAssignRefRule::__construct";i:73;s:60:"PHPStan\Rules\Properties\PropertyAttributesRule::__construct";i:74;s:64:"PHPStan\Rules\Properties\PropertyHookAttributesRule::__construct";i:75;s:57:"PHPStan\Rules\Properties\PropertyInClassRule::__construct";i:76;s:58:"PHPStan\Rules\Properties\ReadOnlyPropertyRule::__construct";i:77;s:62:"PHPStan\Rules\Regexp\RegularExpressionPatternRule::__construct";i:78;s:63:"PHPStan\Rules\Traits\ConflictingTraitConstantsRule::__construct";i:79;s:55:"PHPStan\Rules\Traits\ConstantsInTraitsRule::__construct";i:80;s:53:"PHPStan\Rules\Traits\TraitAttributesRule::__construct";i:81;s:66:"PHPStan\Rules\Classes\UnusedConstructorParametersRule::__construct";i:82;s:58:"PHPStan\Rules\Functions\UnusedClosureUsesRule::__construct";i:83;s:46:"PHPStan\Rules\Variables\EmptyRule::__construct";i:84;s:46:"PHPStan\Rules\Variables\IssetRule::__construct";i:85;s:53:"PHPStan\Rules\Variables\NullCoalesceRule::__construct";i:86;s:40:"PHPStan\Rules\Cast\EchoRule::__construct";i:87;s:47:"PHPStan\Rules\Cast\InvalidCastRule::__construct";i:88;s:63:"PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule::__construct";i:89;s:41:"PHPStan\Rules\Cast\PrintRule::__construct";i:90;s:48:"PHPStan\Rules\Classes\MethodTagRule::__construct";i:91;s:53:"PHPStan\Rules\Classes\MethodTagTraitRule::__construct";i:92;s:56:"PHPStan\Rules\Classes\MethodTagTraitUseRule::__construct";i:93;s:50:"PHPStan\Rules\Classes\PropertyTagRule::__construct";i:94;s:55:"PHPStan\Rules\Classes\PropertyTagTraitRule::__construct";i:95;s:58:"PHPStan\Rules\Classes\PropertyTagTraitUseRule::__construct";i:96;s:49:"PHPStan\Rules\Classes\MixinTraitRule::__construct";i:97;s:52:"PHPStan\Rules\Classes\MixinTraitUseRule::__construct";i:98;s:54:"PHPStan\Rules\Generics\ClassAncestorsRule::__construct";i:99;s:57:"PHPStan\Rules\Generics\ClassTemplateTypeRule::__construct";i:100;s:53:"PHPStan\Rules\Generics\EnumAncestorsRule::__construct";i:101;s:60:"PHPStan\Rules\Generics\FunctionTemplateTypeRule::__construct";i:102;s:65:"PHPStan\Rules\Generics\FunctionSignatureVarianceRule::__construct";i:103;s:58:"PHPStan\Rules\Generics\InterfaceAncestorsRule::__construct";i:104;s:61:"PHPStan\Rules\Generics\InterfaceTemplateTypeRule::__construct";i:105;s:58:"PHPStan\Rules\Generics\MethodTemplateTypeRule::__construct";i:106;s:61:"PHPStan\Rules\Generics\MethodTagTemplateTypeRule::__construct";i:107;s:66:"PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule::__construct";i:108;s:63:"PHPStan\Rules\Generics\MethodSignatureVarianceRule::__construct";i:109;s:56:"PHPStan\Rules\Generics\PropertyVarianceRule::__construct";i:110;s:57:"PHPStan\Rules\Generics\TraitTemplateTypeRule::__construct";i:111;s:50:"PHPStan\Rules\Generics\UsedTraitsRule::__construct";i:112;s:63:"PHPStan\Rules\Operators\InvalidBinaryOperationRule::__construct";i:113;s:67:"PHPStan\Rules\Operators\InvalidComparisonOperationRule::__construct";i:114;s:62:"PHPStan\Rules\Operators\InvalidUnaryOperationRule::__construct";i:115;s:67:"PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule::__construct";i:116;s:65:"PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule::__construct";i:117;s:52:"PHPStan\Rules\PhpDoc\FunctionAssertRule::__construct";i:118;s:50:"PHPStan\Rules\PhpDoc\MethodAssertRule::__construct";i:119;s:61:"PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule::__construct";i:120;s:73:"PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule::__construct";i:121;s:60:"PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule::__construct";i:122;s:72:"PHPStan\Rules\PhpDoc\IncompatiblePropertyHookPhpDocTypeRule::__construct";i:123;s:68:"PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule::__construct";i:124;s:62:"PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule::__construct";i:125;s:81:"PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule::__construct";i:126;s:65:"PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule::__construct";i:127;s:63:"PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule::__construct";i:128;s:67:"PHPStan\Rules\PhpDoc\RequireExtendsDefinitionClassRule::__construct";i:129;s:67:"PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule::__construct";i:130;s:48:"PHPStan\Rules\Pure\PureFunctionRule::__construct";i:131;s:46:"PHPStan\Rules\Pure\PureMethodRule::__construct";i:132;s:56:"PHPStan\Rules\Arrays\ArrayDestructuringRule::__construct";i:133;s:52:"PHPStan\Rules\Arrays\ArrayUnpackingRule::__construct";i:134;s:55:"PHPStan\Rules\Arrays\IterableInForeachRule::__construct";i:135;s:60:"PHPStan\Rules\Arrays\OffsetAccessAssignmentRule::__construct";i:136;s:58:"PHPStan\Rules\Arrays\OffsetAccessAssignOpRule::__construct";i:137;s:65:"PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule::__construct";i:138;s:59:"PHPStan\Rules\Arrays\UnpackIterableInArrayRule::__construct";i:139;s:55:"PHPStan\Rules\Exceptions\ThrowExprTypeRule::__construct";i:140;s:64:"PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule::__construct";i:141;s:58:"PHPStan\Rules\Functions\ClosureReturnTypeRule::__construct";i:142;s:51:"PHPStan\Rules\Functions\ReturnTypeRule::__construct";i:143;s:51:"PHPStan\Rules\Generators\YieldTypeRule::__construct";i:144;s:49:"PHPStan\Rules\Methods\ReturnTypeRule::__construct";i:145;s:79:"PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule::__construct";i:146;s:64:"PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule::__construct";i:147;s:72:"PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule::__construct";i:148;s:67:"PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule::__construct";i:149;s:75:"PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule::__construct";i:150;s:67:"PHPStan\Rules\Properties\TypesAssignedToPropertiesRule::__construct";i:151;s:65:"PHPStan\Rules\Variables\ParameterOutAssignedTypeRule::__construct";i:152;s:69:"PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule::__construct";i:153;s:56:"PHPStan\Rules\Variables\VariableCloningRule::__construct";i:154;s:44:"PHPStan\Rules\DeadCode\NoopRule::__construct";i:155;s:61:"PHPStan\Rules\DeadCode\UnusedPrivateConstantRule::__construct";i:156;s:59:"PHPStan\Rules\DeadCode\UnusedPrivateMethodRule::__construct";i:157;s:82:"PHPStan\Rules\Functions\CallToFunctionStatementWithoutSideEffectsRule::__construct";i:158;s:67:"PHPStan\Rules\Functions\UselessFunctionReturnValueRule::__construct";i:159;s:83:"PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule::__construct";i:160;s:78:"PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule::__construct";i:161;s:84:"PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule::__construct";i:162;s:79:"PHPStan\Rules\TooWideTypehints\TooWideFunctionParameterOutTypeRule::__construct";i:163;s:77:"PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule::__construct";i:164;s:67:"PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule::__construct";i:165;s:53:"PHPStan\Rules\Functions\CallUserFuncRule::__construct";i:166;s:66:"PHPStan\Rules\Functions\ParameterCastableToStringRule::__construct";i:167;s:73:"PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule::__construct";i:168;s:70:"PHPStan\Rules\Functions\SortParameterCastableToStringRule::__construct";i:169;s:62:"PHPStan\Rules\Regexp\RegularExpressionQuotingRule::__construct";i:170;s:81:"Larastan\Larastan\Rules\ConsoleCommand\UndefinedArgumentOrOptionRule::__construct";i:171;s:68:"PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule::__construct";i:172;s:74:"PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule::__construct";i:173;s:68:"PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule::__construct";i:174;s:66:"PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule::__construct";i:175;s:72:"PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule::__construct";i:176;s:79:"PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule::__construct";i:177;s:67:"PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule::__construct";i:178;s:79:"PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule::__construct";i:179;s:72:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule::__construct";i:180;s:76:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule::__construct";i:181;s:74:"PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule::__construct";i:182;s:84:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule::__construct";i:183;s:80:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule::__construct";i:184;s:81:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule::__construct";i:185;s:65:"PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule::__construct";i:186;s:66:"PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule::__construct";i:187;s:56:"PHPStan\Rules\PHPUnit\ClassCoversExistsRule::__construct";i:188;s:62:"PHPStan\Rules\PHPUnit\ClassMethodCoversExistsRule::__construct";i:189;s:70:"PHPStan\Rules\PHPUnit\NoMissingSpaceInClassAnnotationRule::__construct";i:190;s:71:"PHPStan\Rules\PHPUnit\NoMissingSpaceInMethodAnnotationRule::__construct";i:191;s:40:"PHPStan\Parser\LexerFactory::__construct";i:192;s:47:"PhpParser\NodeVisitor\NameResolver::__construct";i:193;s:45:"PHPStan\Node\Printer\ExprPrinter::__construct";i:194;s:44:"PhpParser\PrettyPrinterAbstract::__construct";i:195;s:52:"PHPStan\Broker\AnonymousClassNameHelper::__construct";i:196;s:37:"PHPStan\Php\PhpVersionFactory::create";i:197;s:44:"PHPStan\Php\PhpVersionFactoryFactory::create";i:198;s:49:"PHPStan\Php\PhpVersionFactoryFactory::__construct";i:199;s:50:"PHPStan\Php\ComposerPhpVersionFactory::__construct";i:200;s:46:"PHPStan\PhpDocParser\ParserConfig::__construct";i:201;s:45:"PHPStan\PhpDocParser\Lexer\Lexer::__construct";i:202;s:51:"PHPStan\PhpDocParser\Parser\TypeParser::__construct";i:203;s:56:"PHPStan\PhpDocParser\Parser\ConstExprParser::__construct";i:204;s:53:"PHPStan\PhpDocParser\Parser\PhpDocParser::__construct";i:205;s:53:"PHPStan\PhpDoc\PhpDocInheritanceResolver::__construct";i:206;s:46:"PHPStan\PhpDoc\PhpDocNodeResolver::__construct";i:207;s:48:"PHPStan\PhpDoc\PhpDocStringResolver::__construct";i:208;s:49:"PHPStan\PhpDoc\ConstExprNodeResolver::__construct";i:209;s:44:"PHPStan\PhpDoc\TypeNodeResolver::__construct";i:210;s:73:"PHPStan\PhpDoc\LazyTypeNodeResolverExtensionRegistryProvider::__construct";i:211;s:46:"PHPStan\PhpDoc\TypeStringResolver::__construct";i:212;s:41:"PHPStan\PhpDoc\StubValidator::__construct";i:213;s:58:"PHPStan\PhpDoc\SocketSelectStubFilesExtension::__construct";i:214;s:52:"PHPStan\PhpDoc\DefaultStubFilesProvider::__construct";i:215;s:58:"PHPStan\PhpDoc\JsonValidateStubFilesExtension::__construct";i:216;s:61:"PHPStan\PhpDoc\ReflectionClassStubFilesExtension::__construct";i:217;s:60:"PHPStan\PhpDoc\ReflectionEnumStubFilesExtension::__construct";i:218;s:38:"PHPStan\Analyser\Analyser::__construct";i:219;s:53:"PHPStan\Analyser\AnalyserResultFinalizer::__construct";i:220;s:42:"PHPStan\Analyser\FileAnalyser::__construct";i:221;s:55:"PHPStan\Analyser\Ignore\IgnoredErrorHelper::__construct";i:222;s:54:"PHPStan\Analyser\LazyInternalScopeFactory::__construct";i:223;s:42:"PHPStan\Analyser\ScopeFactory::__construct";i:224;s:47:"PHPStan\Analyser\NodeScopeResolver::__construct";i:225;s:48:"PHPStan\Analyser\ConstantResolverFactory::create";i:226;s:53:"PHPStan\Analyser\ConstantResolverFactory::__construct";i:227;s:60:"PHPStan\Analyser\ResultCache\ResultCacheManager::__construct";i:228;s:60:"PHPStan\Analyser\ResultCache\ResultCacheClearer::__construct";i:229;s:54:"PHPStan\Analyser\RicherScopeGetTypeHelper::__construct";i:230;s:32:"PHPStan\Cache\Cache::__construct";i:231;s:42:"PHPStan\Collectors\RegistryFactory::create";i:232;s:47:"PHPStan\Collectors\RegistryFactory::__construct";i:233;s:47:"PHPStan\Command\AnalyseApplication::__construct";i:234;s:43:"PHPStan\Command\AnalyserRunner::__construct";i:235;s:45:"PHPStan\Command\FixerApplication::__construct";i:236;s:50:"PHPStan\Dependency\DependencyResolver::__construct";i:237;s:51:"PHPStan\Dependency\ExportedNodeFetcher::__construct";i:238;s:52:"PHPStan\Dependency\ExportedNodeResolver::__construct";i:239;s:51:"PHPStan\Dependency\ExportedNodeVisitor::__construct";i:240;s:59:"PHPStan\DependencyInjection\MemoizingContainer::__construct";i:241;s:61:"PHPStan\DependencyInjection\Nette\NetteContainer::__construct";i:242;s:67:"PHPStan\DependencyInjection\DerivativeContainerFactory::__construct";i:243;s:96:"PHPStan\DependencyInjection\Reflection\LazyClassReflectionExtensionRegistryProvider::__construct";i:244;s:92:"PHPStan\DependencyInjection\Type\LazyDynamicReturnTypeExtensionRegistryProvider::__construct";i:245;s:83:"PHPStan\DependencyInjection\Type\LazyParameterOutTypeExtensionProvider::__construct";i:246;s:97:"PHPStan\DependencyInjection\Type\LazyExpressionTypeResolverExtensionRegistryProvider::__construct";i:247;s:97:"PHPStan\DependencyInjection\Type\LazyOperatorTypeSpecifyingExtensionRegistryProvider::__construct";i:248;s:83:"PHPStan\DependencyInjection\Type\LazyDynamicThrowTypeExtensionProvider::__construct";i:249;s:87:"PHPStan\DependencyInjection\Type\LazyParameterClosureTypeExtensionProvider::__construct";i:250;s:36:"PHPStan\File\FileHelper::__construct";i:251;s:45:"PHPStan\File\FileExcluderFactory::__construct";i:252;s:38:"PHPStan\File\FileExcluder::__construct";i:253;s:59:"PHPStan\File\FileExcluderFactory::createAnalyseFileExcluder";i:254;s:56:"PHPStan\File\FileExcluderFactory::createScanFileExcluder";i:255;s:36:"PHPStan\File\FileFinder::__construct";i:257;s:37:"PHPStan\File\FileMonitor::__construct";i:258;s:46:"PHPStan\Parallel\ParallelAnalyser::__construct";i:259;s:39:"PHPStan\Parallel\Scheduler::__construct";i:260;s:58:"PHPStan\Reflection\AttributeReflectionFactory::__construct";i:261;s:57:"PHPStan\Reflection\Php\PhpFunctionReflection::__construct";i:262;s:59:"PHPStan\Reflection\InitializerExprTypeResolver::__construct";i:263;s:79:"PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher::__construct";i:264;s:109:"PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker::__construct";i:265;s:101:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory::__construct";i:266;s:104:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository::__construct";i:267;s:92:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator::__construct";i:268;s:95:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator::__construct";i:269;s:105:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository::__construct";i:270;s:105:"PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumCaseDynamicReturnTypeExtension::__construct";i:272;s:101:"PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumDynamicReturnTypeExtension::__construct";i:273;s:50:"PHPStan\Reflection\ConstructorsHelper::__construct";i:274;s:74:"PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension::__construct";i:275;s:77:"PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension::__construct";i:276;s:63:"PHPStan\Reflection\Php\PhpClassReflectionExtension::__construct";i:277;s:55:"PHPStan\Reflection\Php\PhpMethodReflection::__construct";i:278;s:81:"PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension::__construct";i:279;s:92:"PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension::__construct";i:281;s:81:"PHPStan\Reflection\ReflectionProvider\LazyReflectionProviderProvider::__construct";i:282;s:77:"PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider::__construct";i:283;s:63:"PHPStan\Reflection\SignatureMap\SignatureMapParser::__construct";i:284;s:73:"PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider::__construct";i:285;s:69:"PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider::__construct";i:286;s:72:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory::__construct";i:287;s:67:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory::create";i:288;s:42:"PHPStan\Rules\AttributesCheck::__construct";i:289;s:71:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck::__construct";i:290;s:41:"PHPStan\Rules\ClassNameCheck::__construct";i:291;s:52:"PHPStan\Rules\ClassCaseSensitivityCheck::__construct";i:292;s:50:"PHPStan\Rules\ClassForbiddenNameCheck::__construct";i:293;s:56:"PHPStan\Rules\Classes\LocalTypeAliasesCheck::__construct";i:294;s:49:"PHPStan\Rules\Classes\MethodTagCheck::__construct";i:295;s:45:"PHPStan\Rules\Classes\MixinCheck::__construct";i:296;s:51:"PHPStan\Rules\Classes\PropertyTagCheck::__construct";i:297;s:65:"PHPStan\Rules\Comparison\ConstantConditionRuleHelper::__construct";i:298;s:63:"PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper::__construct";i:299;s:66:"PHPStan\Rules\Exceptions\DefaultExceptionTypeResolver::__construct";i:300;s:81:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule::__construct";i:301;s:79:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule::__construct";i:302;s:85:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInPropertyHookThrowsRule::__construct";i:303;s:74:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck::__construct";i:304;s:59:"PHPStan\Rules\Exceptions\TooWideThrowTypeCheck::__construct";i:305;s:54:"PHPStan\Rules\FunctionCallParametersCheck::__construct";i:306;s:50:"PHPStan\Rules\FunctionDefinitionCheck::__construct";i:307;s:50:"PHPStan\Rules\FunctionReturnTypeCheck::__construct";i:308;s:57:"PHPStan\Rules\ParameterCastableToStringCheck::__construct";i:309;s:57:"PHPStan\Rules\Generics\GenericAncestorsCheck::__construct";i:310;s:62:"PHPStan\Rules\Generics\MethodTagTemplateTypeCheck::__construct";i:311;s:53:"PHPStan\Rules\Generics\TemplateTypeCheck::__construct";i:312;s:37:"PHPStan\Rules\IssetCheck::__construct";i:313;s:50:"PHPStan\Rules\Methods\MethodCallCheck::__construct";i:314;s:56:"PHPStan\Rules\Methods\StaticMethodCallCheck::__construct";i:315;s:54:"PHPStan\Rules\Methods\MethodSignatureRule::__construct";i:316;s:66:"PHPStan\Rules\Methods\MethodParameterComparisonHelper::__construct";i:317;s:47:"PHPStan\Rules\MissingTypehintCheck::__construct";i:318;s:82:"PHPStan\Rules\Constants\LazyAlwaysUsedClassConstantsExtensionProvider::__construct";i:319;s:72:"PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider::__construct";i:320;s:50:"PHPStan\Rules\PhpDoc\AssertRuleHelper::__construct";i:321;s:59:"PHPStan\Rules\PhpDoc\GenericCallableRuleHelper::__construct";i:322;s:61:"PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck::__construct";i:323;s:54:"PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper::__construct";i:324;s:59:"PHPStan\Rules\Properties\AccessPropertiesCheck::__construct";i:325;s:63:"PHPStan\Rules\Properties\UninitializedPropertyRule::__construct";i:326;s:78:"PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider::__construct";i:327;s:42:"PHPStan\Rules\RuleLevelHelper::__construct";i:328;s:56:"PHPStan\Rules\UnusedFunctionParametersCheck::__construct";i:329;s:40:"PHPStan\Type\FileTypeMapper::__construct";i:331;s:49:"PHPStan\Type\UsefulTypeAliasResolver::__construct";i:332;s:55:"PHPStan\Type\LazyTypeAliasResolverProvider::__construct";i:333;s:43:"PHPStan\Type\BitwiseFlagHelper::__construct";i:334;s:74:"PHPStan\Type\Php\ArrayIntersectKeyFunctionReturnTypeExtension::__construct";i:335;s:67:"PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension::__construct";i:336;s:68:"PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension::__construct";i:337;s:69:"PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension::__construct";i:338;s:66:"PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension::__construct";i:339;s:70:"PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension::__construct";i:340;s:65:"PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper::__construct";i:341;s:68:"PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension::__construct";i:342;s:66:"PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension::__construct";i:343;s:66:"PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension::__construct";i:344;s:73:"PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension::__construct";i:345;s:69:"PHPStan\Type\Php\ArrayReverseFunctionReturnTypeExtension::__construct";i:346;s:67:"PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension::__construct";i:347;s:75:"PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension::__construct";i:348;s:75:"PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension::__construct";i:349;s:67:"PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension::__construct";i:350;s:64:"PHPStan\Type\Php\CompactFunctionReturnTypeExtension::__construct";i:351;s:65:"PHPStan\Type\Php\ConstantFunctionReturnTypeExtension::__construct";i:352;s:74:"PHPStan\Type\Php\CountCharsFunctionDynamicReturnTypeExtension::__construct";i:353;s:75:"PHPStan\Type\Php\CurlGetinfoFunctionDynamicReturnTypeExtension::__construct";i:354;s:67:"PHPStan\Type\Php\DateFormatFunctionReturnTypeExtension::__construct";i:355;s:65:"PHPStan\Type\Php\DateFormatMethodReturnTypeExtension::__construct";i:356;s:61:"PHPStan\Type\Php\DateFunctionReturnTypeExtension::__construct";i:357;s:71:"PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension::__construct";i:358;s:63:"PHPStan\Type\Php\DateTimeModifyReturnTypeExtension::__construct";i:360;s:67:"PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension::__construct";i:361;s:68:"PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension::__construct";i:362;s:65:"PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension::__construct";i:363;s:71:"PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension::__construct";i:364;s:71:"PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension::__construct";i:365;s:60:"PHPStan\Type\Php\FilterFunctionReturnTypeHelper::__construct";i:366;s:67:"PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension::__construct";i:367;s:65:"PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension::__construct";i:368;s:70:"PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension::__construct";i:369;s:78:"PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension::__construct";i:370;s:62:"PHPStan\Type\Php\HashFunctionsReturnTypeExtension::__construct";i:371;s:71:"PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension::__construct";i:372;s:52:"PHPStan\Type\Php\JsonThrowTypeExtension::__construct";i:373;s:62:"PHPStan\Type\Php\PregMatchTypeSpecifyingExtension::__construct";i:374;s:64:"PHPStan\Type\Php\PregMatchParameterOutTypeExtension::__construct";i:375;s:69:"PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension::__construct";i:376;s:52:"PHPStan\Type\Php\RegexArrayShapeMatcher::__construct";i:377;s:48:"PHPStan\Type\Regex\RegexGroupParser::__construct";i:378;s:53:"PHPStan\Type\Regex\RegexExpressionHelper::__construct";i:379;s:77:"PHPStan\Type\Php\ReflectionFunctionConstructorThrowTypeExtension::__construct";i:380;s:75:"PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension::__construct";i:381;s:77:"PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension::__construct";i:382;s:67:"PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension::__construct";i:383;s:63:"PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension::__construct";i:384;s:72:"PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension::__construct";i:385;s:65:"PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension::__construct";i:386;s:60:"PHPStan\Type\Php\MbFunctionsReturnTypeExtension::__construct";i:387;s:77:"PHPStan\Type\Php\MbSubstituteCharacterDynamicReturnTypeExtension::__construct";i:388;s:65:"PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension::__construct";i:389;s:62:"PHPStan\Type\Php\SubstrDynamicReturnTypeExtension::__construct";i:390;s:68:"PHPStan\Type\Php\TriggerErrorDynamicReturnTypeExtension::__construct";i:391;s:78:"PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension::__construct";i:392;s:62:"PHPStan\Type\Php\RoundFunctionReturnTypeExtension::__construct";i:393;s:68:"PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension::__construct";i:394;s:71:"PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension::__construct";i:395;s:73:"PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension::__construct";i:396;s:64:"PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension::__construct";i:397;s:72:"PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension::__construct";i:398;s:79:"PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension::__construct";i:399;s:65:"PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension::__construct";i:400;s:78:"PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension::__construct";i:405;s:44:"PHPStan\Type\ClosureTypeFactory::__construct";i:406;s:49:"PHPStan\Rules\Functions\PrintfHelper::__construct";i:407;s:49:"_PHPStan_24e2736d6\Nette\DI\Container::getService";i:408;s:45:"PHPStan\Analyser\TypeSpecifierFactory::create";i:409;s:50:"PHPStan\Analyser\TypeSpecifierFactory::__construct";i:410;s:49:"PHPStan\File\FuzzyRelativePathHelper::__construct";i:411;s:50:"PHPStan\File\SimpleRelativePathHelper::__construct";i:412;s:59:"PHPStan\File\ParentDirectoryRelativePathHelper::__construct";i:413;s:43:"PHPStan\Cache\FileCacheStorage::__construct";i:414;s:38:"PHPStan\Parser\RichParser::__construct";i:415;s:42:"PHPStan\Parser\CleaningParser::__construct";i:416;s:40:"PHPStan\Parser\SimpleParser::__construct";i:417;s:40:"PHPStan\Parser\CachedParser::__construct";i:418;s:46:"PHPStan\Parser\PhpParserDecorator::__construct";i:419;s:35:"PHPStan\Parser\LexerFactory::create";i:421;s:44:"PHPStan\Parser\PhpParserFactory::__construct";i:422;s:39:"PHPStan\Rules\LazyRegistry::__construct";i:423;s:46:"PHPStan\PhpDoc\StubPhpDocProvider::__construct";i:424;s:76:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory::__construct";i:426;s:80:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory::create";i:427;s:64:"PHPStan\BetterReflection\Reflector\DefaultReflector::__construct";i:428;s:77:"PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector::__construct";i:430;s:73:"PHPStan\Reflection\BetterReflection\BetterReflectionProvider::__construct";i:431;s:85:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory::__construct";i:433;s:96:"PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory::__construct";i:436;s:93:"PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory::__construct";i:437;s:44:"PHPStan\Parser\LexerFactory::createEmulative";i:438;s:37:"PhpParser\ParserAbstract::__construct";i:440;s:45:"PHPStan\Parser\PathRoutingParser::__construct";i:441;s:38:"PHPStan\Parser\StubParser::__construct";i:443;s:54:"PHPStan\Diagnose\PHPStanDiagnoseExtension::__construct";i:444;s:68:"PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter::__construct";i:445;s:63:"PHPStan\Command\ErrorFormatter\TableErrorFormatter::__construct";i:446;s:68:"PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter::__construct";i:447;s:62:"PHPStan\Command\ErrorFormatter\JsonErrorFormatter::__construct";i:448;s:63:"PHPStan\Command\ErrorFormatter\JunitErrorFormatter::__construct";i:450;s:64:"PHPStan\Command\ErrorFormatter\GitlabErrorFormatter::__construct";i:451;s:64:"PHPStan\Command\ErrorFormatter\GithubErrorFormatter::__construct";i:452;s:66:"PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter::__construct";i:453;s:66:"PHPStan\Rules\Classes\ExistingClassInClassExtendsRule::__construct";i:454;s:64:"PHPStan\Rules\Classes\ExistingClassInInstanceOfRule::__construct";i:455;s:66:"PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule::__construct";i:456;s:66:"PHPStan\Rules\Functions\CallToNonExistentFunctionRule::__construct";i:457;s:59:"PHPStan\Rules\Constants\OverridingConstantRule::__construct";i:458;s:55:"PHPStan\Rules\Methods\OverridingMethodRule::__construct";i:459;s:52:"PHPStan\Rules\Missing\MissingReturnRule::__construct";i:460;s:65:"PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule::__construct";i:461;s:60:"PHPStan\Rules\Namespaces\ExistingNamesInUseRule::__construct";i:462;s:58:"PHPStan\Rules\Properties\AccessPropertiesRule::__construct";i:463;s:64:"PHPStan\Rules\Properties\AccessStaticPropertiesRule::__construct";i:464;s:69:"PHPStan\Rules\Properties\ExistingClassesInPropertiesRule::__construct";i:465;s:57:"PHPStan\Rules\Functions\FunctionCallableRule::__construct";i:466;s:60:"PHPStan\Rules\Properties\OverridingPropertyRule::__construct";i:467;s:66:"PHPStan\Rules\Properties\SetPropertyHookParameterRule::__construct";i:468;s:69:"PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule::__construct";i:469;s:68:"PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule::__construct";i:470;s:57:"PHPStan\Rules\Variables\CompactVariablesRule::__construct";i:471;s:56:"PHPStan\Rules\Variables\DefinedVariableRule::__construct";i:472;s:57:"PHPStan\Rules\Keywords\RequireFileExistsRule::__construct";i:473;s:44:"PHPStan\Rules\Classes\MixinRule::__construct";i:474;s:53:"PHPStan\Rules\PhpDoc\RequireExtendsCheck::__construct";i:475;s:70:"PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule::__construct";i:476;s:54:"PHPStan\Rules\Functions\CallCallablesRule::__construct";i:477;s:59:"PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule::__construct";i:478;s:61:"PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule::__construct";i:479;s:58:"PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule::__construct";i:480;s:63:"PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule::__construct";i:481;s:59:"PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule::__construct";i:482;s:70:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule::__construct";i:483;s:82:"PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule::__construct";i:484;s:80:"PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule::__construct";i:485;s:86:"PHPStan\Rules\Exceptions\ThrowsVoidPropertyHookWithExplicitThrowPointRule::__construct";i:486;s:55:"PHPStan\Rules\Generators\YieldFromTypeRule::__construct";i:487;s:58:"PHPStan\Rules\Generators\YieldInGeneratorRule::__construct";i:488;s:59:"PHPStan\Rules\Classes\ImpossibleInstanceOfRule::__construct";i:489;s:69:"PHPStan\Rules\Comparison\BooleanAndConstantConditionRule::__construct";i:490;s:68:"PHPStan\Rules\Comparison\BooleanOrConstantConditionRule::__construct";i:491;s:69:"PHPStan\Rules\Comparison\BooleanNotConstantConditionRule::__construct";i:492;s:60:"PHPStan\Rules\DeadCode\PossiblyPureNewCollector::__construct";i:493;s:65:"PHPStan\Rules\DeadCode\PossiblyPureFuncCallCollector::__construct";i:494;s:67:"PHPStan\Rules\DeadCode\PossiblyPureMethodCallCollector::__construct";i:495;s:67:"PHPStan\Rules\DeadCode\PossiblyPureStaticCallCollector::__construct";i:496;s:61:"PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule::__construct";i:497;s:70:"PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule::__construct";i:498;s:65:"PHPStan\Rules\Comparison\ElseIfConstantConditionRule::__construct";i:499;s:61:"PHPStan\Rules\Comparison\IfConstantConditionRule::__construct";i:500;s:73:"PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule::__construct";i:501;s:71:"PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule::__construct";i:502;s:77:"PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule::__construct";i:503;s:69:"PHPStan\Rules\Comparison\LogicalXorConstantConditionRule::__construct";i:504;s:57:"PHPStan\Rules\Comparison\MatchExpressionRule::__construct";i:505;s:84:"PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule::__construct";i:506;s:74:"PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule::__construct";i:507;s:65:"PHPStan\Rules\Comparison\ConstantLooseComparisonRule::__construct";i:508;s:74:"PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule::__construct";i:509;s:71:"PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule::__construct";i:510;s:70:"PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule::__construct";i:511;s:66:"PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule::__construct";i:512;s:64:"PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule::__construct";i:513;s:70:"PHPStan\Rules\Exceptions\TooWidePropertyHookThrowTypeRule::__construct";i:514;s:75:"PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule::__construct";i:515;s:63:"PHPStan\Rules\Properties\NullsafePropertyFetchRule::__construct";i:516;s:68:"PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule::__construct";i:517;s:60:"PHPStan\Rules\Functions\RandomIntParametersRule::__construct";i:518;s:52:"PHPStan\Rules\Functions\ArrayFilterRule::__construct";i:519;s:52:"PHPStan\Rules\Functions\ArrayValuesRule::__construct";i:520;s:66:"PHPStan\Rules\Functions\ParameterCastableToNumberRule::__construct";i:521;s:69:"Larastan\Larastan\Methods\RelationForwardsCallsExtension::__construct";i:522;s:66:"Larastan\Larastan\Methods\ModelForwardsCallsExtension::__construct";i:523;s:76:"Larastan\Larastan\Methods\EloquentBuilderForwardsCallsExtension::__construct";i:524;s:74:"Larastan\Larastan\Methods\HigherOrderCollectionProxyExtension::__construct";i:525;s:77:"Larastan\Larastan\Methods\StorageMethodsClassReflectionExtension::__construct";i:526;s:48:"Larastan\Larastan\Methods\Extension::__construct";i:527;s:82:"Larastan\Larastan\Methods\ModelFactoryMethodsClassReflectionExtension::__construct";i:528;s:75:"Larastan\Larastan\Methods\MacroMethodsClassReflectionExtension::__construct";i:529;s:64:"Larastan\Larastan\Properties\ModelAccessorExtension::__construct";i:530;s:64:"Larastan\Larastan\Properties\ModelPropertyExtension::__construct";i:531;s:85:"Larastan\Larastan\Properties\HigherOrderCollectionProxyPropertyExtension::__construct";i:532;s:95:"Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension::__construct";i:536;s:65:"Larastan\Larastan\Properties\ModelRelationsExtension::__construct";i:537;s:93:"Larastan\Larastan\ReturnTypes\ModelFactoryDynamicStaticMethodReturnTypeExtension::__construct";i:538;s:86:"Larastan\Larastan\ReturnTypes\ModelDynamicStaticMethodReturnTypeExtension::__construct";i:539;s:76:"Larastan\Larastan\ReturnTypes\AppMakeDynamicReturnTypeExtension::__construct";i:540;s:67:"Larastan\Larastan\ReturnTypes\EloquentBuilderExtension::__construct";i:541;s:64:"Larastan\Larastan\ReturnTypes\RelationFindExtension::__construct";i:542;s:70:"Larastan\Larastan\ReturnTypes\RelationCollectionExtension::__construct";i:543;s:61:"Larastan\Larastan\ReturnTypes\ModelFindExtension::__construct";i:544;s:68:"Larastan\Larastan\ReturnTypes\BuilderModelFindExtension::__construct";i:545;s:55:"Larastan\Larastan\Support\CollectionHelper::__construct";i:546;s:67:"Larastan\Larastan\ReturnTypes\Helpers\CollectExtension::__construct";i:547;s:88:"Larastan\Larastan\ReturnTypes\NewModelQueryDynamicMethodReturnTypeExtension::__construct";i:548;s:75:"Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension::__construct";i:552;s:63:"Larastan\Larastan\ReturnTypes\Helpers\AppExtension::__construct";i:553;s:87:"Larastan\Larastan\Types\GenericEloquentCollectionTypeNodeResolverExtension::__construct";i:554;s:52:"Larastan\Larastan\Rules\NoModelMakeRule::__construct";i:555;s:68:"Larastan\Larastan\Rules\NoUnnecessaryCollectionCallRule::__construct";i:556;s:53:"Larastan\Larastan\Rules\ModelAppendsRule::__construct";i:557;s:84:"Larastan\Larastan\Types\GenericEloquentBuilderTypeNodeResolverExtension::__construct";i:558;s:89:"Larastan\Larastan\Types\ModelProperty\ModelPropertyTypeNodeResolverExtension::__construct";i:559;s:57:"Larastan\Larastan\Properties\MigrationHelper::__construct";i:560;s:65:"Larastan\Larastan\Properties\SquashedMigrationHelper::__construct";i:561;s:57:"Larastan\Larastan\Properties\ModelCastHelper::__construct";i:562;s:61:"Larastan\Larastan\Properties\ModelPropertyHelper::__construct";i:563;s:52:"Larastan\Larastan\Methods\BuilderHelper::__construct";i:564;s:58:"Larastan\Larastan\Rules\RelationExistenceRule::__construct";i:565;s:97:"Larastan\Larastan\Rules\CheckDispatchArgumentTypesCompatibleWithClassConstructorRule::__construct";i:567;s:52:"Larastan\Larastan\Rules\UnusedViewsRule::__construct";i:568;s:72:"Larastan\Larastan\Collectors\UsedViewInAnotherViewCollector::__construct";i:569;s:53:"Larastan\Larastan\Support\ViewFileHelper::__construct";i:570;s:84:"Larastan\Larastan\ReturnTypes\ApplicationMakeDynamicReturnTypeExtension::__construct";i:571;s:82:"Larastan\Larastan\ReturnTypes\ContainerMakeDynamicReturnTypeExtension::__construct";i:572;s:92:"Larastan\Larastan\ReturnTypes\ConsoleCommand\ArgumentDynamicReturnTypeExtension::__construct";i:573;s:95:"Larastan\Larastan\ReturnTypes\ConsoleCommand\HasArgumentDynamicReturnTypeExtension::__construct";i:574;s:90:"Larastan\Larastan\ReturnTypes\ConsoleCommand\OptionDynamicReturnTypeExtension::__construct";i:575;s:93:"Larastan\Larastan\ReturnTypes\ConsoleCommand\HasOptionDynamicReturnTypeExtension::__construct";i:576;s:64:"Larastan\Larastan\Internal\ConsoleApplicationHelper::__construct";i:577;s:71:"Larastan\Larastan\Support\HigherOrderCollectionProxyHelper::__construct";i:578;s:42:"Carbon\PHPStan\MacroExtension::__construct";i:579;s:61:"PHPStan\Rules\Deprecations\DeprecatedClassHelper::__construct";i:580;s:76:"PHPStan\DependencyInjection\LazyDeprecatedScopeResolverProvider::__construct";i:581;s:68:"PHPStan\DependencyInjection\LazyDeprecatedScopeResolverProvider::get";i:582;s:71:"PHPStan\Rules\Deprecations\CallWithDeprecatedIniOptionRule::__construct";i:583;s:47:"PHPStan\Rules\PHPUnit\CoversHelper::__construct";i:584;s:55:"PHPStan\Rules\PHPUnit\DataProviderHelperFactory::create";i:585;s:60:"PHPStan\Rules\PHPUnit\DataProviderHelperFactory::__construct";i:586;s:62:"PHPStan\Rules\PHPUnit\DataProviderDeclarationRule::__construct";}i:5;s:32:"d1ebf4d092416d904f824b0a88c2c422";} \ No newline at end of file diff --git a/build/phpstan/cache/nette.configurator/container.journal b/build/phpstan/cache/nette.configurator/container.journal new file mode 100644 index 0000000..2b8d1b1 --- /dev/null +++ b/build/phpstan/cache/nette.configurator/container.journal @@ -0,0 +1 @@ +Container_c5db45e753:1740672537 diff --git a/build/phpstan/resultCache.php b/build/phpstan/resultCache.php new file mode 100644 index 0000000..32c4ea9 --- /dev/null +++ b/build/phpstan/resultCache.php @@ -0,0 +1,3977 @@ + 1740672423, + 'meta' => array ( + 'cacheVersion' => 'v12-linesToIgnore', + 'phpstanVersion' => '2.1.6', + 'metaExtensions' => + array ( + ), + 'phpVersion' => 80312, + 'projectConfig' => '{parameters: {level: 5, paths: [/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src, /Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/config], tmpDir: /Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/build/phpstan, checkOctaneCompatibility: true, checkModelProperties: true, noEnvCallsOutsideOfConfig: false}}', + 'analysedPaths' => + array ( + 0 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src', + 1 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/config', + ), + 'scannedFiles' => + array ( + ), + 'composerLocks' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/composer.lock' => '44989410ec5d2220b79dc75ffbe1e90b8cd600ca', + ), + 'composerInstalled' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/installed.php' => + array ( + 'versions' => + array ( + 'brianium/paratest' => + array ( + 'pretty_version' => 'v7.7.0', + 'version' => '7.7.0.0', + 'reference' => '4fb3f73bc5a4c3146bac2850af7dc72435a32daf', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../brianium/paratest', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'brick/math' => + array ( + 'pretty_version' => '0.12.2', + 'version' => '0.12.2.0', + 'reference' => '901eddb1e45a8e0f689302e40af871c181ecbe40', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../brick/math', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'carbonphp/carbon-doctrine-types' => + array ( + 'pretty_version' => '3.2.0', + 'version' => '3.2.0.0', + 'reference' => '18ba5ddfec8976260ead6e866180bd5d2f71aa1d', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../carbonphp/carbon-doctrine-types', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'composer/semver' => + array ( + 'pretty_version' => '3.4.3', + 'version' => '3.4.3.0', + 'reference' => '4313d26ada5e0c4edfbd1dc481a92ff7bff91f12', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/./semver', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'cordoval/hamcrest-php' => + array ( + 'dev_requirement' => true, + 'replaced' => + array ( + 0 => '*', + ), + ), + 'davedevelopment/hamcrest-php' => + array ( + 'dev_requirement' => true, + 'replaced' => + array ( + 0 => '*', + ), + ), + 'dflydev/dot-access-data' => + array ( + 'pretty_version' => 'v3.0.3', + 'version' => '3.0.3.0', + 'reference' => 'a23a2bf4f31d3518f3ecb38660c95715dfead60f', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../dflydev/dot-access-data', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'doctrine/deprecations' => + array ( + 'pretty_version' => '1.1.4', + 'version' => '1.1.4.0', + 'reference' => '31610dbb31faa98e6b5447b62340826f54fbc4e9', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../doctrine/deprecations', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'doctrine/inflector' => + array ( + 'pretty_version' => '2.0.10', + 'version' => '2.0.10.0', + 'reference' => '5817d0659c5b50c9b950feb9af7b9668e2c436bc', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../doctrine/inflector', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'doctrine/lexer' => + array ( + 'pretty_version' => '3.0.1', + 'version' => '3.0.1.0', + 'reference' => '31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../doctrine/lexer', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'dragonmantank/cron-expression' => + array ( + 'pretty_version' => 'v3.4.0', + 'version' => '3.4.0.0', + 'reference' => '8c784d071debd117328803d86b2097615b457500', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../dragonmantank/cron-expression', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'egulias/email-validator' => + array ( + 'pretty_version' => '4.0.3', + 'version' => '4.0.3.0', + 'reference' => 'b115554301161fa21467629f1e1391c1936de517', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../egulias/email-validator', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'fakerphp/faker' => + array ( + 'pretty_version' => 'v1.24.1', + 'version' => '1.24.1.0', + 'reference' => 'e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../fakerphp/faker', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'fidry/cpu-core-counter' => + array ( + 'pretty_version' => '1.2.0', + 'version' => '1.2.0.0', + 'reference' => '8520451a140d3f46ac33042715115e290cf5785f', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../fidry/cpu-core-counter', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'filp/whoops' => + array ( + 'pretty_version' => '2.17.0', + 'version' => '2.17.0.0', + 'reference' => '075bc0c26631110584175de6523ab3f1652eb28e', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../filp/whoops', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'fruitcake/php-cors' => + array ( + 'pretty_version' => 'v1.3.0', + 'version' => '1.3.0.0', + 'reference' => '3d158f36e7875e2f040f37bc0573956240a5a38b', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../fruitcake/php-cors', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'graham-campbell/result-type' => + array ( + 'pretty_version' => 'v1.1.3', + 'version' => '1.1.3.0', + 'reference' => '3ba905c11371512af9d9bdd27d99b782216b6945', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../graham-campbell/result-type', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'guzzlehttp/guzzle' => + array ( + 'pretty_version' => '7.9.2', + 'version' => '7.9.2.0', + 'reference' => 'd281ed313b989f213357e3be1a179f02196ac99b', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../guzzlehttp/guzzle', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'guzzlehttp/promises' => + array ( + 'pretty_version' => '2.0.4', + 'version' => '2.0.4.0', + 'reference' => 'f9c436286ab2892c7db7be8c8da4ef61ccf7b455', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../guzzlehttp/promises', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'guzzlehttp/psr7' => + array ( + 'pretty_version' => '2.7.0', + 'version' => '2.7.0.0', + 'reference' => 'a70f5c95fb43bc83f07c9c948baa0dc1829bf201', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../guzzlehttp/psr7', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'guzzlehttp/uri-template' => + array ( + 'pretty_version' => 'v1.0.4', + 'version' => '1.0.4.0', + 'reference' => '30e286560c137526eccd4ce21b2de477ab0676d2', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../guzzlehttp/uri-template', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'hamcrest/hamcrest-php' => + array ( + 'pretty_version' => 'v2.0.1', + 'version' => '2.0.1.0', + 'reference' => '8c3d0a3f6af734494ad8f6fbbee0ba92422859f3', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../hamcrest/hamcrest-php', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'illuminate/auth' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/broadcasting' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/bus' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/cache' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/collections' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/concurrency' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/conditionable' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/config' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/console' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/container' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/contracts' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/cookie' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/database' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/encryption' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/events' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/filesystem' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/hashing' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/http' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/log' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/macroable' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/mail' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/notifications' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/pagination' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/pipeline' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/process' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/queue' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/redis' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/routing' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/session' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/support' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/testing' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/translation' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/validation' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'illuminate/view' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => 'v12.0.1', + ), + ), + 'jean85/pretty-package-versions' => + array ( + 'pretty_version' => '2.1.0', + 'version' => '2.1.0.0', + 'reference' => '3c4e5f62ba8d7de1734312e4fff32f67a8daaf10', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../jean85/pretty-package-versions', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'kodova/hamcrest-php' => + array ( + 'dev_requirement' => true, + 'replaced' => + array ( + 0 => '*', + ), + ), + 'larastan/larastan' => + array ( + 'pretty_version' => 'v3.1.0', + 'version' => '3.1.0.0', + 'reference' => 'dbb2dc20e5c8e1ed3ff289054e1955f269187312', + 'type' => 'phpstan-extension', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../larastan/larastan', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'laravel/framework' => + array ( + 'pretty_version' => 'v12.0.1', + 'version' => '12.0.1.0', + 'reference' => 'd99e2385a6d4324782d52f4423891966425641be', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../laravel/framework', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'laravel/pail' => + array ( + 'pretty_version' => 'v1.2.2', + 'version' => '1.2.2.0', + 'reference' => 'f31f4980f52be17c4667f3eafe034e6826787db2', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../laravel/pail', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'laravel/pint' => + array ( + 'pretty_version' => 'v1.21.0', + 'version' => '1.21.0.0', + 'reference' => '531fa0871fbde719c51b12afa3a443b8f4e4b425', + 'type' => 'project', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../laravel/pint', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'laravel/prompts' => + array ( + 'pretty_version' => 'v0.3.5', + 'version' => '0.3.5.0', + 'reference' => '57b8f7efe40333cdb925700891c7d7465325d3b1', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../laravel/prompts', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'laravel/serializable-closure' => + array ( + 'pretty_version' => 'v2.0.3', + 'version' => '2.0.3.0', + 'reference' => 'f379c13663245f7aa4512a7869f62eb14095f23f', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../laravel/serializable-closure', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'laravel/tinker' => + array ( + 'pretty_version' => 'v2.10.1', + 'version' => '2.10.1.0', + 'reference' => '22177cc71807d38f2810c6204d8f7183d88a57d3', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../laravel/tinker', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'league/commonmark' => + array ( + 'pretty_version' => '2.6.1', + 'version' => '2.6.1.0', + 'reference' => 'd990688c91cedfb69753ffc2512727ec646df2ad', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../league/commonmark', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'league/config' => + array ( + 'pretty_version' => 'v1.2.0', + 'version' => '1.2.0.0', + 'reference' => '754b3604fb2984c71f4af4a9cbe7b57f346ec1f3', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../league/config', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'league/flysystem' => + array ( + 'pretty_version' => '3.29.1', + 'version' => '3.29.1.0', + 'reference' => 'edc1bb7c86fab0776c3287dbd19b5fa278347319', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../league/flysystem', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'league/flysystem-local' => + array ( + 'pretty_version' => '3.29.0', + 'version' => '3.29.0.0', + 'reference' => 'e0e8d52ce4b2ed154148453d321e97c8e931bd27', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../league/flysystem-local', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'league/mime-type-detection' => + array ( + 'pretty_version' => '1.16.0', + 'version' => '1.16.0.0', + 'reference' => '2d6702ff215bf922936ccc1ad31007edc76451b9', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../league/mime-type-detection', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'league/uri' => + array ( + 'pretty_version' => '7.5.1', + 'version' => '7.5.1.0', + 'reference' => '81fb5145d2644324614cc532b28efd0215bda430', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../league/uri', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'league/uri-interfaces' => + array ( + 'pretty_version' => '7.5.0', + 'version' => '7.5.0.0', + 'reference' => '08cfc6c4f3d811584fb09c37e2849e6a7f9b0742', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../league/uri-interfaces', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'mockery/mockery' => + array ( + 'pretty_version' => '1.6.12', + 'version' => '1.6.12.0', + 'reference' => '1f4efdd7d3beafe9807b08156dfcb176d18f1699', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../mockery/mockery', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'monolog/monolog' => + array ( + 'pretty_version' => '3.8.1', + 'version' => '3.8.1.0', + 'reference' => 'aef6ee73a77a66e404dd6540934a9ef1b3c855b4', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../monolog/monolog', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'mtdowling/cron-expression' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => '^1.0', + ), + ), + 'myclabs/deep-copy' => + array ( + 'pretty_version' => '1.13.0', + 'version' => '1.13.0.0', + 'reference' => '024473a478be9df5fdaca2c793f2232fe788e414', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../myclabs/deep-copy', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'nesbot/carbon' => + array ( + 'pretty_version' => '3.8.6', + 'version' => '3.8.6.0', + 'reference' => 'ff2f20cf83bd4d503720632ce8a426dc747bf7fd', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../nesbot/carbon', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'nette/schema' => + array ( + 'pretty_version' => 'v1.3.2', + 'version' => '1.3.2.0', + 'reference' => 'da801d52f0354f70a638673c4a0f04e16529431d', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../nette/schema', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'nette/utils' => + array ( + 'pretty_version' => 'v4.0.5', + 'version' => '4.0.5.0', + 'reference' => '736c567e257dbe0fcf6ce81b4d6dbe05c6899f96', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../nette/utils', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'nikic/php-parser' => + array ( + 'pretty_version' => 'v5.4.0', + 'version' => '5.4.0.0', + 'reference' => '447a020a1f875a434d62f2a401f53b82a396e494', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../nikic/php-parser', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'nunomaduro/collision' => + array ( + 'pretty_version' => 'v8.6.1', + 'version' => '8.6.1.0', + 'reference' => '86f003c132143d5a2ab214e19933946409e0cae7', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../nunomaduro/collision', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'nunomaduro/termwind' => + array ( + 'pretty_version' => 'v2.3.0', + 'version' => '2.3.0.0', + 'reference' => '52915afe6a1044e8b9cee1bcff836fb63acf9cda', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../nunomaduro/termwind', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'orchestra/canvas' => + array ( + 'pretty_version' => 'v10.0.1', + 'version' => '10.0.1.0', + 'reference' => '8665e96c254350484ded1cdf158765767abc7075', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../orchestra/canvas', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'orchestra/canvas-core' => + array ( + 'pretty_version' => 'v10.0.1', + 'version' => '10.0.1.0', + 'reference' => '22b6515e7a070e1c45c8a3a9819f8b6cb0234173', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../orchestra/canvas-core', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'orchestra/sidekick' => + array ( + 'pretty_version' => 'v1.0.4', + 'version' => '1.0.4.0', + 'reference' => '95e056508a5990480fc9a67cacf1119b58d8d233', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../orchestra/sidekick', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'orchestra/testbench' => + array ( + 'pretty_version' => 'v10.0.0', + 'version' => '10.0.0.0', + 'reference' => 'b10f1dec6253a87961349e92ac1420c9aebfacd0', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../orchestra/testbench', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'orchestra/testbench-core' => + array ( + 'pretty_version' => 'v10.0.2', + 'version' => '10.0.2.0', + 'reference' => '4a412b377ab8c616fc4c239f50bf82e4092b859b', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../orchestra/testbench-core', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'orchestra/workbench' => + array ( + 'pretty_version' => 'v10.0.0', + 'version' => '10.0.0.0', + 'reference' => '93fcc3ec455a12e7468cacbab28179968ac68468', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../orchestra/workbench', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'pestphp/pest' => + array ( + 'pretty_version' => 'v3.7.4', + 'version' => '3.7.4.0', + 'reference' => '4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../pestphp/pest', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'pestphp/pest-plugin' => + array ( + 'pretty_version' => 'v3.0.0', + 'version' => '3.0.0.0', + 'reference' => 'e79b26c65bc11c41093b10150c1341cc5cdbea83', + 'type' => 'composer-plugin', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../pestphp/pest-plugin', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'pestphp/pest-plugin-arch' => + array ( + 'pretty_version' => 'v3.0.0', + 'version' => '3.0.0.0', + 'reference' => '0a27e55a270cfe73d8cb70551b91002ee2cb64b0', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../pestphp/pest-plugin-arch', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'pestphp/pest-plugin-mutate' => + array ( + 'pretty_version' => 'v3.0.5', + 'version' => '3.0.5.0', + 'reference' => 'e10dbdc98c9e2f3890095b4fe2144f63a5717e08', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../pestphp/pest-plugin-mutate', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'phar-io/manifest' => + array ( + 'pretty_version' => '2.0.4', + 'version' => '2.0.4.0', + 'reference' => '54750ef60c58e43759730615a392c31c80e23176', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phar-io/manifest', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'phar-io/version' => + array ( + 'pretty_version' => '3.2.1', + 'version' => '3.2.1.0', + 'reference' => '4f7fd7836c6f332bb2933569e566a0d6c4cbed74', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phar-io/version', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'php-di/invoker' => + array ( + 'pretty_version' => '2.3.6', + 'version' => '2.3.6.0', + 'reference' => '59f15608528d8a8838d69b422a919fd6b16aa576', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../php-di/invoker', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'php-di/php-di' => + array ( + 'pretty_version' => '7.0.8', + 'version' => '7.0.8.0', + 'reference' => '98ddc81f8f768a2ad39e4cbe737285eaeabe577a', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../php-di/php-di', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'phpdocumentor/reflection-common' => + array ( + 'pretty_version' => '2.2.0', + 'version' => '2.2.0.0', + 'reference' => '1d01c49d4ed62f25aa84a747ad35d5a16924662b', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpdocumentor/reflection-common', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'phpdocumentor/reflection-docblock' => + array ( + 'pretty_version' => '5.6.1', + 'version' => '5.6.1.0', + 'reference' => 'e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpdocumentor/reflection-docblock', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'phpdocumentor/type-resolver' => + array ( + 'pretty_version' => '1.10.0', + 'version' => '1.10.0.0', + 'reference' => '679e3ce485b99e84c775d28e2e96fade9a7fb50a', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpdocumentor/type-resolver', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'phpmyadmin/sql-parser' => + array ( + 'pretty_version' => '5.11.0', + 'version' => '5.11.0.0', + 'reference' => '07044bc8c13abd542756c3fd34dc66a5d6dee8e4', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpmyadmin/sql-parser', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'phpoption/phpoption' => + array ( + 'pretty_version' => '1.9.3', + 'version' => '1.9.3.0', + 'reference' => 'e3fac8b24f56113f7cb96af14958c0dd16330f54', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpoption/phpoption', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'phpstan/extension-installer' => + array ( + 'pretty_version' => '1.4.3', + 'version' => '1.4.3.0', + 'reference' => '85e90b3942d06b2326fba0403ec24fe912372936', + 'type' => 'composer-plugin', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpstan/extension-installer', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'phpstan/phpdoc-parser' => + array ( + 'pretty_version' => '2.1.0', + 'version' => '2.1.0.0', + 'reference' => '9b30d6fd026b2c132b3985ce6b23bec09ab3aa68', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpstan/phpdoc-parser', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'phpstan/phpstan' => + array ( + 'pretty_version' => '2.1.6', + 'version' => '2.1.6.0', + 'reference' => '6eaec7c6c9e90dcfe46ad1e1ffa5171e2dab641c', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpstan/phpstan', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'phpstan/phpstan-deprecation-rules' => + array ( + 'pretty_version' => '2.0.1', + 'version' => '2.0.1.0', + 'reference' => '1cc1259cb91ee4cfbb5c39bca9f635f067c910b4', + 'type' => 'phpstan-extension', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpstan/phpstan-deprecation-rules', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'phpstan/phpstan-phpunit' => + array ( + 'pretty_version' => '2.0.4', + 'version' => '2.0.4.0', + 'reference' => 'd09e152f403c843998d7a52b5d87040c937525dd', + 'type' => 'phpstan-extension', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpstan/phpstan-phpunit', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'phpunit/php-code-coverage' => + array ( + 'pretty_version' => '11.0.9', + 'version' => '11.0.9.0', + 'reference' => '14d63fbcca18457e49c6f8bebaa91a87e8e188d7', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpunit/php-code-coverage', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'phpunit/php-file-iterator' => + array ( + 'pretty_version' => '5.1.0', + 'version' => '5.1.0.0', + 'reference' => '118cfaaa8bc5aef3287bf315b6060b1174754af6', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpunit/php-file-iterator', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'phpunit/php-invoker' => + array ( + 'pretty_version' => '5.0.1', + 'version' => '5.0.1.0', + 'reference' => 'c1ca3814734c07492b3d4c5f794f4b0995333da2', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpunit/php-invoker', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'phpunit/php-text-template' => + array ( + 'pretty_version' => '4.0.1', + 'version' => '4.0.1.0', + 'reference' => '3e0404dc6b300e6bf56415467ebcb3fe4f33e964', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpunit/php-text-template', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'phpunit/php-timer' => + array ( + 'pretty_version' => '7.0.1', + 'version' => '7.0.1.0', + 'reference' => '3b415def83fbcb41f991d9ebf16ae4ad8b7837b3', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpunit/php-timer', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'phpunit/phpunit' => + array ( + 'pretty_version' => '11.5.3', + 'version' => '11.5.3.0', + 'reference' => '30e319e578a7b5da3543073e30002bf82042f701', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpunit/phpunit', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'psr/clock' => + array ( + 'pretty_version' => '1.0.0', + 'version' => '1.0.0.0', + 'reference' => 'e41a24703d4560fd0acb709162f73b8adfc3aa0d', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../psr/clock', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'psr/clock-implementation' => + array ( + 'dev_requirement' => false, + 'provided' => + array ( + 0 => '1.0', + ), + ), + 'psr/container' => + array ( + 'pretty_version' => '2.0.2', + 'version' => '2.0.2.0', + 'reference' => 'c71ecc56dfe541dbd90c5360474fbc405f8d5963', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../psr/container', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'psr/container-implementation' => + array ( + 'dev_requirement' => false, + 'provided' => + array ( + 0 => '^1.0', + 1 => '1.1|2.0', + ), + ), + 'psr/event-dispatcher' => + array ( + 'pretty_version' => '1.0.0', + 'version' => '1.0.0.0', + 'reference' => 'dbefd12671e8a14ec7f180cab83036ed26714bb0', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../psr/event-dispatcher', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'psr/event-dispatcher-implementation' => + array ( + 'dev_requirement' => false, + 'provided' => + array ( + 0 => '1.0', + ), + ), + 'psr/http-client' => + array ( + 'pretty_version' => '1.0.3', + 'version' => '1.0.3.0', + 'reference' => 'bb5906edc1c324c9a05aa0873d40117941e5fa90', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../psr/http-client', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'psr/http-client-implementation' => + array ( + 'dev_requirement' => false, + 'provided' => + array ( + 0 => '1.0', + ), + ), + 'psr/http-factory' => + array ( + 'pretty_version' => '1.1.0', + 'version' => '1.1.0.0', + 'reference' => '2b4765fddfe3b508ac62f829e852b1501d3f6e8a', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../psr/http-factory', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'psr/http-factory-implementation' => + array ( + 'dev_requirement' => false, + 'provided' => + array ( + 0 => '1.0', + ), + ), + 'psr/http-message' => + array ( + 'pretty_version' => '2.0', + 'version' => '2.0.0.0', + 'reference' => '402d35bcb92c70c026d1a6a9883f06b2ead23d71', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../psr/http-message', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'psr/http-message-implementation' => + array ( + 'dev_requirement' => false, + 'provided' => + array ( + 0 => '1.0', + ), + ), + 'psr/log' => + array ( + 'pretty_version' => '3.0.2', + 'version' => '3.0.2.0', + 'reference' => 'f16e1d5863e37f8d8c2a01719f5b34baa2b714d3', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../psr/log', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'psr/log-implementation' => + array ( + 'dev_requirement' => false, + 'provided' => + array ( + 0 => '3.0.0', + 1 => '1.0|2.0|3.0', + ), + ), + 'psr/simple-cache' => + array ( + 'pretty_version' => '3.0.0', + 'version' => '3.0.0.0', + 'reference' => '764e0b3939f5ca87cb904f570ef9be2d78a07865', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../psr/simple-cache', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'psr/simple-cache-implementation' => + array ( + 'dev_requirement' => false, + 'provided' => + array ( + 0 => '1.0|2.0|3.0', + ), + ), + 'psy/psysh' => + array ( + 'pretty_version' => 'v0.12.7', + 'version' => '0.12.7.0', + 'reference' => 'd73fa3c74918ef4522bb8a3bf9cab39161c4b57c', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../psy/psysh', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'ralouphie/getallheaders' => + array ( + 'pretty_version' => '3.0.3', + 'version' => '3.0.3.0', + 'reference' => '120b605dfeb996808c31b6477290a714d356e822', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../ralouphie/getallheaders', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'ramsey/collection' => + array ( + 'pretty_version' => '2.0.0', + 'version' => '2.0.0.0', + 'reference' => 'a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../ramsey/collection', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'ramsey/uuid' => + array ( + 'pretty_version' => '4.7.6', + 'version' => '4.7.6.0', + 'reference' => '91039bc1faa45ba123c4328958e620d382ec7088', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../ramsey/uuid', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'rhumsaa/uuid' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => '4.7.6', + ), + ), + 'sebastian/cli-parser' => + array ( + 'pretty_version' => '3.0.2', + 'version' => '3.0.2.0', + 'reference' => '15c5dd40dc4f38794d383bb95465193f5e0ae180', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/cli-parser', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'sebastian/code-unit' => + array ( + 'pretty_version' => '3.0.2', + 'version' => '3.0.2.0', + 'reference' => 'ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/code-unit', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'sebastian/code-unit-reverse-lookup' => + array ( + 'pretty_version' => '4.0.1', + 'version' => '4.0.1.0', + 'reference' => '183a9b2632194febd219bb9246eee421dad8d45e', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/code-unit-reverse-lookup', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'sebastian/comparator' => + array ( + 'pretty_version' => '6.3.0', + 'version' => '6.3.0.0', + 'reference' => 'd4e47a769525c4dd38cea90e5dcd435ddbbc7115', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/comparator', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'sebastian/complexity' => + array ( + 'pretty_version' => '4.0.1', + 'version' => '4.0.1.0', + 'reference' => 'ee41d384ab1906c68852636b6de493846e13e5a0', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/complexity', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'sebastian/diff' => + array ( + 'pretty_version' => '6.0.2', + 'version' => '6.0.2.0', + 'reference' => 'b4ccd857127db5d41a5b676f24b51371d76d8544', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/diff', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'sebastian/environment' => + array ( + 'pretty_version' => '7.2.0', + 'version' => '7.2.0.0', + 'reference' => '855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/environment', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'sebastian/exporter' => + array ( + 'pretty_version' => '6.3.0', + 'version' => '6.3.0.0', + 'reference' => '3473f61172093b2da7de1fb5782e1f24cc036dc3', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/exporter', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'sebastian/global-state' => + array ( + 'pretty_version' => '7.0.2', + 'version' => '7.0.2.0', + 'reference' => '3be331570a721f9a4b5917f4209773de17f747d7', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/global-state', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'sebastian/lines-of-code' => + array ( + 'pretty_version' => '3.0.1', + 'version' => '3.0.1.0', + 'reference' => 'd36ad0d782e5756913e42ad87cb2890f4ffe467a', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/lines-of-code', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'sebastian/object-enumerator' => + array ( + 'pretty_version' => '6.0.1', + 'version' => '6.0.1.0', + 'reference' => 'f5b498e631a74204185071eb41f33f38d64608aa', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/object-enumerator', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'sebastian/object-reflector' => + array ( + 'pretty_version' => '4.0.1', + 'version' => '4.0.1.0', + 'reference' => '6e1a43b411b2ad34146dee7524cb13a068bb35f9', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/object-reflector', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'sebastian/recursion-context' => + array ( + 'pretty_version' => '6.0.2', + 'version' => '6.0.2.0', + 'reference' => '694d156164372abbd149a4b85ccda2e4670c0e16', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/recursion-context', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'sebastian/type' => + array ( + 'pretty_version' => '5.1.0', + 'version' => '5.1.0.0', + 'reference' => '461b9c5da241511a2a0e8f240814fb23ce5c0aac', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/type', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'sebastian/version' => + array ( + 'pretty_version' => '5.0.2', + 'version' => '5.0.2.0', + 'reference' => 'c687e3387b99f5b03b6caa64c74b63e2936ff874', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/version', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'spatie/backtrace' => + array ( + 'pretty_version' => '1.7.1', + 'version' => '1.7.1.0', + 'reference' => '0f2477c520e3729de58e061b8192f161c99f770b', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../spatie/backtrace', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'spatie/laravel-package-tools' => + array ( + 'pretty_version' => '1.19.0', + 'version' => '1.19.0.0', + 'reference' => '1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../spatie/laravel-package-tools', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'spatie/laravel-ray' => + array ( + 'pretty_version' => '1.39.1', + 'version' => '1.39.1.0', + 'reference' => '0d890fa2cd2c0b6175cf54c56b9321d81047571d', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../spatie/laravel-ray', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'spatie/macroable' => + array ( + 'pretty_version' => '2.0.0', + 'version' => '2.0.0.0', + 'reference' => 'ec2c320f932e730607aff8052c44183cf3ecb072', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../spatie/macroable', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'spatie/once' => + array ( + 'dev_requirement' => false, + 'replaced' => + array ( + 0 => '*', + ), + ), + 'spatie/ray' => + array ( + 'pretty_version' => '1.41.5', + 'version' => '1.41.5.0', + 'reference' => '9d078f04ffa32ad543a20716844ec343fdd7d856', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../spatie/ray', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'staabm/side-effects-detector' => + array ( + 'pretty_version' => '1.0.5', + 'version' => '1.0.5.0', + 'reference' => 'd8334211a140ce329c13726d4a715adbddd0a163', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../staabm/side-effects-detector', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'symfony/clock' => + array ( + 'pretty_version' => 'v7.2.0', + 'version' => '7.2.0.0', + 'reference' => 'b81435fbd6648ea425d1ee96a2d8e68f4ceacd24', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/clock', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/console' => + array ( + 'pretty_version' => 'v7.2.1', + 'version' => '7.2.1.0', + 'reference' => 'fefcc18c0f5d0efe3ab3152f15857298868dc2c3', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/console', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/css-selector' => + array ( + 'pretty_version' => 'v7.2.0', + 'version' => '7.2.0.0', + 'reference' => '601a5ce9aaad7bf10797e3663faefce9e26c24e2', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/css-selector', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/deprecation-contracts' => + array ( + 'pretty_version' => 'v3.5.1', + 'version' => '3.5.1.0', + 'reference' => '74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/deprecation-contracts', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/error-handler' => + array ( + 'pretty_version' => 'v7.2.4', + 'version' => '7.2.4.0', + 'reference' => 'aabf79938aa795350c07ce6464dd1985607d95d5', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/error-handler', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/event-dispatcher' => + array ( + 'pretty_version' => 'v7.2.0', + 'version' => '7.2.0.0', + 'reference' => '910c5db85a5356d0fea57680defec4e99eb9c8c1', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/event-dispatcher', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/event-dispatcher-contracts' => + array ( + 'pretty_version' => 'v3.5.1', + 'version' => '3.5.1.0', + 'reference' => '7642f5e970b672283b7823222ae8ef8bbc160b9f', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/event-dispatcher-contracts', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/event-dispatcher-implementation' => + array ( + 'dev_requirement' => false, + 'provided' => + array ( + 0 => '2.0|3.0', + ), + ), + 'symfony/finder' => + array ( + 'pretty_version' => 'v7.2.2', + 'version' => '7.2.2.0', + 'reference' => '87a71856f2f56e4100373e92529eed3171695cfb', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/finder', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/http-foundation' => + array ( + 'pretty_version' => 'v7.2.3', + 'version' => '7.2.3.0', + 'reference' => 'ee1b504b8926198be89d05e5b6fc4c3810c090f0', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/http-foundation', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/http-kernel' => + array ( + 'pretty_version' => 'v7.2.4', + 'version' => '7.2.4.0', + 'reference' => '9f1103734c5789798fefb90e91de4586039003ed', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/http-kernel', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/mailer' => + array ( + 'pretty_version' => 'v7.2.3', + 'version' => '7.2.3.0', + 'reference' => 'f3871b182c44997cf039f3b462af4a48fb85f9d3', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/mailer', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/mime' => + array ( + 'pretty_version' => 'v7.2.4', + 'version' => '7.2.4.0', + 'reference' => '87ca22046b78c3feaff04b337f33b38510fd686b', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/mime', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/polyfill-ctype' => + array ( + 'pretty_version' => 'v1.31.0', + 'version' => '1.31.0.0', + 'reference' => 'a3cc8b044a6ea513310cbd48ef7333b384945638', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-ctype', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/polyfill-iconv' => + array ( + 'pretty_version' => 'v1.31.0', + 'version' => '1.31.0.0', + 'reference' => '48becf00c920479ca2e910c22a5a39e5d47ca956', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-iconv', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'symfony/polyfill-intl-grapheme' => + array ( + 'pretty_version' => 'v1.31.0', + 'version' => '1.31.0.0', + 'reference' => 'b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-intl-grapheme', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/polyfill-intl-idn' => + array ( + 'pretty_version' => 'v1.31.0', + 'version' => '1.31.0.0', + 'reference' => 'c36586dcf89a12315939e00ec9b4474adcb1d773', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-intl-idn', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/polyfill-intl-normalizer' => + array ( + 'pretty_version' => 'v1.31.0', + 'version' => '1.31.0.0', + 'reference' => '3833d7255cc303546435cb650316bff708a1c75c', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-intl-normalizer', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/polyfill-mbstring' => + array ( + 'pretty_version' => 'v1.31.0', + 'version' => '1.31.0.0', + 'reference' => '85181ba99b2345b0ef10ce42ecac37612d9fd341', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-mbstring', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/polyfill-php80' => + array ( + 'pretty_version' => 'v1.31.0', + 'version' => '1.31.0.0', + 'reference' => '60328e362d4c2c802a54fcbf04f9d3fb892b4cf8', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-php80', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/polyfill-php83' => + array ( + 'pretty_version' => 'v1.31.0', + 'version' => '1.31.0.0', + 'reference' => '2fb86d65e2d424369ad2905e83b236a8805ba491', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-php83', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/polyfill-php84' => + array ( + 'pretty_version' => 'v1.31.0', + 'version' => '1.31.0.0', + 'reference' => 'e5493eb51311ab0b1cc2243416613f06ed8f18bd', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-php84', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'symfony/polyfill-uuid' => + array ( + 'pretty_version' => 'v1.31.0', + 'version' => '1.31.0.0', + 'reference' => '21533be36c24be3f4b1669c4725c7d1d2bab4ae2', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-uuid', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/process' => + array ( + 'pretty_version' => 'v7.2.4', + 'version' => '7.2.4.0', + 'reference' => 'd8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/process', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/routing' => + array ( + 'pretty_version' => 'v7.2.3', + 'version' => '7.2.3.0', + 'reference' => 'ee9a67edc6baa33e5fae662f94f91fd262930996', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/routing', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/service-contracts' => + array ( + 'pretty_version' => 'v3.5.1', + 'version' => '3.5.1.0', + 'reference' => 'e53260aabf78fb3d63f8d79d69ece59f80d5eda0', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/service-contracts', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/stopwatch' => + array ( + 'pretty_version' => 'v7.2.4', + 'version' => '7.2.4.0', + 'reference' => '5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/stopwatch', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'symfony/string' => + array ( + 'pretty_version' => 'v7.2.0', + 'version' => '7.2.0.0', + 'reference' => '446e0d146f991dde3e73f45f2c97a9faad773c82', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/string', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/translation' => + array ( + 'pretty_version' => 'v7.2.4', + 'version' => '7.2.4.0', + 'reference' => '283856e6981286cc0d800b53bd5703e8e363f05a', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/translation', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/translation-contracts' => + array ( + 'pretty_version' => 'v3.5.1', + 'version' => '3.5.1.0', + 'reference' => '4667ff3bd513750603a09c8dedbea942487fb07c', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/translation-contracts', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/translation-implementation' => + array ( + 'dev_requirement' => false, + 'provided' => + array ( + 0 => '2.3|3.0', + ), + ), + 'symfony/uid' => + array ( + 'pretty_version' => 'v7.2.0', + 'version' => '7.2.0.0', + 'reference' => '2d294d0c48df244c71c105a169d0190bfb080426', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/uid', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/var-dumper' => + array ( + 'pretty_version' => 'v7.2.3', + 'version' => '7.2.3.0', + 'reference' => '82b478c69745d8878eb60f9a049a4d584996f73a', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/var-dumper', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'symfony/yaml' => + array ( + 'pretty_version' => 'v7.2.3', + 'version' => '7.2.3.0', + 'reference' => 'ac238f173df0c9c1120f862d0f599e17535a87ec', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/yaml', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'ta-tikoma/phpunit-architecture-test' => + array ( + 'pretty_version' => '0.8.4', + 'version' => '0.8.4.0', + 'reference' => '89f0dea1cb0f0d5744d3ec1764a286af5e006636', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../ta-tikoma/phpunit-architecture-test', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'theseer/tokenizer' => + array ( + 'pretty_version' => '1.2.3', + 'version' => '1.2.3.0', + 'reference' => '737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../theseer/tokenizer', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'tijsverkoyen/css-to-inline-styles' => + array ( + 'pretty_version' => 'v2.3.0', + 'version' => '2.3.0.0', + 'reference' => '0d72ac1c00084279c1816675284073c5a337c20d', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../tijsverkoyen/css-to-inline-styles', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'vlucas/phpdotenv' => + array ( + 'pretty_version' => 'v5.6.1', + 'version' => '5.6.1.0', + 'reference' => 'a59a13791077fe3d44f90e7133eb68e7d22eaff2', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../vlucas/phpdotenv', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'voku/portable-ascii' => + array ( + 'pretty_version' => '2.0.3', + 'version' => '2.0.3.0', + 'reference' => 'b1d923f88091c6bf09699efcd7c8a1b1bfd7351d', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../voku/portable-ascii', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'webmozart/assert' => + array ( + 'pretty_version' => '1.11.0', + 'version' => '1.11.0.0', + 'reference' => '11cb2199493b2f8a3b53e7f19068fc6aac760991', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../webmozart/assert', + 'aliases' => + array ( + ), + 'dev_requirement' => false, + ), + 'zbateson/mail-mime-parser' => + array ( + 'pretty_version' => '3.0.3', + 'version' => '3.0.3.0', + 'reference' => 'e0d4423fe27850c9dd301190767dbc421acc2f19', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../zbateson/mail-mime-parser', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'zbateson/mb-wrapper' => + array ( + 'pretty_version' => '2.0.1', + 'version' => '2.0.1.0', + 'reference' => '50a14c0c9537f978a61cde9fdc192a0267cc9cff', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../zbateson/mb-wrapper', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + 'zbateson/stream-decorators' => + array ( + 'pretty_version' => '2.1.1', + 'version' => '2.1.1.0', + 'reference' => '32a2a62fb0f26313395c996ebd658d33c3f9c4e5', + 'type' => 'library', + 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../zbateson/stream-decorators', + 'aliases' => + array ( + ), + 'dev_requirement' => true, + ), + ), + ), + ), + 'executedFilesHashes' => + array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/bootstrap.php' => '28392079817075879815f110287690e80398fe5e', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/Attribute.php' => 'eaf9127f074e9c7ebc65043ec4050f9fed60c2bb', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionAttribute.php' => '0b4b78277eb6545955d2ce5e09bff28f1f8052c8', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionIntersectionType.php' => 'a3e6299b87ee5d407dae7651758edfa11a74cb11', + 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionUnionType.php' => '1b349aa997a834faeafe05fa21bc31cae22bf2e2', + ), + 'phpExtensions' => + array ( + 0 => 'Core', + 1 => 'FFI', + 2 => 'PDO', + 3 => 'PDO_ODBC', + 4 => 'Phar', + 5 => 'Reflection', + 6 => 'SPL', + 7 => 'SimpleXML', + 8 => 'bcmath', + 9 => 'bz2', + 10 => 'calendar', + 11 => 'ctype', + 12 => 'curl', + 13 => 'date', + 14 => 'dba', + 15 => 'dom', + 16 => 'exif', + 17 => 'fileinfo', + 18 => 'filter', + 19 => 'ftp', + 20 => 'gd', + 21 => 'gettext', + 22 => 'gmp', + 23 => 'hash', + 24 => 'iconv', + 25 => 'imagick', + 26 => 'intl', + 27 => 'json', + 28 => 'ldap', + 29 => 'libxml', + 30 => 'mbstring', + 31 => 'mysqli', + 32 => 'mysqlnd', + 33 => 'odbc', + 34 => 'openssl', + 35 => 'pcntl', + 36 => 'pcre', + 37 => 'pdo_dblib', + 38 => 'pdo_mysql', + 39 => 'pdo_pgsql', + 40 => 'pdo_sqlite', + 41 => 'pgsql', + 42 => 'posix', + 43 => 'pspell', + 44 => 'random', + 45 => 'readline', + 46 => 'redis', + 47 => 'session', + 48 => 'shmop', + 49 => 'soap', + 50 => 'sockets', + 51 => 'sodium', + 52 => 'sqlite3', + 53 => 'standard', + 54 => 'sysvmsg', + 55 => 'sysvsem', + 56 => 'sysvshm', + 57 => 'tidy', + 58 => 'tokenizer', + 59 => 'xml', + 60 => 'xmlreader', + 61 => 'xmlwriter', + 62 => 'xsl', + 63 => 'zip', + 64 => 'zlib', + ), + 'stubFiles' => + array ( + ), + 'level' => '5', +), + 'projectExtensionFiles' => array ( +), + 'errorsCallback' => static function (): array { return array ( +); }, + 'locallyIgnoredErrorsCallback' => static function (): array { return array ( +); }, + 'linesToIgnore' => array ( +), + 'unmatchedLineIgnores' => array ( +), + 'collectedDataCallback' => static function (): array { return array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Carrier.php' => + array ( + 0 => + \PHPStan\Collectors\CollectedData::__set_state(array( + 'data' => 'CodebarAg\\TwilioVerify\\DTO\\Carrier', + 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Carrier.php', + 'collectorType' => 'PHPStan\\Rules\\DeadCode\\ConstructorWithoutImpurePointsCollector', + )), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Lookup.php' => + array ( + 0 => + \PHPStan\Collectors\CollectedData::__set_state(array( + 'data' => 'CodebarAg\\TwilioVerify\\DTO\\Lookup', + 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Lookup.php', + 'collectorType' => 'PHPStan\\Rules\\DeadCode\\ConstructorWithoutImpurePointsCollector', + )), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/SendCodeAttempt.php' => + array ( + 0 => + \PHPStan\Collectors\CollectedData::__set_state(array( + 'data' => 'CodebarAg\\TwilioVerify\\DTO\\SendCodeAttempt', + 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/SendCodeAttempt.php', + 'collectorType' => 'PHPStan\\Rules\\DeadCode\\ConstructorWithoutImpurePointsCollector', + )), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationCheck.php' => + array ( + 0 => + \PHPStan\Collectors\CollectedData::__set_state(array( + 'data' => 'CodebarAg\\TwilioVerify\\DTO\\VerificationCheck', + 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationCheck.php', + 'collectorType' => 'PHPStan\\Rules\\DeadCode\\ConstructorWithoutImpurePointsCollector', + )), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationStart.php' => + array ( + 0 => + \PHPStan\Collectors\CollectedData::__set_state(array( + 'data' => 'CodebarAg\\TwilioVerify\\DTO\\VerificationStart', + 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationStart.php', + 'collectorType' => 'PHPStan\\Rules\\DeadCode\\ConstructorWithoutImpurePointsCollector', + )), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Events/TwilioVerifyResponseLog.php' => + array ( + 0 => + \PHPStan\Collectors\CollectedData::__set_state(array( + 'data' => + array ( + 0 => 'Illuminate\\Foundation\\Events\\Dispatchable', + ), + 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Events/TwilioVerifyResponseLog.php', + 'collectorType' => 'PHPStan\\Rules\\Traits\\TraitUseCollector', + )), + 1 => + \PHPStan\Collectors\CollectedData::__set_state(array( + 'data' => + array ( + 0 => 'Illuminate\\Broadcasting\\InteractsWithSockets', + ), + 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Events/TwilioVerifyResponseLog.php', + 'collectorType' => 'PHPStan\\Rules\\Traits\\TraitUseCollector', + )), + 2 => + \PHPStan\Collectors\CollectedData::__set_state(array( + 'data' => + array ( + 0 => 'Illuminate\\Queue\\SerializesModels', + ), + 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Events/TwilioVerifyResponseLog.php', + 'collectorType' => 'PHPStan\\Rules\\Traits\\TraitUseCollector', + )), + 3 => + \PHPStan\Collectors\CollectedData::__set_state(array( + 'data' => 'CodebarAg\\TwilioVerify\\Events\\TwilioVerifyResponseLog', + 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Events/TwilioVerifyResponseLog.php', + 'collectorType' => 'PHPStan\\Rules\\DeadCode\\ConstructorWithoutImpurePointsCollector', + )), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Facades/TwilioVerify.php' => + array ( + 0 => + \PHPStan\Collectors\CollectedData::__set_state(array( + 'data' => + array ( + 0 => 'CodebarAg\\TwilioVerify\\Facades\\TwilioVerify', + 1 => 'getFacadeAccessor', + 2 => 'CodebarAg\\TwilioVerify\\Facades\\TwilioVerify', + ), + 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Facades/TwilioVerify.php', + 'collectorType' => 'PHPStan\\Rules\\DeadCode\\MethodWithoutImpurePointsCollector', + )), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php' => + array ( + 0 => + \PHPStan\Collectors\CollectedData::__set_state(array( + 'data' => + array ( + 0 => 'event', + 1 => 28, + ), + 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php', + 'collectorType' => 'PHPStan\\Rules\\DeadCode\\PossiblyPureFuncCallCollector', + )), + 1 => + \PHPStan\Collectors\CollectedData::__set_state(array( + 'data' => + array ( + 0 => 'event', + 1 => 51, + ), + 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php', + 'collectorType' => 'PHPStan\\Rules\\DeadCode\\PossiblyPureFuncCallCollector', + )), + ), +); }, + 'dependencies' => array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/config/twilio_verify.php' => + array ( + 'fileHash' => 'a8f5ea7aad80874a9906da3b90cfb199a560f422', + 'dependentFiles' => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Carrier.php' => + array ( + 'fileHash' => '7da5ffd7840bc0b774fc4a59e4e73b5052c0be0a', + 'dependentFiles' => + array ( + 0 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Lookup.php', + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Lookup.php' => + array ( + 'fileHash' => '663d718349590d62d061ff06d74b2bc3386eb400', + 'dependentFiles' => + array ( + 0 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationStart.php', + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/SendCodeAttempt.php' => + array ( + 'fileHash' => '817192ee4c53c98ee66b95fa7a93ce36ce60da61', + 'dependentFiles' => + array ( + 0 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationStart.php', + 1 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php', + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationCheck.php' => + array ( + 'fileHash' => '7693b0519141ae6da87c38cdda24993a049620b9', + 'dependentFiles' => + array ( + 0 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Facades/TwilioVerify.php', + 1 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php', + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationStart.php' => + array ( + 'fileHash' => '9b19f716cf38d10f62ca384113123ed4e1c7761e', + 'dependentFiles' => + array ( + 0 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Facades/TwilioVerify.php', + 1 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php', + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Events/TwilioVerifyResponseLog.php' => + array ( + 'fileHash' => '63889fe332ad4f651fb52fa89071509a626381d6', + 'dependentFiles' => + array ( + 0 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php', + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Facades/TwilioVerify.php' => + array ( + 'fileHash' => '2d1f9c680b5984fd5d334c97f4c6f2f44de5b30c', + 'dependentFiles' => + array ( + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php' => + array ( + 'fileHash' => '96189db70fabdfc22c267a88f53770945bad83f8', + 'dependentFiles' => + array ( + 0 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Facades/TwilioVerify.php', + ), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerifyServiceProvider.php' => + array ( + 'fileHash' => '799286f4dc4761543a7b839ca514b05b8dc7da2d', + 'dependentFiles' => + array ( + ), + ), +), + 'exportedNodesCallback' => static function (): array { return array ( + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Carrier.php' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'CodebarAg\\TwilioVerify\\DTO\\Carrier', + 'phpDoc' => + \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @phpstan-consistent-constructor + */', + 'namespace' => 'CodebarAg\\TwilioVerify\\DTO', + 'uses' => + array ( + 'arr' => 'Illuminate\\Support\\Arr', + ), + 'constUses' => + array ( + ), + )), + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + 'statements' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'fromJson', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => true, + 'returnType' => 'self', + 'parameters' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'data', + 'type' => 'array', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + 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' => 'error_code', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 1 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'name', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 2 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'mobile_country_code', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 3 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'mobile_network_code', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 4 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'type', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + 2 => + \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'fake', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => true, + 'returnType' => 'self', + 'parameters' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'error_code', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 1 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'name', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 2 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'mobile_country_code', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 3 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'mobile_network_code', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 4 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'type', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Lookup.php' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'CodebarAg\\TwilioVerify\\DTO\\Lookup', + 'phpDoc' => + \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @phpstan-consistent-constructor + */', + 'namespace' => 'CodebarAg\\TwilioVerify\\DTO', + 'uses' => + array ( + 'arr' => 'Illuminate\\Support\\Arr', + ), + 'constUses' => + array ( + ), + )), + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + 'statements' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'fromJson', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => true, + 'returnType' => '?self', + 'parameters' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'lookup', + 'type' => 'array', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + 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' => 'carrier', + 'type' => 'CodebarAg\\TwilioVerify\\DTO\\Carrier', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + 2 => + \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'fake', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => true, + 'returnType' => 'self', + 'parameters' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'carrier', + 'type' => '?CodebarAg\\TwilioVerify\\DTO\\Carrier', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/SendCodeAttempt.php' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'CodebarAg\\TwilioVerify\\DTO\\SendCodeAttempt', + 'phpDoc' => + \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @phpstan-consistent-constructor + */', + 'namespace' => 'CodebarAg\\TwilioVerify\\DTO', + 'uses' => + array ( + 'carbon' => 'Carbon\\Carbon', + 'arr' => 'Illuminate\\Support\\Arr', + 'collection' => 'Illuminate\\Support\\Collection', + 'str' => 'Illuminate\\Support\\Str', + ), + 'constUses' => + array ( + ), + )), + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + 'statements' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'fromJson', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => true, + 'returnType' => 'Illuminate\\Support\\Collection', + 'parameters' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'attempts', + 'type' => 'array', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + 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' => 'time', + 'type' => 'Carbon\\Carbon', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 1 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'channel', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 2 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'attempt_sid', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + 2 => + \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'fake', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => true, + 'returnType' => 'self', + 'parameters' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'time', + 'type' => '?Carbon\\Carbon', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 1 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'channel', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 2 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'attempt_sid', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationCheck.php' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'CodebarAg\\TwilioVerify\\DTO\\VerificationCheck', + 'phpDoc' => + \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @phpstan-consistent-constructor + */', + 'namespace' => 'CodebarAg\\TwilioVerify\\DTO', + 'uses' => + array ( + 'carbon' => 'Carbon\\Carbon', + 'arr' => 'Illuminate\\Support\\Arr', + 'str' => 'Illuminate\\Support\\Str', + ), + 'constUses' => + array ( + ), + )), + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + 'statements' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'fromJson', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => true, + 'returnType' => 'self', + 'parameters' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'data', + 'type' => 'array', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + 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' => 'sid', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 1 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'service_sid', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 2 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'account_sid', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 3 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'to', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 4 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'channel', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 5 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'status', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 6 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'valid', + 'type' => 'bool', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 7 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'created_at', + 'type' => 'Carbon\\Carbon', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 8 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'updated_at', + 'type' => 'Carbon\\Carbon', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + 2 => + \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'fake', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => true, + 'returnType' => 'self', + 'parameters' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'sid', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 1 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'service_sid', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 2 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'account_sid', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 3 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'to', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 4 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'channel', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 5 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'status', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 6 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'valid', + 'type' => '?bool', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 7 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'created_at', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 8 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'updated_at', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationStart.php' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'CodebarAg\\TwilioVerify\\DTO\\VerificationStart', + 'phpDoc' => + \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @phpstan-consistent-constructor + * @property Collection|SendCodeAttempt[] $send_code_attempts + */', + 'namespace' => 'CodebarAg\\TwilioVerify\\DTO', + 'uses' => + array ( + 'carbon' => 'Carbon\\Carbon', + 'arr' => 'Illuminate\\Support\\Arr', + 'collection' => 'Illuminate\\Support\\Collection', + 'str' => 'Illuminate\\Support\\Str', + ), + 'constUses' => + array ( + ), + )), + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + 'statements' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'fromJson', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => true, + 'returnType' => 'self', + 'parameters' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'data', + 'type' => 'array', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + 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' => 'sid', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 1 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'service_sid', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 2 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'account_sid', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 3 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'to', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 4 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'channel', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 5 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'status', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 6 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'valid', + 'type' => 'bool', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 7 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'created_at', + 'type' => 'Carbon\\Carbon', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 8 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'updated_at', + 'type' => 'Carbon\\Carbon', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 9 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'lookup', + 'type' => '?CodebarAg\\TwilioVerify\\DTO\\Lookup', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 10 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'send_code_attempts', + 'type' => 'Illuminate\\Support\\Collection', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 11 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'url', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + 2 => + \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'fake', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => true, + 'returnType' => 'self', + 'parameters' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'sid', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 1 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'service_sid', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 2 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'account_sid', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 3 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'to', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 4 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'channel', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 5 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'status', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 6 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'valid', + 'type' => '?bool', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 7 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'created_at', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 8 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'updated_at', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 9 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'lookup', + 'type' => '?CodebarAg\\TwilioVerify\\DTO\\Lookup', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 10 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'send_code_attempts', + 'type' => '?Illuminate\\Support\\Collection', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + 11 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'url', + 'type' => '?string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Events/TwilioVerifyResponseLog.php' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'CodebarAg\\TwilioVerify\\Events\\TwilioVerifyResponseLog', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + ), + 'usedTraits' => + array ( + 0 => 'Illuminate\\Foundation\\Events\\Dispatchable', + 1 => 'Illuminate\\Broadcasting\\InteractsWithSockets', + 2 => 'Illuminate\\Queue\\SerializesModels', + ), + 'traitUseAdaptations' => + array ( + ), + 'statements' => + array ( + 0 => + \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' => 'response', + 'type' => 'Illuminate\\Http\\Client\\Response', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Facades/TwilioVerify.php' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'CodebarAg\\TwilioVerify\\Facades\\TwilioVerify', + 'phpDoc' => + \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( + 'phpDocString' => '/** + * @method static VerificationStart start(string $to) + * @method static VerificationCheck check(string $to, string $code) + * + * @see \\CodebarAg\\TwilioVerify\\TwilioVerify + */', + 'namespace' => 'CodebarAg\\TwilioVerify\\Facades', + 'uses' => + array ( + 'verificationcheck' => 'CodebarAg\\TwilioVerify\\DTO\\VerificationCheck', + 'verificationstart' => 'CodebarAg\\TwilioVerify\\DTO\\VerificationStart', + 'facade' => 'Illuminate\\Support\\Facades\\Facade', + ), + 'constUses' => + array ( + ), + )), + 'abstract' => false, + 'final' => false, + 'extends' => 'Illuminate\\Support\\Facades\\Facade', + 'implements' => + array ( + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + 'statements' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'getFacadeAccessor', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => false, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => true, + 'returnType' => 'string', + 'parameters' => + array ( + ), + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'CodebarAg\\TwilioVerify\\TwilioVerify', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => NULL, + 'implements' => + array ( + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + 'statements' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'start', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'CodebarAg\\TwilioVerify\\DTO\\VerificationStart', + 'parameters' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'to', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 1 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'channel', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => true, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + 1 => + \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'check', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'CodebarAg\\TwilioVerify\\DTO\\VerificationCheck', + 'parameters' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'to', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + 1 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'code', + 'type' => 'string', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + ), + '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerifyServiceProvider.php' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( + 'name' => 'CodebarAg\\TwilioVerify\\TwilioVerifyServiceProvider', + 'phpDoc' => NULL, + 'abstract' => false, + 'final' => false, + 'extends' => 'Spatie\\LaravelPackageTools\\PackageServiceProvider', + 'implements' => + array ( + ), + 'usedTraits' => + array ( + ), + 'traitUseAdaptations' => + array ( + ), + 'statements' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( + 'name' => 'configurePackage', + 'phpDoc' => NULL, + 'byRef' => false, + 'public' => true, + 'private' => false, + 'abstract' => false, + 'final' => false, + 'static' => false, + 'returnType' => 'void', + 'parameters' => + array ( + 0 => + \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( + 'name' => 'package', + 'type' => 'Spatie\\LaravelPackageTools\\Package', + 'byRef' => false, + 'variadic' => false, + 'hasDefault' => false, + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + ), + 'attributes' => + array ( + ), + )), + ), +); }, +]; diff --git a/src/DTO/Carrier.php b/src/DTO/Carrier.php index 2b64c03..50fe17a 100644 --- a/src/DTO/Carrier.php +++ b/src/DTO/Carrier.php @@ -4,6 +4,9 @@ use Illuminate\Support\Arr; +/** + * @phpstan-consistent-constructor + */ class Carrier { public static function fromJson(array $data): self diff --git a/src/DTO/Lookup.php b/src/DTO/Lookup.php index b085ca7..927fbd2 100644 --- a/src/DTO/Lookup.php +++ b/src/DTO/Lookup.php @@ -4,6 +4,9 @@ use Illuminate\Support\Arr; +/** + * @phpstan-consistent-constructor + */ class Lookup { public static function fromJson(array $lookup): ?self diff --git a/src/DTO/SendCodeAttempt.php b/src/DTO/SendCodeAttempt.php index 2690a5d..eeaaa13 100644 --- a/src/DTO/SendCodeAttempt.php +++ b/src/DTO/SendCodeAttempt.php @@ -7,6 +7,9 @@ use Illuminate\Support\Collection; use Illuminate\Support\Str; +/** + * @phpstan-consistent-constructor + */ class SendCodeAttempt { public static function fromJson(array $attempts): Collection diff --git a/src/DTO/VerificationCheck.php b/src/DTO/VerificationCheck.php index d97ac48..47f6115 100644 --- a/src/DTO/VerificationCheck.php +++ b/src/DTO/VerificationCheck.php @@ -6,6 +6,9 @@ use Illuminate\Support\Arr; use Illuminate\Support\Str; +/** + * @phpstan-consistent-constructor + */ class VerificationCheck { public static function fromJson(array $data): self diff --git a/src/DTO/VerificationStart.php b/src/DTO/VerificationStart.php index d762984..1aff3bc 100644 --- a/src/DTO/VerificationStart.php +++ b/src/DTO/VerificationStart.php @@ -8,6 +8,8 @@ use Illuminate\Support\Str; /** + * @phpstan-consistent-constructor + * * @property Collection|SendCodeAttempt[] $send_code_attempts */ class VerificationStart From ba6c0baeee336306fbdb6feb01e20234f847e122 Mon Sep 17 00:00:00 2001 From: Rhys Lees <43909932+RhysLees@users.noreply.github.com> Date: Thu, 27 Feb 2025 16:09:29 +0000 Subject: [PATCH 10/11] WIP --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 4ad394e..91b23b2 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ testbench.yaml vendor node_modules .phpactor.json +build From 5183b3889c636f0377273ee525db84936c4085ec Mon Sep 17 00:00:00 2001 From: Rhys Lees <43909932+RhysLees@users.noreply.github.com> Date: Thu, 27 Feb 2025 16:09:38 +0000 Subject: [PATCH 11/11] fixed untracked files --- ...65d6d2e2624e292aec9adcce89b24d99966379.php | 288 - ...469e39ff613cc46739e4f4b8a64fdd549fc0c6.php | 1419 -- ...01be55607081c10d7af73a3ca72a58e9681328.php | 132 - ...4b85b32bd37f3981e57c0d38866dc31ca65a05.php | 24 - ...1e106cd61310448624f0d8befed9daade6f051.php | 1602 -- ...24d829a91e793e9dfde9a72a1495f5c87a1770.php | 28 - ...e19bc71f3867ee7c4eb2c9fc2adf1a249bb080.php | 260 - ...0d87dd02dee5a170322f7126827cc830ffb674.php | 164 - ...7e1a2bbf979b2bcce48b710df4522487bdb71d.php | 106 - ...cfb0e52ab56e79b0cc84a8c34dd2fce9305585.php | 22 - ...43bcb54a2a84c6cb812a7bf78fc212b6bb9b96.php | 120 - ...4f1d5b5de228c969a5f59ae27f4c8618ada4ed.php | 145 - ...af6a97372b42bc88398afdadbfa84cb31d2592.php | 154 - ...39a2491b73c999e4428ad8f42774bd706e8563.php | 27 - ...60e8ebac70223ee4fc1afa54484297f3327f43.php | 60 - ...c93509bed6d8a6b0d49b45753619d3f899cbe5.php | 70 - ...335fdf6ec7ec7dc6f397cfeaa3b474122be1ea.php | 23 - ...da7f716177026b79ab4149c9fc4e9a79b136aa.php | 315 - ...a1fa3b4156ce369a2fd146a9dc25f914a32e26.php | 874 - ...b79638cf7a7e2a79c39a16100dc9c8f6c789aa.php | 17309 ---------------- ...a40994bab1ce5efea436d89f9ce568b53ecfe6.php | 283 - ...14f3d3b3e606f04b1918b7e196a0be3465009d.php | 100 - ...0a030abadecf5c5fa70574719fa1a9e445819b.php | 81 - ...a65a90404c0b8255b5d5ea24facd09461b9c65.php | 60 - ...ef67a94513bfca8b8d3367ec2281a467d31aa0.php | 155 - ...e02cf2732c9617965041b7a99ee064bc826cd0.php | 80 - ...b49cadb80a008d8cb2c27752c1a42874937f1d.php | 36 - build/phpstan/cache/PHPStan/cache-cleared | 1 - ...78ea1a722f55fbdf8cc3074755796931e58d2c.php | 24 - ...4941c9b51578194f0b34346537775aadaabad9.php | 68 - ...8c0db4ba2dd8fead2765782b3dc89efa80174d.php | 431 - ...77435bc038aa32a919661780f5e0dc748fb2f3.php | 24 - ...faba961ca84af4300b2bdad07f065a411b1674.php | 31 - ...d3da1e3370f2b6dcebda97974db0b1f154bfaa.php | 847 - ...7de80fa24c2edaa97ba02101dab3b0095e07d3.php | 362 - .../Container_c5db45e753.php | 8669 -------- .../Container_c5db45e753.php.lock | 0 .../Container_c5db45e753.php.meta | 1 - .../nette.configurator/container.journal | 1 - build/phpstan/resultCache.php | 3977 ---- build/report.junit.xml | 21 - 41 files changed, 38394 deletions(-) delete mode 100644 build/phpstan/cache/PHPStan/08/65/0865d6d2e2624e292aec9adcce89b24d99966379.php delete mode 100644 build/phpstan/cache/PHPStan/0e/46/0e469e39ff613cc46739e4f4b8a64fdd549fc0c6.php delete mode 100644 build/phpstan/cache/PHPStan/13/01/1301be55607081c10d7af73a3ca72a58e9681328.php delete mode 100644 build/phpstan/cache/PHPStan/20/4b/204b85b32bd37f3981e57c0d38866dc31ca65a05.php delete mode 100644 build/phpstan/cache/PHPStan/21/1e/211e106cd61310448624f0d8befed9daade6f051.php delete mode 100644 build/phpstan/cache/PHPStan/22/24/2224d829a91e793e9dfde9a72a1495f5c87a1770.php delete mode 100644 build/phpstan/cache/PHPStan/29/e1/29e19bc71f3867ee7c4eb2c9fc2adf1a249bb080.php delete mode 100644 build/phpstan/cache/PHPStan/2a/0d/2a0d87dd02dee5a170322f7126827cc830ffb674.php delete mode 100644 build/phpstan/cache/PHPStan/39/7e/397e1a2bbf979b2bcce48b710df4522487bdb71d.php delete mode 100644 build/phpstan/cache/PHPStan/3b/cf/3bcfb0e52ab56e79b0cc84a8c34dd2fce9305585.php delete mode 100644 build/phpstan/cache/PHPStan/49/43/4943bcb54a2a84c6cb812a7bf78fc212b6bb9b96.php delete mode 100644 build/phpstan/cache/PHPStan/59/4f/594f1d5b5de228c969a5f59ae27f4c8618ada4ed.php delete mode 100644 build/phpstan/cache/PHPStan/5a/af/5aaf6a97372b42bc88398afdadbfa84cb31d2592.php delete mode 100644 build/phpstan/cache/PHPStan/5b/39/5b39a2491b73c999e4428ad8f42774bd706e8563.php delete mode 100644 build/phpstan/cache/PHPStan/5c/60/5c60e8ebac70223ee4fc1afa54484297f3327f43.php delete mode 100644 build/phpstan/cache/PHPStan/65/c9/65c93509bed6d8a6b0d49b45753619d3f899cbe5.php delete mode 100644 build/phpstan/cache/PHPStan/77/33/77335fdf6ec7ec7dc6f397cfeaa3b474122be1ea.php delete mode 100644 build/phpstan/cache/PHPStan/7e/da/7eda7f716177026b79ab4149c9fc4e9a79b136aa.php delete mode 100644 build/phpstan/cache/PHPStan/81/a1/81a1fa3b4156ce369a2fd146a9dc25f914a32e26.php delete mode 100644 build/phpstan/cache/PHPStan/81/b7/81b79638cf7a7e2a79c39a16100dc9c8f6c789aa.php delete mode 100644 build/phpstan/cache/PHPStan/84/a4/84a40994bab1ce5efea436d89f9ce568b53ecfe6.php delete mode 100644 build/phpstan/cache/PHPStan/8a/14/8a14f3d3b3e606f04b1918b7e196a0be3465009d.php delete mode 100644 build/phpstan/cache/PHPStan/91/0a/910a030abadecf5c5fa70574719fa1a9e445819b.php delete mode 100644 build/phpstan/cache/PHPStan/93/a6/93a65a90404c0b8255b5d5ea24facd09461b9c65.php delete mode 100644 build/phpstan/cache/PHPStan/a5/ef/a5ef67a94513bfca8b8d3367ec2281a467d31aa0.php delete mode 100644 build/phpstan/cache/PHPStan/b2/e0/b2e02cf2732c9617965041b7a99ee064bc826cd0.php delete mode 100644 build/phpstan/cache/PHPStan/c1/b4/c1b49cadb80a008d8cb2c27752c1a42874937f1d.php delete mode 100644 build/phpstan/cache/PHPStan/cache-cleared delete mode 100644 build/phpstan/cache/PHPStan/cd/78/cd78ea1a722f55fbdf8cc3074755796931e58d2c.php delete mode 100644 build/phpstan/cache/PHPStan/d3/49/d34941c9b51578194f0b34346537775aadaabad9.php delete mode 100644 build/phpstan/cache/PHPStan/db/8c/db8c0db4ba2dd8fead2765782b3dc89efa80174d.php delete mode 100644 build/phpstan/cache/PHPStan/e3/77/e377435bc038aa32a919661780f5e0dc748fb2f3.php delete mode 100644 build/phpstan/cache/PHPStan/f3/fa/f3faba961ca84af4300b2bdad07f065a411b1674.php delete mode 100644 build/phpstan/cache/PHPStan/f4/d3/f4d3da1e3370f2b6dcebda97974db0b1f154bfaa.php delete mode 100644 build/phpstan/cache/PHPStan/f8/7d/f87de80fa24c2edaa97ba02101dab3b0095e07d3.php delete mode 100644 build/phpstan/cache/nette.configurator/Container_c5db45e753.php delete mode 100644 build/phpstan/cache/nette.configurator/Container_c5db45e753.php.lock delete mode 100644 build/phpstan/cache/nette.configurator/Container_c5db45e753.php.meta delete mode 100644 build/phpstan/cache/nette.configurator/container.journal delete mode 100644 build/phpstan/resultCache.php delete mode 100644 build/report.junit.xml diff --git a/build/phpstan/cache/PHPStan/08/65/0865d6d2e2624e292aec9adcce89b24d99966379.php b/build/phpstan/cache/PHPStan/08/65/0865d6d2e2624e292aec9adcce89b24d99966379.php deleted file mode 100644 index 9cca8da..0000000 --- a/build/phpstan/cache/PHPStan/08/65/0865d6d2e2624e292aec9adcce89b24d99966379.php +++ /dev/null @@ -1,288 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/CodeUnit.php' => - array ( - 0 => 'a4e326a3a4495b59d511d5b01a6e76399b6b4610', - 1 => - array ( - 0 => 'sebastianbergmann\\codeunit\\codeunit', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codeunit\\forclass', - 1 => 'sebastianbergmann\\codeunit\\forclassmethod', - 2 => 'sebastianbergmann\\codeunit\\forfilewithabsolutepath', - 3 => 'sebastianbergmann\\codeunit\\forinterface', - 4 => 'sebastianbergmann\\codeunit\\forinterfacemethod', - 5 => 'sebastianbergmann\\codeunit\\fortrait', - 6 => 'sebastianbergmann\\codeunit\\fortraitmethod', - 7 => 'sebastianbergmann\\codeunit\\forfunction', - 8 => 'sebastianbergmann\\codeunit\\__construct', - 9 => 'sebastianbergmann\\codeunit\\name', - 10 => 'sebastianbergmann\\codeunit\\sourcefilename', - 11 => 'sebastianbergmann\\codeunit\\sourcelines', - 12 => 'sebastianbergmann\\codeunit\\isclass', - 13 => 'sebastianbergmann\\codeunit\\isclassmethod', - 14 => 'sebastianbergmann\\codeunit\\isinterface', - 15 => 'sebastianbergmann\\codeunit\\isinterfacemethod', - 16 => 'sebastianbergmann\\codeunit\\istrait', - 17 => 'sebastianbergmann\\codeunit\\istraitmethod', - 18 => 'sebastianbergmann\\codeunit\\isfunction', - 19 => 'sebastianbergmann\\codeunit\\isfile', - 20 => 'sebastianbergmann\\codeunit\\ensurefileexistsandisreadable', - 21 => 'sebastianbergmann\\codeunit\\ensureuserdefinedclass', - 22 => 'sebastianbergmann\\codeunit\\ensureuserdefinedinterface', - 23 => 'sebastianbergmann\\codeunit\\ensureuserdefinedtrait', - 24 => 'sebastianbergmann\\codeunit\\reflectorforclassmethod', - 25 => 'sebastianbergmann\\codeunit\\reflectorforfunction', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/TraitUnit.php' => - array ( - 0 => '00e0ebf71d017519306cc46e8fc8adc50a083fce', - 1 => - array ( - 0 => 'sebastianbergmann\\codeunit\\traitunit', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codeunit\\istrait', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/InterfaceMethodUnit.php' => - array ( - 0 => 'c4c4aaad3fe33e0296d277c345ecb69eb286130a', - 1 => - array ( - 0 => 'sebastianbergmann\\codeunit\\interfacemethodunit', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codeunit\\isinterfacemethod', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/exceptions/InvalidCodeUnitException.php' => - array ( - 0 => '1f85639a6a68466fb906fd5fd1ccd5c7cc89e4e8', - 1 => - array ( - 0 => 'sebastianbergmann\\codeunit\\invalidcodeunitexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/exceptions/ReflectionException.php' => - array ( - 0 => '6d9aa134fe89ef240bf3f9358ec3128b54238a3f', - 1 => - array ( - 0 => 'sebastianbergmann\\codeunit\\reflectionexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/exceptions/NoTraitException.php' => - array ( - 0 => '5ff90049fe5f9cfe833dfe9c85adfdc0a0737e02', - 1 => - array ( - 0 => 'sebastianbergmann\\codeunit\\notraitexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/exceptions/Exception.php' => - array ( - 0 => '845bad43c96c716a8a1c466f18e2e2268c9e57dc', - 1 => - array ( - 0 => 'sebastianbergmann\\codeunit\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/CodeUnitCollectionIterator.php' => - array ( - 0 => '05f0a9f3c3e3d77fb507259dcbc2e9e459952335', - 1 => - array ( - 0 => 'sebastianbergmann\\codeunit\\codeunitcollectioniterator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codeunit\\__construct', - 1 => 'sebastianbergmann\\codeunit\\rewind', - 2 => 'sebastianbergmann\\codeunit\\valid', - 3 => 'sebastianbergmann\\codeunit\\key', - 4 => 'sebastianbergmann\\codeunit\\current', - 5 => 'sebastianbergmann\\codeunit\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/CodeUnitCollection.php' => - array ( - 0 => '418bb8c2fbd7ac8fe50d9a38d35b6c858be13604', - 1 => - array ( - 0 => 'sebastianbergmann\\codeunit\\codeunitcollection', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codeunit\\fromlist', - 1 => 'sebastianbergmann\\codeunit\\__construct', - 2 => 'sebastianbergmann\\codeunit\\asarray', - 3 => 'sebastianbergmann\\codeunit\\getiterator', - 4 => 'sebastianbergmann\\codeunit\\count', - 5 => 'sebastianbergmann\\codeunit\\isempty', - 6 => 'sebastianbergmann\\codeunit\\mergewith', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/TraitMethodUnit.php' => - array ( - 0 => '946e7a09676a0151a32e55ecb283911c950c6c20', - 1 => - array ( - 0 => 'sebastianbergmann\\codeunit\\traitmethodunit', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codeunit\\istraitmethod', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/FileUnit.php' => - array ( - 0 => '7cfe216e8ff57e9b58d5ba2e2b5a66178b4e9175', - 1 => - array ( - 0 => 'sebastianbergmann\\codeunit\\fileunit', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codeunit\\isfile', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/FunctionUnit.php' => - array ( - 0 => 'd388c91f962c0421c4c8bf6df8b91480759b5f6e', - 1 => - array ( - 0 => 'sebastianbergmann\\codeunit\\functionunit', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codeunit\\isfunction', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/Mapper.php' => - array ( - 0 => 'a38826f38a64b752bb9decc34f938b9d5164eea7', - 1 => - array ( - 0 => 'sebastianbergmann\\codeunit\\mapper', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codeunit\\codeunitstosourcelines', - 1 => 'sebastianbergmann\\codeunit\\stringtocodeunits', - 2 => 'sebastianbergmann\\codeunit\\isuserdefinedfunction', - 3 => 'sebastianbergmann\\codeunit\\isuserdefinedclass', - 4 => 'sebastianbergmann\\codeunit\\isuserdefinedinterface', - 5 => 'sebastianbergmann\\codeunit\\isuserdefinedtrait', - 6 => 'sebastianbergmann\\codeunit\\isuserdefinedmethod', - 7 => 'sebastianbergmann\\codeunit\\traits', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/ClassUnit.php' => - array ( - 0 => '25b8df3d7044963bd087820b2f99ba825b41dda5', - 1 => - array ( - 0 => 'sebastianbergmann\\codeunit\\classunit', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codeunit\\isclass', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/ClassMethodUnit.php' => - array ( - 0 => '5d3ce9f698e675b13368d95a5e116c0dfbd46e73', - 1 => - array ( - 0 => 'sebastianbergmann\\codeunit\\classmethodunit', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codeunit\\isclassmethod', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit/src/InterfaceUnit.php' => - array ( - 0 => 'f60d06a0aa4131c281531160d4ef215551c7af50', - 1 => - array ( - 0 => 'sebastianbergmann\\codeunit\\interfaceunit', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codeunit\\isinterface', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/0e/46/0e469e39ff613cc46739e4f4b8a64fdd549fc0c6.php b/build/phpstan/cache/PHPStan/0e/46/0e469e39ff613cc46739e4f4b8a64fdd549fc0c6.php deleted file mode 100644 index b8e1b7c..0000000 --- a/build/phpstan/cache/PHPStan/0e/46/0e469e39ff613cc46739e4f4b8a64fdd549fc0c6.php +++ /dev/null @@ -1,1419 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/BaseMatcher.php' => - array ( - 0 => 'ecded29c81c001f0acf79d55c8fe64ca62bd6ab3', - 1 => - array ( - 0 => 'hamcrest\\basematcher', - ), - 2 => - array ( - 0 => 'hamcrest\\describemismatch', - 1 => 'hamcrest\\__tostring', - 2 => 'hamcrest\\__invoke', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Collection/IsEmptyTraversable.php' => - array ( - 0 => '7a218d39f7fd194fee8ed4fc3f62f2e82924e1a7', - 1 => - array ( - 0 => 'hamcrest\\collection\\isemptytraversable', - ), - 2 => - array ( - 0 => 'hamcrest\\collection\\__construct', - 1 => 'hamcrest\\collection\\matches', - 2 => 'hamcrest\\collection\\describeto', - 3 => 'hamcrest\\collection\\emptytraversable', - 4 => 'hamcrest\\collection\\nonemptytraversable', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Collection/IsTraversableWithSize.php' => - array ( - 0 => '4b7a4caa9ee1fd9428c22ecf928f7d7c493b7758', - 1 => - array ( - 0 => 'hamcrest\\collection\\istraversablewithsize', - ), - 2 => - array ( - 0 => 'hamcrest\\collection\\__construct', - 1 => 'hamcrest\\collection\\featurevalueof', - 2 => 'hamcrest\\collection\\traversablewithsize', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsInstanceOf.php' => - array ( - 0 => '0dc9bccb755013e071e0fca3b0a3795783a41f94', - 1 => - array ( - 0 => 'hamcrest\\core\\isinstanceof', - ), - 2 => - array ( - 0 => 'hamcrest\\core\\__construct', - 1 => 'hamcrest\\core\\matcheswithdiagnosticdescription', - 2 => 'hamcrest\\core\\describeto', - 3 => 'hamcrest\\core\\aninstanceof', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsTypeOf.php' => - array ( - 0 => '26f7a5bf14f1191fb76f6b3cdcbb9d752e52011b', - 1 => - array ( - 0 => 'hamcrest\\core\\istypeof', - ), - 2 => - array ( - 0 => 'hamcrest\\core\\__construct', - 1 => 'hamcrest\\core\\matches', - 2 => 'hamcrest\\core\\describeto', - 3 => 'hamcrest\\core\\describemismatch', - 4 => 'hamcrest\\core\\gettypedescription', - 5 => 'hamcrest\\core\\typeof', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsAnything.php' => - array ( - 0 => '715ebc43adf88b08b6b3f88422274d055b9424c0', - 1 => - array ( - 0 => 'hamcrest\\core\\isanything', - ), - 2 => - array ( - 0 => 'hamcrest\\core\\__construct', - 1 => 'hamcrest\\core\\matches', - 2 => 'hamcrest\\core\\describeto', - 3 => 'hamcrest\\core\\anything', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/HasToString.php' => - array ( - 0 => 'ef688a1e35bbb5574286b55fb6ae0d8f5b0202e6', - 1 => - array ( - 0 => 'hamcrest\\core\\hastostring', - ), - 2 => - array ( - 0 => 'hamcrest\\core\\__construct', - 1 => 'hamcrest\\core\\matchessafelywithdiagnosticdescription', - 2 => 'hamcrest\\core\\featurevalueof', - 3 => 'hamcrest\\core\\hastostring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Every.php' => - array ( - 0 => 'a9539e1e94cc285125a1da1ea541cfa2ee05e277', - 1 => - array ( - 0 => 'hamcrest\\core\\every', - ), - 2 => - array ( - 0 => 'hamcrest\\core\\__construct', - 1 => 'hamcrest\\core\\matchessafelywithdiagnosticdescription', - 2 => 'hamcrest\\core\\describeto', - 3 => 'hamcrest\\core\\everyitem', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsCollectionContaining.php' => - array ( - 0 => '4a80f2687cca6422af6c1f4158067de1a228cfba', - 1 => - array ( - 0 => 'hamcrest\\core\\iscollectioncontaining', - ), - 2 => - array ( - 0 => 'hamcrest\\core\\__construct', - 1 => 'hamcrest\\core\\matchessafely', - 2 => 'hamcrest\\core\\describemismatchsafely', - 3 => 'hamcrest\\core\\describeto', - 4 => 'hamcrest\\core\\hasitem', - 5 => 'hamcrest\\core\\hasitems', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/DescribedAs.php' => - array ( - 0 => '1caa650c8304ff06e6ef4900b0d4429b14447deb', - 1 => - array ( - 0 => 'hamcrest\\core\\describedas', - ), - 2 => - array ( - 0 => 'hamcrest\\core\\__construct', - 1 => 'hamcrest\\core\\matches', - 2 => 'hamcrest\\core\\describeto', - 3 => 'hamcrest\\core\\describedas', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsSame.php' => - array ( - 0 => '5c22ce5b8523356598a2ec5dc78020ac81ef9ce0', - 1 => - array ( - 0 => 'hamcrest\\core\\issame', - ), - 2 => - array ( - 0 => 'hamcrest\\core\\__construct', - 1 => 'hamcrest\\core\\matches', - 2 => 'hamcrest\\core\\describeto', - 3 => 'hamcrest\\core\\sameinstance', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/AllOf.php' => - array ( - 0 => '100e7848703aff924b405aac4a1af7bb38b9fc16', - 1 => - array ( - 0 => 'hamcrest\\core\\allof', - ), - 2 => - array ( - 0 => 'hamcrest\\core\\__construct', - 1 => 'hamcrest\\core\\matcheswithdiagnosticdescription', - 2 => 'hamcrest\\core\\describeto', - 3 => 'hamcrest\\core\\allof', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/CombinableMatcher.php' => - array ( - 0 => '9c6d0995c09820c9ff0e9a106eebbabf1f9f8477', - 1 => - array ( - 0 => 'hamcrest\\core\\combinablematcher', - ), - 2 => - array ( - 0 => 'hamcrest\\core\\__construct', - 1 => 'hamcrest\\core\\matches', - 2 => 'hamcrest\\core\\describeto', - 3 => 'hamcrest\\core\\andalso', - 4 => 'hamcrest\\core\\orelse', - 5 => 'hamcrest\\core\\both', - 6 => 'hamcrest\\core\\either', - 7 => 'hamcrest\\core\\_templatedlistwith', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Set.php' => - array ( - 0 => '29e26d577355f7624705dfa999d04fe5d5dac5a4', - 1 => - array ( - 0 => 'hamcrest\\core\\set', - ), - 2 => - array ( - 0 => 'hamcrest\\core\\__construct', - 1 => 'hamcrest\\core\\matches', - 2 => 'hamcrest\\core\\describeto', - 3 => 'hamcrest\\core\\describemismatch', - 4 => 'hamcrest\\core\\set', - 5 => 'hamcrest\\core\\notset', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsEqual.php' => - array ( - 0 => 'a7d123b97dca12f5d5ccc52fe0329a60d457f317', - 1 => - array ( - 0 => 'hamcrest\\core\\isequal', - ), - 2 => - array ( - 0 => 'hamcrest\\core\\__construct', - 1 => 'hamcrest\\core\\matches', - 2 => 'hamcrest\\core\\describeto', - 3 => 'hamcrest\\core\\equalto', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/Is.php' => - array ( - 0 => 'cd739f646f8fb5b813f0f6b7e2234b6784da2e0f', - 1 => - array ( - 0 => 'hamcrest\\core\\is', - ), - 2 => - array ( - 0 => 'hamcrest\\core\\__construct', - 1 => 'hamcrest\\core\\matches', - 2 => 'hamcrest\\core\\describeto', - 3 => 'hamcrest\\core\\describemismatch', - 4 => 'hamcrest\\core\\is', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/AnyOf.php' => - array ( - 0 => '39a3b74163be49f0c0afe09adfb02fdf320797fc', - 1 => - array ( - 0 => 'hamcrest\\core\\anyof', - ), - 2 => - array ( - 0 => 'hamcrest\\core\\__construct', - 1 => 'hamcrest\\core\\matches', - 2 => 'hamcrest\\core\\describeto', - 3 => 'hamcrest\\core\\anyof', - 4 => 'hamcrest\\core\\noneof', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsNot.php' => - array ( - 0 => 'f3876690438eaded103f74ee57817df859fe4337', - 1 => - array ( - 0 => 'hamcrest\\core\\isnot', - ), - 2 => - array ( - 0 => 'hamcrest\\core\\__construct', - 1 => 'hamcrest\\core\\matches', - 2 => 'hamcrest\\core\\describeto', - 3 => 'hamcrest\\core\\not', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsIdentical.php' => - array ( - 0 => 'c66cfd2220a91c972a41028c6aaeb1ab77b6ce08', - 1 => - array ( - 0 => 'hamcrest\\core\\isidentical', - ), - 2 => - array ( - 0 => 'hamcrest\\core\\__construct', - 1 => 'hamcrest\\core\\describeto', - 2 => 'hamcrest\\core\\identicalto', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/IsNull.php' => - array ( - 0 => '963d470399d1d879359306a01a5c6e5f9160cc31', - 1 => - array ( - 0 => 'hamcrest\\core\\isnull', - ), - 2 => - array ( - 0 => 'hamcrest\\core\\matches', - 1 => 'hamcrest\\core\\describeto', - 2 => 'hamcrest\\core\\nullvalue', - 3 => 'hamcrest\\core\\notnullvalue', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Core/ShortcutCombination.php' => - array ( - 0 => 'a2af2f191ad37934536faf98009ad8480802508d', - 1 => - array ( - 0 => 'hamcrest\\core\\shortcutcombination', - ), - 2 => - array ( - 0 => 'hamcrest\\core\\__construct', - 1 => 'hamcrest\\core\\matcheswithshortcut', - 2 => 'hamcrest\\core\\describetowithoperator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/MatcherAssert.php' => - array ( - 0 => '8f45ab27f62c72a7e8673348e8b0ac0e95947981', - 1 => - array ( - 0 => 'hamcrest\\matcherassert', - ), - 2 => - array ( - 0 => 'hamcrest\\assertthat', - 1 => 'hamcrest\\getcount', - 2 => 'hamcrest\\resetcount', - 3 => 'hamcrest\\doassert', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/SelfDescribing.php' => - array ( - 0 => '55b89f280431a9ff3f7ee9337cf7da6b54aebe22', - 1 => - array ( - 0 => 'hamcrest\\selfdescribing', - ), - 2 => - array ( - 0 => 'hamcrest\\describeto', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/DiagnosingMatcher.php' => - array ( - 0 => '11f2ce906bfca0efa6b9dbe1dd93bc89de6314a9', - 1 => - array ( - 0 => 'hamcrest\\diagnosingmatcher', - ), - 2 => - array ( - 0 => 'hamcrest\\matches', - 1 => 'hamcrest\\describemismatch', - 2 => 'hamcrest\\matcheswithdiagnosticdescription', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/AssertionError.php' => - array ( - 0 => '97b25fbb5bc7c32b1ce9428c3e7d141a81614419', - 1 => - array ( - 0 => 'hamcrest\\assertionerror', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Internal/SelfDescribingValue.php' => - array ( - 0 => 'fe2ee1e6a697ac97bb2723aa5cdfc9f4eff00c0d', - 1 => - array ( - 0 => 'hamcrest\\internal\\selfdescribingvalue', - ), - 2 => - array ( - 0 => 'hamcrest\\internal\\__construct', - 1 => 'hamcrest\\internal\\describeto', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/TypeSafeDiagnosingMatcher.php' => - array ( - 0 => '4ae0a61215f17c30d1d4a636833aeaccff73cf07', - 1 => - array ( - 0 => 'hamcrest\\typesafediagnosingmatcher', - ), - 2 => - array ( - 0 => 'hamcrest\\matchessafely', - 1 => 'hamcrest\\describemismatchsafely', - 2 => 'hamcrest\\matchessafelywithdiagnosticdescription', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/FeatureMatcher.php' => - array ( - 0 => '29b63b2c6ad3149adc0068280fdc0f4f71f39db5', - 1 => - array ( - 0 => 'hamcrest\\featurematcher', - ), - 2 => - array ( - 0 => 'hamcrest\\__construct', - 1 => 'hamcrest\\featurevalueof', - 2 => 'hamcrest\\matchessafelywithdiagnosticdescription', - 3 => 'hamcrest\\describeto', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Xml/HasXPath.php' => - array ( - 0 => '58799873486678ed2c3048c27d4ede0afd97d644', - 1 => - array ( - 0 => 'hamcrest\\xml\\hasxpath', - ), - 2 => - array ( - 0 => 'hamcrest\\xml\\__construct', - 1 => 'hamcrest\\xml\\matcheswithdiagnosticdescription', - 2 => 'hamcrest\\xml\\createdocument', - 3 => 'hamcrest\\xml\\evaluate', - 4 => 'hamcrest\\xml\\matchescontent', - 5 => 'hamcrest\\xml\\matchesexpression', - 6 => 'hamcrest\\xml\\describeto', - 7 => 'hamcrest\\xml\\hasxpath', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Number/IsCloseTo.php' => - array ( - 0 => '001ce0a513acfd7101c645bf8d610bed389e46a9', - 1 => - array ( - 0 => 'hamcrest\\number\\iscloseto', - ), - 2 => - array ( - 0 => 'hamcrest\\number\\__construct', - 1 => 'hamcrest\\number\\matchessafely', - 2 => 'hamcrest\\number\\describemismatchsafely', - 3 => 'hamcrest\\number\\describeto', - 4 => 'hamcrest\\number\\closeto', - 5 => 'hamcrest\\number\\_actualdelta', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Number/OrderingComparison.php' => - array ( - 0 => '9aeab15a5b221ccd00532f83a30457546d365e9c', - 1 => - array ( - 0 => 'hamcrest\\number\\orderingcomparison', - ), - 2 => - array ( - 0 => 'hamcrest\\number\\__construct', - 1 => 'hamcrest\\number\\matchessafely', - 2 => 'hamcrest\\number\\describemismatchsafely', - 3 => 'hamcrest\\number\\describeto', - 4 => 'hamcrest\\number\\comparesequalto', - 5 => 'hamcrest\\number\\greaterthan', - 6 => 'hamcrest\\number\\greaterthanorequalto', - 7 => 'hamcrest\\number\\lessthan', - 8 => 'hamcrest\\number\\lessthanorequalto', - 9 => 'hamcrest\\number\\_compare', - 10 => 'hamcrest\\number\\_comparison', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/BaseDescription.php' => - array ( - 0 => '3170aeb2cd6d4c0c11ee018cd2c9b796a175771a', - 1 => - array ( - 0 => 'hamcrest\\basedescription', - ), - 2 => - array ( - 0 => 'hamcrest\\appendtext', - 1 => 'hamcrest\\appenddescriptionof', - 2 => 'hamcrest\\appendvalue', - 3 => 'hamcrest\\appendvaluelist', - 4 => 'hamcrest\\appendlist', - 5 => 'hamcrest\\append', - 6 => 'hamcrest\\_tophpsyntax', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsInteger.php' => - array ( - 0 => '2d998a674bb3e4f71b88a6b89e39d61a6a0b9f2d', - 1 => - array ( - 0 => 'hamcrest\\type\\isinteger', - ), - 2 => - array ( - 0 => 'hamcrest\\type\\__construct', - 1 => 'hamcrest\\type\\integervalue', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsBoolean.php' => - array ( - 0 => 'bf556ba74b3f48f77fb149d60b370039bf9572b2', - 1 => - array ( - 0 => 'hamcrest\\type\\isboolean', - ), - 2 => - array ( - 0 => 'hamcrest\\type\\__construct', - 1 => 'hamcrest\\type\\booleanvalue', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsResource.php' => - array ( - 0 => '4c1f8c206d52561fab564a51fd1f1b66d146687f', - 1 => - array ( - 0 => 'hamcrest\\type\\isresource', - ), - 2 => - array ( - 0 => 'hamcrest\\type\\__construct', - 1 => 'hamcrest\\type\\resourcevalue', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsObject.php' => - array ( - 0 => '7a55db0f79f63efdaad2979868f7894ac498495c', - 1 => - array ( - 0 => 'hamcrest\\type\\isobject', - ), - 2 => - array ( - 0 => 'hamcrest\\type\\__construct', - 1 => 'hamcrest\\type\\objectvalue', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsScalar.php' => - array ( - 0 => '6a76c2a31d23c8f8eeb66e2543bf0e5000d5e0f2', - 1 => - array ( - 0 => 'hamcrest\\type\\isscalar', - ), - 2 => - array ( - 0 => 'hamcrest\\type\\__construct', - 1 => 'hamcrest\\type\\matches', - 2 => 'hamcrest\\type\\scalarvalue', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsString.php' => - array ( - 0 => 'ce8e4de992f68e8d62e26e20fc329015276de235', - 1 => - array ( - 0 => 'hamcrest\\type\\isstring', - ), - 2 => - array ( - 0 => 'hamcrest\\type\\__construct', - 1 => 'hamcrest\\type\\stringvalue', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsNumeric.php' => - array ( - 0 => 'e095a0b200d53d38423fca4f08981d140add8d70', - 1 => - array ( - 0 => 'hamcrest\\type\\isnumeric', - ), - 2 => - array ( - 0 => 'hamcrest\\type\\__construct', - 1 => 'hamcrest\\type\\matches', - 2 => 'hamcrest\\type\\ishexadecimal', - 3 => 'hamcrest\\type\\numericvalue', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsArray.php' => - array ( - 0 => '5903d125d33c329becfa3694195d5f9e7b8c4185', - 1 => - array ( - 0 => 'hamcrest\\type\\isarray', - ), - 2 => - array ( - 0 => 'hamcrest\\type\\__construct', - 1 => 'hamcrest\\type\\arrayvalue', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsCallable.php' => - array ( - 0 => '1f6cbc3f99bab4674946c92b403c3b93dae6b915', - 1 => - array ( - 0 => 'hamcrest\\type\\iscallable', - ), - 2 => - array ( - 0 => 'hamcrest\\type\\__construct', - 1 => 'hamcrest\\type\\matches', - 2 => 'hamcrest\\type\\callablevalue', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Type/IsDouble.php' => - array ( - 0 => 'a51960397a3caebae1e05a6d5a31fb18a3986ac8', - 1 => - array ( - 0 => 'hamcrest\\type\\isdouble', - ), - 2 => - array ( - 0 => 'hamcrest\\type\\__construct', - 1 => 'hamcrest\\type\\doublevalue', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Matcher.php' => - array ( - 0 => 'e0d782f1661b3febec35c0bc88a7bf1abd5cb0b6', - 1 => - array ( - 0 => 'hamcrest\\matcher', - ), - 2 => - array ( - 0 => 'hamcrest\\matches', - 1 => 'hamcrest\\describemismatch', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingKeyValuePair.php' => - array ( - 0 => '1f9d2f9800b0a24e009461a6ce6074b328362172', - 1 => - array ( - 0 => 'hamcrest\\arrays\\isarraycontainingkeyvaluepair', - ), - 2 => - array ( - 0 => 'hamcrest\\arrays\\__construct', - 1 => 'hamcrest\\arrays\\matchessafely', - 2 => 'hamcrest\\arrays\\describemismatchsafely', - 3 => 'hamcrest\\arrays\\describeto', - 4 => 'hamcrest\\arrays\\haskeyvaluepair', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingKey.php' => - array ( - 0 => 'f5f742041e6173d0d2641d1a7bfec923173d4c9f', - 1 => - array ( - 0 => 'hamcrest\\arrays\\isarraycontainingkey', - ), - 2 => - array ( - 0 => 'hamcrest\\arrays\\__construct', - 1 => 'hamcrest\\arrays\\matchessafely', - 2 => 'hamcrest\\arrays\\describemismatchsafely', - 3 => 'hamcrest\\arrays\\describeto', - 4 => 'hamcrest\\arrays\\haskeyinarray', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayWithSize.php' => - array ( - 0 => '9133f558a703466bbe49df937c356d35806df9e0', - 1 => - array ( - 0 => 'hamcrest\\arrays\\isarraywithsize', - ), - 2 => - array ( - 0 => 'hamcrest\\arrays\\__construct', - 1 => 'hamcrest\\arrays\\featurevalueof', - 2 => 'hamcrest\\arrays\\arraywithsize', - 3 => 'hamcrest\\arrays\\emptyarray', - 4 => 'hamcrest\\arrays\\nonemptyarray', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingInAnyOrder.php' => - array ( - 0 => 'c29f19507146575b25d0afc0c6ecf6e1f9b0505b', - 1 => - array ( - 0 => 'hamcrest\\arrays\\isarraycontaininginanyorder', - ), - 2 => - array ( - 0 => 'hamcrest\\arrays\\__construct', - 1 => 'hamcrest\\arrays\\matchessafelywithdiagnosticdescription', - 2 => 'hamcrest\\arrays\\describeto', - 3 => 'hamcrest\\arrays\\arraycontaininginanyorder', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/MatchingOnce.php' => - array ( - 0 => 'e5d89d61031a83735ddbfd026f6654b52751eb20', - 1 => - array ( - 0 => 'hamcrest\\arrays\\matchingonce', - ), - 2 => - array ( - 0 => 'hamcrest\\arrays\\__construct', - 1 => 'hamcrest\\arrays\\matches', - 2 => 'hamcrest\\arrays\\isfinished', - 3 => 'hamcrest\\arrays\\_isnotsurplus', - 4 => 'hamcrest\\arrays\\_ismatched', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContainingInOrder.php' => - array ( - 0 => '8ccf5b8b226b2c5b279bb2ab71c1256b3cf89c64', - 1 => - array ( - 0 => 'hamcrest\\arrays\\isarraycontaininginorder', - ), - 2 => - array ( - 0 => 'hamcrest\\arrays\\__construct', - 1 => 'hamcrest\\arrays\\matchessafelywithdiagnosticdescription', - 2 => 'hamcrest\\arrays\\describeto', - 3 => 'hamcrest\\arrays\\arraycontaining', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArray.php' => - array ( - 0 => '741276e8b904f925399672bf8dd872cf5e139684', - 1 => - array ( - 0 => 'hamcrest\\arrays\\isarray', - ), - 2 => - array ( - 0 => 'hamcrest\\arrays\\__construct', - 1 => 'hamcrest\\arrays\\matchessafely', - 2 => 'hamcrest\\arrays\\describemismatchsafely', - 3 => 'hamcrest\\arrays\\describeto', - 4 => 'hamcrest\\arrays\\anarray', - 5 => 'hamcrest\\arrays\\descriptionstart', - 6 => 'hamcrest\\arrays\\descriptionseparator', - 7 => 'hamcrest\\arrays\\descriptionend', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/IsArrayContaining.php' => - array ( - 0 => '1a6105dc65014fa97b4dd2101dbb5b1df9baa174', - 1 => - array ( - 0 => 'hamcrest\\arrays\\isarraycontaining', - ), - 2 => - array ( - 0 => 'hamcrest\\arrays\\__construct', - 1 => 'hamcrest\\arrays\\matchessafely', - 2 => 'hamcrest\\arrays\\describemismatchsafely', - 3 => 'hamcrest\\arrays\\describeto', - 4 => 'hamcrest\\arrays\\hasiteminarray', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Arrays/SeriesMatchingOnce.php' => - array ( - 0 => 'e30b5aa7b3c3a96821440c32ce17c3c8a87362b7', - 1 => - array ( - 0 => 'hamcrest\\arrays\\seriesmatchingonce', - ), - 2 => - array ( - 0 => 'hamcrest\\arrays\\__construct', - 1 => 'hamcrest\\arrays\\matches', - 2 => 'hamcrest\\arrays\\isfinished', - 3 => 'hamcrest\\arrays\\_isnotsurplus', - 4 => 'hamcrest\\arrays\\_ismatched', - 5 => 'hamcrest\\arrays\\_describemismatch', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Description.php' => - array ( - 0 => '1ea7040c220ba2a08afaae671f29666637ce3e9f', - 1 => - array ( - 0 => 'hamcrest\\description', - ), - 2 => - array ( - 0 => 'hamcrest\\appendtext', - 1 => 'hamcrest\\appenddescriptionof', - 2 => 'hamcrest\\appendvalue', - 3 => 'hamcrest\\appendvaluelist', - 4 => 'hamcrest\\appendlist', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/NullDescription.php' => - array ( - 0 => 'b7199dec45c7008234c5fd5e4c962cb292f1e516', - 1 => - array ( - 0 => 'hamcrest\\nulldescription', - ), - 2 => - array ( - 0 => 'hamcrest\\appendtext', - 1 => 'hamcrest\\appenddescriptionof', - 2 => 'hamcrest\\appendvalue', - 3 => 'hamcrest\\appendvaluelist', - 4 => 'hamcrest\\appendlist', - 5 => 'hamcrest\\__tostring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Util.php' => - array ( - 0 => '86651fda8e788cbf5d8a388ccecb53888ac84f25', - 1 => - array ( - 0 => 'hamcrest\\util', - ), - 2 => - array ( - 0 => 'hamcrest\\registerglobalfunctions', - 1 => 'hamcrest\\wrapvaluewithisequal', - 2 => 'hamcrest\\checkallarematchers', - 3 => 'hamcrest\\creatematcherarray', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/TypeSafeMatcher.php' => - array ( - 0 => '2c015235bcff5f3ae371f478a81eb054b8044ce7', - 1 => - array ( - 0 => 'hamcrest\\typesafematcher', - ), - 2 => - array ( - 0 => 'hamcrest\\__construct', - 1 => 'hamcrest\\matches', - 2 => 'hamcrest\\describemismatch', - 3 => 'hamcrest\\matchessafely', - 4 => 'hamcrest\\describemismatchsafely', - 5 => 'hamcrest\\_issafetype', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEmptyString.php' => - array ( - 0 => '6d76cd2acee87b800889ef86608e78fb6583cea0', - 1 => - array ( - 0 => 'hamcrest\\text\\isemptystring', - ), - 2 => - array ( - 0 => 'hamcrest\\text\\__construct', - 1 => 'hamcrest\\text\\matches', - 2 => 'hamcrest\\text\\describeto', - 3 => 'hamcrest\\text\\isemptystring', - 4 => 'hamcrest\\text\\isemptyornullstring', - 5 => 'hamcrest\\text\\isnonemptystring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/SubstringMatcher.php' => - array ( - 0 => '642c79cc88bde52612b2461f0831ff1e6c97ef49', - 1 => - array ( - 0 => 'hamcrest\\text\\substringmatcher', - ), - 2 => - array ( - 0 => 'hamcrest\\text\\__construct', - 1 => 'hamcrest\\text\\matchessafely', - 2 => 'hamcrest\\text\\describemismatchsafely', - 3 => 'hamcrest\\text\\describeto', - 4 => 'hamcrest\\text\\evalsubstringof', - 5 => 'hamcrest\\text\\relationship', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEqualIgnoringCase.php' => - array ( - 0 => 'd30c998c41a87d5f22a69970e27e8999c2fe5efe', - 1 => - array ( - 0 => 'hamcrest\\text\\isequalignoringcase', - ), - 2 => - array ( - 0 => 'hamcrest\\text\\__construct', - 1 => 'hamcrest\\text\\matchessafely', - 2 => 'hamcrest\\text\\describemismatchsafely', - 3 => 'hamcrest\\text\\describeto', - 4 => 'hamcrest\\text\\equaltoignoringcase', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringStartsWith.php' => - array ( - 0 => 'efcffe7e537bd50c20fecb71cbf9a5ed8fb1a928', - 1 => - array ( - 0 => 'hamcrest\\text\\stringstartswith', - ), - 2 => - array ( - 0 => 'hamcrest\\text\\__construct', - 1 => 'hamcrest\\text\\startswith', - 2 => 'hamcrest\\text\\evalsubstringof', - 3 => 'hamcrest\\text\\relationship', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/MatchesPattern.php' => - array ( - 0 => '0493d5e331167b71a9204546b286c02cfdf30582', - 1 => - array ( - 0 => 'hamcrest\\text\\matchespattern', - ), - 2 => - array ( - 0 => 'hamcrest\\text\\__construct', - 1 => 'hamcrest\\text\\matchespattern', - 2 => 'hamcrest\\text\\evalsubstringof', - 3 => 'hamcrest\\text\\relationship', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContainsInOrder.php' => - array ( - 0 => '30fc9c558a4597f93a960c81f42e78261e6f612b', - 1 => - array ( - 0 => 'hamcrest\\text\\stringcontainsinorder', - ), - 2 => - array ( - 0 => 'hamcrest\\text\\__construct', - 1 => 'hamcrest\\text\\matchessafely', - 2 => 'hamcrest\\text\\describemismatchsafely', - 3 => 'hamcrest\\text\\describeto', - 4 => 'hamcrest\\text\\stringcontainsinorder', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContainsIgnoringCase.php' => - array ( - 0 => 'b450c2710d3999e96702bd85b031911dd6d99f2d', - 1 => - array ( - 0 => 'hamcrest\\text\\stringcontainsignoringcase', - ), - 2 => - array ( - 0 => 'hamcrest\\text\\__construct', - 1 => 'hamcrest\\text\\containsstringignoringcase', - 2 => 'hamcrest\\text\\evalsubstringof', - 3 => 'hamcrest\\text\\relationship', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringContains.php' => - array ( - 0 => '935736bec97476246438e0e1a4ee3caa02b3fc45', - 1 => - array ( - 0 => 'hamcrest\\text\\stringcontains', - ), - 2 => - array ( - 0 => 'hamcrest\\text\\__construct', - 1 => 'hamcrest\\text\\ignoringcase', - 2 => 'hamcrest\\text\\containsstring', - 3 => 'hamcrest\\text\\evalsubstringof', - 4 => 'hamcrest\\text\\relationship', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/IsEqualIgnoringWhiteSpace.php' => - array ( - 0 => '2dafbf9444b168f84b1e3f79e374f4107fd3e3a1', - 1 => - array ( - 0 => 'hamcrest\\text\\isequalignoringwhitespace', - ), - 2 => - array ( - 0 => 'hamcrest\\text\\__construct', - 1 => 'hamcrest\\text\\matchessafely', - 2 => 'hamcrest\\text\\describemismatchsafely', - 3 => 'hamcrest\\text\\describeto', - 4 => 'hamcrest\\text\\equaltoignoringwhitespace', - 5 => 'hamcrest\\text\\_stripspace', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Text/StringEndsWith.php' => - array ( - 0 => 'ced08c3d0b19212a9194668011583fcb520353a6', - 1 => - array ( - 0 => 'hamcrest\\text\\stringendswith', - ), - 2 => - array ( - 0 => 'hamcrest\\text\\__construct', - 1 => 'hamcrest\\text\\endswith', - 2 => 'hamcrest\\text\\evalsubstringof', - 3 => 'hamcrest\\text\\relationship', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/StringDescription.php' => - array ( - 0 => 'c179df707c4992d79498b6adf7ee81e42e6f6bb7', - 1 => - array ( - 0 => 'hamcrest\\stringdescription', - ), - 2 => - array ( - 0 => 'hamcrest\\__construct', - 1 => 'hamcrest\\__tostring', - 2 => 'hamcrest\\tostring', - 3 => 'hamcrest\\asstring', - 4 => 'hamcrest\\append', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Matchers.php' => - array ( - 0 => '0244d9185ebd53eb0b3115a3ff672fb2735f3f75', - 1 => - array ( - 0 => 'hamcrest\\matchers', - ), - 2 => - array ( - 0 => 'hamcrest\\anarray', - 1 => 'hamcrest\\hasiteminarray', - 2 => 'hamcrest\\hasvalue', - 3 => 'hamcrest\\arraycontaininginanyorder', - 4 => 'hamcrest\\containsinanyorder', - 5 => 'hamcrest\\arraycontaining', - 6 => 'hamcrest\\contains', - 7 => 'hamcrest\\haskeyinarray', - 8 => 'hamcrest\\haskey', - 9 => 'hamcrest\\haskeyvaluepair', - 10 => 'hamcrest\\hasentry', - 11 => 'hamcrest\\arraywithsize', - 12 => 'hamcrest\\emptyarray', - 13 => 'hamcrest\\nonemptyarray', - 14 => 'hamcrest\\emptytraversable', - 15 => 'hamcrest\\nonemptytraversable', - 16 => 'hamcrest\\traversablewithsize', - 17 => 'hamcrest\\allof', - 18 => 'hamcrest\\anyof', - 19 => 'hamcrest\\noneof', - 20 => 'hamcrest\\both', - 21 => 'hamcrest\\either', - 22 => 'hamcrest\\describedas', - 23 => 'hamcrest\\everyitem', - 24 => 'hamcrest\\hastostring', - 25 => 'hamcrest\\is', - 26 => 'hamcrest\\anything', - 27 => 'hamcrest\\hasitem', - 28 => 'hamcrest\\hasitems', - 29 => 'hamcrest\\equalto', - 30 => 'hamcrest\\identicalto', - 31 => 'hamcrest\\aninstanceof', - 32 => 'hamcrest\\any', - 33 => 'hamcrest\\not', - 34 => 'hamcrest\\nullvalue', - 35 => 'hamcrest\\notnullvalue', - 36 => 'hamcrest\\sameinstance', - 37 => 'hamcrest\\typeof', - 38 => 'hamcrest\\set', - 39 => 'hamcrest\\notset', - 40 => 'hamcrest\\closeto', - 41 => 'hamcrest\\comparesequalto', - 42 => 'hamcrest\\greaterthan', - 43 => 'hamcrest\\greaterthanorequalto', - 44 => 'hamcrest\\atleast', - 45 => 'hamcrest\\lessthan', - 46 => 'hamcrest\\lessthanorequalto', - 47 => 'hamcrest\\atmost', - 48 => 'hamcrest\\isemptystring', - 49 => 'hamcrest\\emptystring', - 50 => 'hamcrest\\isemptyornullstring', - 51 => 'hamcrest\\nulloremptystring', - 52 => 'hamcrest\\isnonemptystring', - 53 => 'hamcrest\\nonemptystring', - 54 => 'hamcrest\\equaltoignoringcase', - 55 => 'hamcrest\\equaltoignoringwhitespace', - 56 => 'hamcrest\\matchespattern', - 57 => 'hamcrest\\containsstring', - 58 => 'hamcrest\\containsstringignoringcase', - 59 => 'hamcrest\\stringcontainsinorder', - 60 => 'hamcrest\\endswith', - 61 => 'hamcrest\\startswith', - 62 => 'hamcrest\\arrayvalue', - 63 => 'hamcrest\\booleanvalue', - 64 => 'hamcrest\\boolvalue', - 65 => 'hamcrest\\callablevalue', - 66 => 'hamcrest\\doublevalue', - 67 => 'hamcrest\\floatvalue', - 68 => 'hamcrest\\integervalue', - 69 => 'hamcrest\\intvalue', - 70 => 'hamcrest\\numericvalue', - 71 => 'hamcrest\\objectvalue', - 72 => 'hamcrest\\anobject', - 73 => 'hamcrest\\resourcevalue', - 74 => 'hamcrest\\scalarvalue', - 75 => 'hamcrest\\stringvalue', - 76 => 'hamcrest\\hasxpath', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest.php' => - array ( - 0 => 'b2aa3422a4f0486e97d681bd8f57b3b3264a5e6c', - 1 => - array ( - ), - 2 => - array ( - 0 => 'assertthat', - 1 => 'anarray', - 2 => 'hasiteminarray', - 3 => 'hasvalue', - 4 => 'arraycontaininginanyorder', - 5 => 'containsinanyorder', - 6 => 'arraycontaining', - 7 => 'contains', - 8 => 'haskeyinarray', - 9 => 'haskey', - 10 => 'haskeyvaluepair', - 11 => 'hasentry', - 12 => 'arraywithsize', - 13 => 'emptyarray', - 14 => 'nonemptyarray', - 15 => 'emptytraversable', - 16 => 'nonemptytraversable', - 17 => 'traversablewithsize', - 18 => 'allof', - 19 => 'anyof', - 20 => 'noneof', - 21 => 'both', - 22 => 'either', - 23 => 'describedas', - 24 => 'everyitem', - 25 => 'hastostring', - 26 => 'is', - 27 => 'anything', - 28 => 'hasitem', - 29 => 'hasitems', - 30 => 'equalto', - 31 => 'identicalto', - 32 => 'aninstanceof', - 33 => 'any', - 34 => 'not', - 35 => 'nullvalue', - 36 => 'notnullvalue', - 37 => 'sameinstance', - 38 => 'typeof', - 39 => 'set', - 40 => 'notset', - 41 => 'closeto', - 42 => 'comparesequalto', - 43 => 'greaterthan', - 44 => 'greaterthanorequalto', - 45 => 'atleast', - 46 => 'lessthan', - 47 => 'lessthanorequalto', - 48 => 'atmost', - 49 => 'isemptystring', - 50 => 'emptystring', - 51 => 'isemptyornullstring', - 52 => 'nulloremptystring', - 53 => 'isnonemptystring', - 54 => 'nonemptystring', - 55 => 'equaltoignoringcase', - 56 => 'equaltoignoringwhitespace', - 57 => 'matchespattern', - 58 => 'containsstring', - 59 => 'containsstringignoringcase', - 60 => 'stringcontainsinorder', - 61 => 'endswith', - 62 => 'startswith', - 63 => 'arrayvalue', - 64 => 'booleanvalue', - 65 => 'boolvalue', - 66 => 'callablevalue', - 67 => 'doublevalue', - 68 => 'floatvalue', - 69 => 'integervalue', - 70 => 'intvalue', - 71 => 'numericvalue', - 72 => 'objectvalue', - 73 => 'anobject', - 74 => 'resourcevalue', - 75 => 'scalarvalue', - 76 => 'stringvalue', - 77 => 'hasxpath', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/13/01/1301be55607081c10d7af73a3ca72a58e9681328.php b/build/phpstan/cache/PHPStan/13/01/1301be55607081c10d7af73a3ca72a58e9681328.php deleted file mode 100644 index 90e894a..0000000 --- a/build/phpstan/cache/PHPStan/13/01/1301be55607081c10d7af73a3ca72a58e9681328.php +++ /dev/null @@ -1,132 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/global-state/src/Restorer.php' => - array ( - 0 => '7f061eaab5aacc989109e8b61ec6630a5c4fca6d', - 1 => - array ( - 0 => 'sebastianbergmann\\globalstate\\restorer', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\globalstate\\restoreglobalvariables', - 1 => 'sebastianbergmann\\globalstate\\restorestaticproperties', - 2 => 'sebastianbergmann\\globalstate\\restoresuperglobalarray', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/global-state/src/CodeExporter.php' => - array ( - 0 => '20d3ed18a2d65bca6f5d2068e342694dd96040c6', - 1 => - array ( - 0 => 'sebastianbergmann\\globalstate\\codeexporter', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\globalstate\\constants', - 1 => 'sebastianbergmann\\globalstate\\globalvariables', - 2 => 'sebastianbergmann\\globalstate\\inisettings', - 3 => 'sebastianbergmann\\globalstate\\exportvariable', - 4 => 'sebastianbergmann\\globalstate\\arrayonlycontainsscalars', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/global-state/src/Snapshot.php' => - array ( - 0 => '657d8157312e3a2e551089f0f2b057fa0af2700a', - 1 => - array ( - 0 => 'sebastianbergmann\\globalstate\\snapshot', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\globalstate\\__construct', - 1 => 'sebastianbergmann\\globalstate\\excludelist', - 2 => 'sebastianbergmann\\globalstate\\globalvariables', - 3 => 'sebastianbergmann\\globalstate\\superglobalvariables', - 4 => 'sebastianbergmann\\globalstate\\superglobalarrays', - 5 => 'sebastianbergmann\\globalstate\\staticproperties', - 6 => 'sebastianbergmann\\globalstate\\inisettings', - 7 => 'sebastianbergmann\\globalstate\\includedfiles', - 8 => 'sebastianbergmann\\globalstate\\constants', - 9 => 'sebastianbergmann\\globalstate\\functions', - 10 => 'sebastianbergmann\\globalstate\\interfaces', - 11 => 'sebastianbergmann\\globalstate\\classes', - 12 => 'sebastianbergmann\\globalstate\\traits', - 13 => 'sebastianbergmann\\globalstate\\snapshotconstants', - 14 => 'sebastianbergmann\\globalstate\\snapshotfunctions', - 15 => 'sebastianbergmann\\globalstate\\snapshotclasses', - 16 => 'sebastianbergmann\\globalstate\\snapshotinterfaces', - 17 => 'sebastianbergmann\\globalstate\\snapshotglobals', - 18 => 'sebastianbergmann\\globalstate\\snapshotsuperglobalarray', - 19 => 'sebastianbergmann\\globalstate\\snapshotstaticproperties', - 20 => 'sebastianbergmann\\globalstate\\setupsuperglobalarrays', - 21 => 'sebastianbergmann\\globalstate\\canbeserialized', - 22 => 'sebastianbergmann\\globalstate\\enumerateobjectsandresources', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/global-state/src/exceptions/RuntimeException.php' => - array ( - 0 => '688710ae08d1ee8e1de9b900c6418ae878999bf7', - 1 => - array ( - 0 => 'sebastianbergmann\\globalstate\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/global-state/src/exceptions/Exception.php' => - array ( - 0 => '80cb1c5ab4f8b552d57291de5ee3703590355cd5', - 1 => - array ( - 0 => 'sebastianbergmann\\globalstate\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/global-state/src/ExcludeList.php' => - array ( - 0 => 'df9b8f92253be6d2cf498d52a3754cf529b18e93', - 1 => - array ( - 0 => 'sebastianbergmann\\globalstate\\excludelist', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\globalstate\\addglobalvariable', - 1 => 'sebastianbergmann\\globalstate\\addclass', - 2 => 'sebastianbergmann\\globalstate\\addsubclassesof', - 3 => 'sebastianbergmann\\globalstate\\addimplementorsof', - 4 => 'sebastianbergmann\\globalstate\\addclassnameprefix', - 5 => 'sebastianbergmann\\globalstate\\addstaticproperty', - 6 => 'sebastianbergmann\\globalstate\\isglobalvariableexcluded', - 7 => 'sebastianbergmann\\globalstate\\isstaticpropertyexcluded', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/20/4b/204b85b32bd37f3981e57c0d38866dc31ca65a05.php b/build/phpstan/cache/PHPStan/20/4b/204b85b32bd37f3981e57c0d38866dc31ca65a05.php deleted file mode 100644 index 4b9ebce..0000000 --- a/build/phpstan/cache/PHPStan/20/4b/204b85b32bd37f3981e57c0d38866dc31ca65a05.php +++ /dev/null @@ -1,24 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/object-enumerator/src/Enumerator.php' => - array ( - 0 => '8f1227966e30cf1ce59bd996992e90642fa84018', - 1 => - array ( - 0 => 'sebastianbergmann\\objectenumerator\\enumerator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\objectenumerator\\enumerate', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/21/1e/211e106cd61310448624f0d8befed9daade6f051.php b/build/phpstan/cache/PHPStan/21/1e/211e106cd61310448624f0d8befed9daade6f051.php deleted file mode 100644 index 7e0ab8e..0000000 --- a/build/phpstan/cache/PHPStan/21/1e/211e106cd61310448624f0d8befed9daade6f051.php +++ /dev/null @@ -1,1602 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/CodeCoverage.php' => - array ( - 0 => 'c27f420b867660f15ee3d52280cb74905062b2a6', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\codecoverage', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\getreport', - 2 => 'sebastianbergmann\\codecoverage\\clear', - 3 => 'sebastianbergmann\\codecoverage\\clearcache', - 4 => 'sebastianbergmann\\codecoverage\\filter', - 5 => 'sebastianbergmann\\codecoverage\\getdata', - 6 => 'sebastianbergmann\\codecoverage\\setdata', - 7 => 'sebastianbergmann\\codecoverage\\gettests', - 8 => 'sebastianbergmann\\codecoverage\\settests', - 9 => 'sebastianbergmann\\codecoverage\\start', - 10 => 'sebastianbergmann\\codecoverage\\stop', - 11 => 'sebastianbergmann\\codecoverage\\append', - 12 => 'sebastianbergmann\\codecoverage\\merge', - 13 => 'sebastianbergmann\\codecoverage\\enablecheckforunintentionallycoveredcode', - 14 => 'sebastianbergmann\\codecoverage\\disablecheckforunintentionallycoveredcode', - 15 => 'sebastianbergmann\\codecoverage\\includeuncoveredfiles', - 16 => 'sebastianbergmann\\codecoverage\\excludeuncoveredfiles', - 17 => 'sebastianbergmann\\codecoverage\\enableannotationsforignoringcode', - 18 => 'sebastianbergmann\\codecoverage\\disableannotationsforignoringcode', - 19 => 'sebastianbergmann\\codecoverage\\ignoredeprecatedcode', - 20 => 'sebastianbergmann\\codecoverage\\donotignoredeprecatedcode', - 21 => 'sebastianbergmann\\codecoverage\\cachesstaticanalysis', - 22 => 'sebastianbergmann\\codecoverage\\cachestaticanalysis', - 23 => 'sebastianbergmann\\codecoverage\\donotcachestaticanalysis', - 24 => 'sebastianbergmann\\codecoverage\\cachedirectory', - 25 => 'sebastianbergmann\\codecoverage\\excludesubclassesofthisclassfromunintentionallycoveredcodecheck', - 26 => 'sebastianbergmann\\codecoverage\\enablebranchandpathcoverage', - 27 => 'sebastianbergmann\\codecoverage\\disablebranchandpathcoverage', - 28 => 'sebastianbergmann\\codecoverage\\collectsbranchandpathcoverage', - 29 => 'sebastianbergmann\\codecoverage\\detectsdeadcode', - 30 => 'sebastianbergmann\\codecoverage\\applycoversandusesfilter', - 31 => 'sebastianbergmann\\codecoverage\\applyfilter', - 32 => 'sebastianbergmann\\codecoverage\\applyexecutablelinesfilter', - 33 => 'sebastianbergmann\\codecoverage\\applyignoredlinesfilter', - 34 => 'sebastianbergmann\\codecoverage\\adduncoveredfilesfromfilter', - 35 => 'sebastianbergmann\\codecoverage\\performunintentionallycoveredcodecheck', - 36 => 'sebastianbergmann\\codecoverage\\getallowedlines', - 37 => 'sebastianbergmann\\codecoverage\\processunintentionallycoveredunits', - 38 => 'sebastianbergmann\\codecoverage\\analyser', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestSize/Unknown.php' => - array ( - 0 => '026e0b9147080769c65623af0568e9141e5d3e48', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\unknown', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\isunknown', - 1 => 'sebastianbergmann\\codecoverage\\test\\testsize\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestSize/Medium.php' => - array ( - 0 => 'a3ade72345c6523c6cc727b481754b1431bfcf51', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\medium', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\ismedium', - 1 => 'sebastianbergmann\\codecoverage\\test\\testsize\\isgreaterthan', - 2 => 'sebastianbergmann\\codecoverage\\test\\testsize\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestSize/Known.php' => - array ( - 0 => '322c583263fa7eff1f2a0780f7a6887e48934d4d', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\known', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\isknown', - 1 => 'sebastianbergmann\\codecoverage\\test\\testsize\\isgreaterthan', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestSize/Large.php' => - array ( - 0 => 'a58b20173b22188467b722db37895683033bf00c', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\large', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\islarge', - 1 => 'sebastianbergmann\\codecoverage\\test\\testsize\\isgreaterthan', - 2 => 'sebastianbergmann\\codecoverage\\test\\testsize\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestSize/TestSize.php' => - array ( - 0 => '9a93d48899d90bd73f62e5dc5500ffb59f13d4da', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\testsize', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\unknown', - 1 => 'sebastianbergmann\\codecoverage\\test\\testsize\\small', - 2 => 'sebastianbergmann\\codecoverage\\test\\testsize\\medium', - 3 => 'sebastianbergmann\\codecoverage\\test\\testsize\\large', - 4 => 'sebastianbergmann\\codecoverage\\test\\testsize\\isknown', - 5 => 'sebastianbergmann\\codecoverage\\test\\testsize\\isunknown', - 6 => 'sebastianbergmann\\codecoverage\\test\\testsize\\issmall', - 7 => 'sebastianbergmann\\codecoverage\\test\\testsize\\ismedium', - 8 => 'sebastianbergmann\\codecoverage\\test\\testsize\\islarge', - 9 => 'sebastianbergmann\\codecoverage\\test\\testsize\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestSize/Small.php' => - array ( - 0 => '8605e68b109490785f152628bcdc67cb4129155e', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\small', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\testsize\\issmall', - 1 => 'sebastianbergmann\\codecoverage\\test\\testsize\\isgreaterthan', - 2 => 'sebastianbergmann\\codecoverage\\test\\testsize\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Util/Percentage.php' => - array ( - 0 => '71a3f15bc19a04500562170ac90698a100b6ca75', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\util\\percentage', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\util\\fromfractionandtotal', - 1 => 'sebastianbergmann\\codecoverage\\util\\__construct', - 2 => 'sebastianbergmann\\codecoverage\\util\\asfloat', - 3 => 'sebastianbergmann\\codecoverage\\util\\asstring', - 4 => 'sebastianbergmann\\codecoverage\\util\\asfixedwidthstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Util/Filesystem.php' => - array ( - 0 => 'f68fd8db638f50702a8b3639b3d6cfabaf80b427', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\util\\filesystem', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\util\\createdirectory', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestStatus/Unknown.php' => - array ( - 0 => 'aa95d56243dbba5c9edfdd5950a2ff555c87235f', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\unknown', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\isunknown', - 1 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestStatus/Known.php' => - array ( - 0 => '413db170cd78681759bfbc7ddf0713913c3ad930', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\known', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\isknown', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestStatus/Success.php' => - array ( - 0 => '08482a3d9be9bc31d9199c7caafb17b48fdcb404', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\success', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\issuccess', - 1 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestStatus/Failure.php' => - array ( - 0 => 'd56fea72c30916c2a830908fe998ff378ca6045f', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\failure', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\isfailure', - 1 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/TestStatus/TestStatus.php' => - array ( - 0 => '15becf16e8270de063fa3a051c4adbc08032a001', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\teststatus', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\unknown', - 1 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\success', - 2 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\failure', - 3 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\isknown', - 4 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\isunknown', - 5 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\issuccess', - 6 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\isfailure', - 7 => 'sebastianbergmann\\codecoverage\\test\\teststatus\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Driver/Selector.php' => - array ( - 0 => '5968005462c3ef1d39a704b6322617718417fb6d', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\selector', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\forlinecoverage', - 1 => 'sebastianbergmann\\codecoverage\\driver\\forlineandpathcoverage', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Driver/PcovDriver.php' => - array ( - 0 => '76decfa12ff33c17185db747e3599a332476a1d8', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\', - 1 => 'sebastianbergmann\\codecoverage\\driver\\pcovdriver', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\driver\\start', - 2 => 'sebastianbergmann\\codecoverage\\driver\\stop', - 3 => 'sebastianbergmann\\codecoverage\\driver\\nameandversion', - 4 => 'sebastianbergmann\\codecoverage\\driver\\ensurepcovisavailable', - ), - 3 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\pcov', - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Driver/Driver.php' => - array ( - 0 => 'c39fd75f019750d4d54aeb74afd1b74b20572582', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\driver', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\cancollectbranchandpathcoverage', - 1 => 'sebastianbergmann\\codecoverage\\driver\\collectsbranchandpathcoverage', - 2 => 'sebastianbergmann\\codecoverage\\driver\\enablebranchandpathcoverage', - 3 => 'sebastianbergmann\\codecoverage\\driver\\disablebranchandpathcoverage', - 4 => 'sebastianbergmann\\codecoverage\\driver\\candetectdeadcode', - 5 => 'sebastianbergmann\\codecoverage\\driver\\detectsdeadcode', - 6 => 'sebastianbergmann\\codecoverage\\driver\\enabledeadcodedetection', - 7 => 'sebastianbergmann\\codecoverage\\driver\\disabledeadcodedetection', - 8 => 'sebastianbergmann\\codecoverage\\driver\\nameandversion', - 9 => 'sebastianbergmann\\codecoverage\\driver\\start', - 10 => 'sebastianbergmann\\codecoverage\\driver\\stop', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Driver/XdebugDriver.php' => - array ( - 0 => 'a320fa572871f59e0a45d30512b09060ac2a998e', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\xdebugdriver', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\driver\\cancollectbranchandpathcoverage', - 2 => 'sebastianbergmann\\codecoverage\\driver\\candetectdeadcode', - 3 => 'sebastianbergmann\\codecoverage\\driver\\start', - 4 => 'sebastianbergmann\\codecoverage\\driver\\stop', - 5 => 'sebastianbergmann\\codecoverage\\driver\\nameandversion', - 6 => 'sebastianbergmann\\codecoverage\\driver\\ensurexdebugisavailable', - 7 => 'sebastianbergmann\\codecoverage\\driver\\ensurexdebugcodecoveragefeatureisenabled', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Version.php' => - array ( - 0 => '3dcaa045aaa18a4e81f789cc1cb0cffa6e14aa66', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\version', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\id', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Filter.php' => - array ( - 0 => 'dc164d14cbc3fa708c796c18e83f8bec30dfed3c', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\filter', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\includefiles', - 1 => 'sebastianbergmann\\codecoverage\\includefile', - 2 => 'sebastianbergmann\\codecoverage\\isfile', - 3 => 'sebastianbergmann\\codecoverage\\isexcluded', - 4 => 'sebastianbergmann\\codecoverage\\files', - 5 => 'sebastianbergmann\\codecoverage\\isempty', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/StaticAnalysis/CodeUnitFindingVisitor.php' => - array ( - 0 => 'e3311d2bc5202197da4ace866c383b8aa92593da', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\codeunitfindingvisitor', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\enternode', - 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\classes', - 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\traits', - 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\functions', - 4 => 'sebastianbergmann\\codecoverage\\staticanalysis\\cyclomaticcomplexity', - 5 => 'sebastianbergmann\\codecoverage\\staticanalysis\\signature', - 6 => 'sebastianbergmann\\codecoverage\\staticanalysis\\type', - 7 => 'sebastianbergmann\\codecoverage\\staticanalysis\\visibility', - 8 => 'sebastianbergmann\\codecoverage\\staticanalysis\\processclass', - 9 => 'sebastianbergmann\\codecoverage\\staticanalysis\\processtrait', - 10 => 'sebastianbergmann\\codecoverage\\staticanalysis\\processmethod', - 11 => 'sebastianbergmann\\codecoverage\\staticanalysis\\processfunction', - 12 => 'sebastianbergmann\\codecoverage\\staticanalysis\\namespace', - 13 => 'sebastianbergmann\\codecoverage\\staticanalysis\\uniontypeasstring', - 14 => 'sebastianbergmann\\codecoverage\\staticanalysis\\intersectiontypeasstring', - 15 => 'sebastianbergmann\\codecoverage\\staticanalysis\\typeasstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/StaticAnalysis/FileAnalyser.php' => - array ( - 0 => '3aa59bd9df6ce6076fbc5c34672b877ab2f56db4', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\fileanalyser', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\classesin', - 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\traitsin', - 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\functionsin', - 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\linesofcodefor', - 4 => 'sebastianbergmann\\codecoverage\\staticanalysis\\executablelinesin', - 5 => 'sebastianbergmann\\codecoverage\\staticanalysis\\ignoredlinesfor', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/StaticAnalysis/CachingFileAnalyser.php' => - array ( - 0 => '19988dcff491cf41ed9305cfdc638f0864bf70d0', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\cachingfileanalyser', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\classesin', - 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\traitsin', - 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\functionsin', - 4 => 'sebastianbergmann\\codecoverage\\staticanalysis\\linesofcodefor', - 5 => 'sebastianbergmann\\codecoverage\\staticanalysis\\executablelinesin', - 6 => 'sebastianbergmann\\codecoverage\\staticanalysis\\ignoredlinesfor', - 7 => 'sebastianbergmann\\codecoverage\\staticanalysis\\process', - 8 => 'sebastianbergmann\\codecoverage\\staticanalysis\\read', - 9 => 'sebastianbergmann\\codecoverage\\staticanalysis\\write', - 10 => 'sebastianbergmann\\codecoverage\\staticanalysis\\cachefile', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/StaticAnalysis/CacheWarmer.php' => - array ( - 0 => 'e65da10e0658a3efed33d2c536c42e87629a1dc6', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\cachewarmer', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\warmcache', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/StaticAnalysis/ExecutableLinesFindingVisitor.php' => - array ( - 0 => '1d17ab8519f4d3959bd77ae7de1756e32228baf4', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\executablelinesfindingvisitor', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\enternode', - 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\aftertraverse', - 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\executablelinesgroupedbybranch', - 4 => 'sebastianbergmann\\codecoverage\\staticanalysis\\setlinebranch', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/StaticAnalysis/IgnoredLinesFindingVisitor.php' => - array ( - 0 => '779d5dd16e78106759bdbc25d7ef7cbf820eca9b', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\ignoredlinesfindingvisitor', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\enternode', - 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\ignoredlines', - 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\processdoccomment', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/StaticAnalysis/ParsingFileAnalyser.php' => - array ( - 0 => 'a1c5036d401217718c74f36365d3af91ed1fb740', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\parsingfileanalyser', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\classesin', - 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\traitsin', - 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\functionsin', - 4 => 'sebastianbergmann\\codecoverage\\staticanalysis\\linesofcodefor', - 5 => 'sebastianbergmann\\codecoverage\\staticanalysis\\executablelinesin', - 6 => 'sebastianbergmann\\codecoverage\\staticanalysis\\ignoredlinesfor', - 7 => 'sebastianbergmann\\codecoverage\\staticanalysis\\analyse', - 8 => 'sebastianbergmann\\codecoverage\\staticanalysis\\findlinesignoredbylinebasedannotations', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Cobertura.php' => - array ( - 0 => '7eccec298f335d5765056e1a8cef97f821a79d62', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\cobertura', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\process', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Clover.php' => - array ( - 0 => '600fff84c40b0ff7bc69e0df6e9f3caf2d82d511', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\clover', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\process', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php' => - array ( - 0 => '4f63fd04b992f7581587a4c452ae3f27e17b573f', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\html\\dashboard', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\html\\render', - 1 => 'sebastianbergmann\\codecoverage\\report\\html\\activebreadcrumb', - 2 => 'sebastianbergmann\\codecoverage\\report\\html\\complexity', - 3 => 'sebastianbergmann\\codecoverage\\report\\html\\coveragedistribution', - 4 => 'sebastianbergmann\\codecoverage\\report\\html\\insufficientcoverage', - 5 => 'sebastianbergmann\\codecoverage\\report\\html\\projectrisks', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php' => - array ( - 0 => '80e70639fde678f98d7244d5842ad65181ee2352', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\html\\file', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\html\\render', - 1 => 'sebastianbergmann\\codecoverage\\report\\html\\renderitems', - 2 => 'sebastianbergmann\\codecoverage\\report\\html\\rendertraitorclassitems', - 3 => 'sebastianbergmann\\codecoverage\\report\\html\\renderfunctionitems', - 4 => 'sebastianbergmann\\codecoverage\\report\\html\\renderfunctionormethoditem', - 5 => 'sebastianbergmann\\codecoverage\\report\\html\\rendersourcewithlinecoverage', - 6 => 'sebastianbergmann\\codecoverage\\report\\html\\rendersourcewithbranchcoverage', - 7 => 'sebastianbergmann\\codecoverage\\report\\html\\rendersourcewithpathcoverage', - 8 => 'sebastianbergmann\\codecoverage\\report\\html\\renderbranchstructure', - 9 => 'sebastianbergmann\\codecoverage\\report\\html\\renderbranchlines', - 10 => 'sebastianbergmann\\codecoverage\\report\\html\\renderpathstructure', - 11 => 'sebastianbergmann\\codecoverage\\report\\html\\renderpathlines', - 12 => 'sebastianbergmann\\codecoverage\\report\\html\\renderline', - 13 => 'sebastianbergmann\\codecoverage\\report\\html\\loadfile', - 14 => 'sebastianbergmann\\codecoverage\\report\\html\\abbreviateclassname', - 15 => 'sebastianbergmann\\codecoverage\\report\\html\\abbreviatemethodname', - 16 => 'sebastianbergmann\\codecoverage\\report\\html\\createpopovercontentfortest', - 17 => 'sebastianbergmann\\codecoverage\\report\\html\\iscomment', - 18 => 'sebastianbergmann\\codecoverage\\report\\html\\isinlinehtml', - 19 => 'sebastianbergmann\\codecoverage\\report\\html\\iskeyword', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Directory.php' => - array ( - 0 => 'cfdf48c6e903b184956fd34142dff260e5ec3e2a', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\html\\directory', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\html\\render', - 1 => 'sebastianbergmann\\codecoverage\\report\\html\\renderitem', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Html/Colors.php' => - array ( - 0 => 'd1c1f96319862f1cf530322c1d89375b69922a49', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\html\\colors', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\html\\default', - 1 => 'sebastianbergmann\\codecoverage\\report\\html\\from', - 2 => 'sebastianbergmann\\codecoverage\\report\\html\\__construct', - 3 => 'sebastianbergmann\\codecoverage\\report\\html\\successlow', - 4 => 'sebastianbergmann\\codecoverage\\report\\html\\successmedium', - 5 => 'sebastianbergmann\\codecoverage\\report\\html\\successhigh', - 6 => 'sebastianbergmann\\codecoverage\\report\\html\\warning', - 7 => 'sebastianbergmann\\codecoverage\\report\\html\\danger', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer.php' => - array ( - 0 => 'f9745384572a91895e79784853bcfba9987b527d', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\html\\renderer', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\html\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\html\\renderitemtemplate', - 2 => 'sebastianbergmann\\codecoverage\\report\\html\\setcommontemplatevariables', - 3 => 'sebastianbergmann\\codecoverage\\report\\html\\breadcrumbs', - 4 => 'sebastianbergmann\\codecoverage\\report\\html\\activebreadcrumb', - 5 => 'sebastianbergmann\\codecoverage\\report\\html\\inactivebreadcrumb', - 6 => 'sebastianbergmann\\codecoverage\\report\\html\\pathtoroot', - 7 => 'sebastianbergmann\\codecoverage\\report\\html\\coveragebar', - 8 => 'sebastianbergmann\\codecoverage\\report\\html\\colorlevel', - 9 => 'sebastianbergmann\\codecoverage\\report\\html\\runtimestring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Html/CustomCssFile.php' => - array ( - 0 => '8ca667c71c3c8163c86f1b88d3ea5cdecb9bb967', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\html\\customcssfile', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\html\\default', - 1 => 'sebastianbergmann\\codecoverage\\report\\html\\from', - 2 => 'sebastianbergmann\\codecoverage\\report\\html\\__construct', - 3 => 'sebastianbergmann\\codecoverage\\report\\html\\path', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Html/Facade.php' => - array ( - 0 => '232e9fb6aa784f28acbe801da7bcd795efd5c06e', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\html\\facade', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\html\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\html\\process', - 2 => 'sebastianbergmann\\codecoverage\\report\\html\\copyfiles', - 3 => 'sebastianbergmann\\codecoverage\\report\\html\\rendercss', - 4 => 'sebastianbergmann\\codecoverage\\report\\html\\directory', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Totals.php' => - array ( - 0 => 'd3bf0f55cba3634c37a37febdf2ff74a054533f8', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\totals', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\container', - 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\setnumlines', - 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\setnumclasses', - 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\setnumtraits', - 5 => 'sebastianbergmann\\codecoverage\\report\\xml\\setnummethods', - 6 => 'sebastianbergmann\\codecoverage\\report\\xml\\setnumfunctions', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/File.php' => - array ( - 0 => '47b770394d0c53d6a7baabb2179907c9d67e790e', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\file', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\totals', - 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\linecoverage', - 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\contextnode', - 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\dom', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Method.php' => - array ( - 0 => '7380f989600946f13cacf1551cafc6a879aa2be5', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\method', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\setsignature', - 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\setlines', - 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\settotals', - 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\setcrap', - 5 => 'sebastianbergmann\\codecoverage\\report\\xml\\setname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Unit.php' => - array ( - 0 => '39c8a91c0667a6178d155cf6858b3d01f7505652', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\unit', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\setlines', - 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\setcrap', - 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\setnamespace', - 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\addmethod', - 5 => 'sebastianbergmann\\codecoverage\\report\\xml\\setname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Tests.php' => - array ( - 0 => '6473070738d9d95c5642849bfa1dac084534bd20', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\tests', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\addtest', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Project.php' => - array ( - 0 => 'a02d2c58b6f879fa445e34486724fd37eb0eacb8', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\project', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\projectsourcedirectory', - 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\buildinformation', - 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\tests', - 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\asdom', - 5 => 'sebastianbergmann\\codecoverage\\report\\xml\\init', - 6 => 'sebastianbergmann\\codecoverage\\report\\xml\\setprojectsourcedirectory', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Node.php' => - array ( - 0 => 'fedaedc48ccbeb8ed32dab09acab3b4e7a671d1a', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\node', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\dom', - 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\totals', - 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\adddirectory', - 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\addfile', - 5 => 'sebastianbergmann\\codecoverage\\report\\xml\\setcontextnode', - 6 => 'sebastianbergmann\\codecoverage\\report\\xml\\contextnode', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Directory.php' => - array ( - 0 => 'ed3111b4cff6aef5708d13fdddacb1b17fc045d6', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\directory', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Coverage.php' => - array ( - 0 => 'ee31fbb57c5d73f08b1e93901a09c76cd51477b2', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\coverage', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\addtest', - 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\finalize', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Source.php' => - array ( - 0 => '96e456c73f12c9396afe9faff8c3ebe847a55e7c', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\source', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\setsourcecode', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php' => - array ( - 0 => '817777653c6ed484207aa709d003bf2be0b7e10d', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\buildinformation', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\setruntimeinformation', - 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\setbuildtime', - 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\setgeneratorversions', - 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\nodebyname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Report.php' => - array ( - 0 => '7e808cf82125b32b363a37a84bef844501d3cace', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\report', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\asdom', - 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\functionobject', - 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\classobject', - 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\traitobject', - 5 => 'sebastianbergmann\\codecoverage\\report\\xml\\source', - 6 => 'sebastianbergmann\\codecoverage\\report\\xml\\setname', - 7 => 'sebastianbergmann\\codecoverage\\report\\xml\\unitobject', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Xml/Facade.php' => - array ( - 0 => '019cd02bf53cb658eba8999949f1eb3ba2d5d31c', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\facade', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\process', - 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\setbuildinformation', - 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\inittargetdirectory', - 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\processdirectory', - 5 => 'sebastianbergmann\\codecoverage\\report\\xml\\processfile', - 6 => 'sebastianbergmann\\codecoverage\\report\\xml\\processunit', - 7 => 'sebastianbergmann\\codecoverage\\report\\xml\\processfunction', - 8 => 'sebastianbergmann\\codecoverage\\report\\xml\\processtests', - 9 => 'sebastianbergmann\\codecoverage\\report\\xml\\settotals', - 10 => 'sebastianbergmann\\codecoverage\\report\\xml\\targetdirectory', - 11 => 'sebastianbergmann\\codecoverage\\report\\xml\\savedocument', - 12 => 'sebastianbergmann\\codecoverage\\report\\xml\\documentasstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Thresholds.php' => - array ( - 0 => '2e4775fec45cd34ef3d111b5e4163a346471833a', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\thresholds', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\default', - 1 => 'sebastianbergmann\\codecoverage\\report\\from', - 2 => 'sebastianbergmann\\codecoverage\\report\\__construct', - 3 => 'sebastianbergmann\\codecoverage\\report\\lowupperbound', - 4 => 'sebastianbergmann\\codecoverage\\report\\highlowerbound', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/PHP.php' => - array ( - 0 => 'cff6093a91ddd56e6f4cb51cb2354a98cb388d24', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\php', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\process', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Text.php' => - array ( - 0 => 'dbbb9c124cf7fffaaa7c8fbfeed4ee86824d69a9', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\text', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\process', - 2 => 'sebastianbergmann\\codecoverage\\report\\coveragecolor', - 3 => 'sebastianbergmann\\codecoverage\\report\\printcoveragecounts', - 4 => 'sebastianbergmann\\codecoverage\\report\\format', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Report/Crap4j.php' => - array ( - 0 => '712ca25a5b74ba3850385bdf771005bcbcd50c56', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\crap4j', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\process', - 2 => 'sebastianbergmann\\codecoverage\\report\\crapload', - 3 => 'sebastianbergmann\\codecoverage\\report\\roundvalue', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Node/File.php' => - array ( - 0 => '5c71bf72edd80d2589620d5620ca95f419dc82b0', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\node\\file', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\node\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\node\\count', - 2 => 'sebastianbergmann\\codecoverage\\node\\linecoveragedata', - 3 => 'sebastianbergmann\\codecoverage\\node\\functioncoveragedata', - 4 => 'sebastianbergmann\\codecoverage\\node\\testdata', - 5 => 'sebastianbergmann\\codecoverage\\node\\classes', - 6 => 'sebastianbergmann\\codecoverage\\node\\traits', - 7 => 'sebastianbergmann\\codecoverage\\node\\functions', - 8 => 'sebastianbergmann\\codecoverage\\node\\linesofcode', - 9 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablelines', - 10 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedlines', - 11 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablebranches', - 12 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedbranches', - 13 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablepaths', - 14 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedpaths', - 15 => 'sebastianbergmann\\codecoverage\\node\\numberofclasses', - 16 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedclasses', - 17 => 'sebastianbergmann\\codecoverage\\node\\numberoftraits', - 18 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedtraits', - 19 => 'sebastianbergmann\\codecoverage\\node\\numberofmethods', - 20 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedmethods', - 21 => 'sebastianbergmann\\codecoverage\\node\\numberoffunctions', - 22 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedfunctions', - 23 => 'sebastianbergmann\\codecoverage\\node\\calculatestatistics', - 24 => 'sebastianbergmann\\codecoverage\\node\\processclasses', - 25 => 'sebastianbergmann\\codecoverage\\node\\processtraits', - 26 => 'sebastianbergmann\\codecoverage\\node\\processfunctions', - 27 => 'sebastianbergmann\\codecoverage\\node\\newmethod', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Node/CrapIndex.php' => - array ( - 0 => 'b9449ac3869e6b9da3d46e180b0e1c298dbc2272', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\node\\crapindex', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\node\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\node\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Node/Builder.php' => - array ( - 0 => '0ab35dca585944129a6bf614d58e46f4f7d6bf30', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\node\\builder', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\node\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\node\\build', - 2 => 'sebastianbergmann\\codecoverage\\node\\additems', - 3 => 'sebastianbergmann\\codecoverage\\node\\builddirectorystructure', - 4 => 'sebastianbergmann\\codecoverage\\node\\reducepaths', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Node/AbstractNode.php' => - array ( - 0 => 'f9f357b11bca33f034da7f4a574393730656b216', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\node\\abstractnode', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\node\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\node\\name', - 2 => 'sebastianbergmann\\codecoverage\\node\\id', - 3 => 'sebastianbergmann\\codecoverage\\node\\pathasstring', - 4 => 'sebastianbergmann\\codecoverage\\node\\pathasarray', - 5 => 'sebastianbergmann\\codecoverage\\node\\parent', - 6 => 'sebastianbergmann\\codecoverage\\node\\percentageoftestedclasses', - 7 => 'sebastianbergmann\\codecoverage\\node\\percentageoftestedtraits', - 8 => 'sebastianbergmann\\codecoverage\\node\\percentageoftestedclassesandtraits', - 9 => 'sebastianbergmann\\codecoverage\\node\\percentageoftestedfunctions', - 10 => 'sebastianbergmann\\codecoverage\\node\\percentageoftestedmethods', - 11 => 'sebastianbergmann\\codecoverage\\node\\percentageoftestedfunctionsandmethods', - 12 => 'sebastianbergmann\\codecoverage\\node\\percentageofexecutedlines', - 13 => 'sebastianbergmann\\codecoverage\\node\\percentageofexecutedbranches', - 14 => 'sebastianbergmann\\codecoverage\\node\\percentageofexecutedpaths', - 15 => 'sebastianbergmann\\codecoverage\\node\\numberofclassesandtraits', - 16 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedclassesandtraits', - 17 => 'sebastianbergmann\\codecoverage\\node\\classesandtraits', - 18 => 'sebastianbergmann\\codecoverage\\node\\numberoffunctionsandmethods', - 19 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedfunctionsandmethods', - 20 => 'sebastianbergmann\\codecoverage\\node\\classes', - 21 => 'sebastianbergmann\\codecoverage\\node\\traits', - 22 => 'sebastianbergmann\\codecoverage\\node\\functions', - 23 => 'sebastianbergmann\\codecoverage\\node\\linesofcode', - 24 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablelines', - 25 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedlines', - 26 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablebranches', - 27 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedbranches', - 28 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablepaths', - 29 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedpaths', - 30 => 'sebastianbergmann\\codecoverage\\node\\numberofclasses', - 31 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedclasses', - 32 => 'sebastianbergmann\\codecoverage\\node\\numberoftraits', - 33 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedtraits', - 34 => 'sebastianbergmann\\codecoverage\\node\\numberofmethods', - 35 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedmethods', - 36 => 'sebastianbergmann\\codecoverage\\node\\numberoffunctions', - 37 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedfunctions', - 38 => 'sebastianbergmann\\codecoverage\\node\\processid', - 39 => 'sebastianbergmann\\codecoverage\\node\\processpath', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Node/Directory.php' => - array ( - 0 => 'eadde902ea7c3d199c4a7e9f902cd1d35ffd1cb6', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\node\\directory', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\node\\count', - 1 => 'sebastianbergmann\\codecoverage\\node\\getiterator', - 2 => 'sebastianbergmann\\codecoverage\\node\\adddirectory', - 3 => 'sebastianbergmann\\codecoverage\\node\\addfile', - 4 => 'sebastianbergmann\\codecoverage\\node\\directories', - 5 => 'sebastianbergmann\\codecoverage\\node\\files', - 6 => 'sebastianbergmann\\codecoverage\\node\\children', - 7 => 'sebastianbergmann\\codecoverage\\node\\classes', - 8 => 'sebastianbergmann\\codecoverage\\node\\traits', - 9 => 'sebastianbergmann\\codecoverage\\node\\functions', - 10 => 'sebastianbergmann\\codecoverage\\node\\linesofcode', - 11 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablelines', - 12 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedlines', - 13 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablebranches', - 14 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedbranches', - 15 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablepaths', - 16 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedpaths', - 17 => 'sebastianbergmann\\codecoverage\\node\\numberofclasses', - 18 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedclasses', - 19 => 'sebastianbergmann\\codecoverage\\node\\numberoftraits', - 20 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedtraits', - 21 => 'sebastianbergmann\\codecoverage\\node\\numberofmethods', - 22 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedmethods', - 23 => 'sebastianbergmann\\codecoverage\\node\\numberoffunctions', - 24 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedfunctions', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Node/Iterator.php' => - array ( - 0 => '071c579cb533f21b84e400b952eb0eb90fe6e004', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\node\\iterator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\node\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\node\\rewind', - 2 => 'sebastianbergmann\\codecoverage\\node\\valid', - 3 => 'sebastianbergmann\\codecoverage\\node\\key', - 4 => 'sebastianbergmann\\codecoverage\\node\\current', - 5 => 'sebastianbergmann\\codecoverage\\node\\next', - 6 => 'sebastianbergmann\\codecoverage\\node\\getchildren', - 7 => 'sebastianbergmann\\codecoverage\\node\\haschildren', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Data/RawCodeCoverageData.php' => - array ( - 0 => 'abfafb4924d78317578a45129821aa5068d70b86', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\data\\rawcodecoveragedata', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\data\\fromxdebugwithoutpathcoverage', - 1 => 'sebastianbergmann\\codecoverage\\data\\fromxdebugwithpathcoverage', - 2 => 'sebastianbergmann\\codecoverage\\data\\fromuncoveredfile', - 3 => 'sebastianbergmann\\codecoverage\\data\\__construct', - 4 => 'sebastianbergmann\\codecoverage\\data\\clear', - 5 => 'sebastianbergmann\\codecoverage\\data\\linecoverage', - 6 => 'sebastianbergmann\\codecoverage\\data\\functioncoverage', - 7 => 'sebastianbergmann\\codecoverage\\data\\removecoveragedataforfile', - 8 => 'sebastianbergmann\\codecoverage\\data\\keeplinecoveragedataonlyforlines', - 9 => 'sebastianbergmann\\codecoverage\\data\\markexecutablelinebybranch', - 10 => 'sebastianbergmann\\codecoverage\\data\\keepfunctioncoveragedataonlyforlines', - 11 => 'sebastianbergmann\\codecoverage\\data\\removecoveragedataforlines', - 12 => 'sebastianbergmann\\codecoverage\\data\\skipemptylines', - 13 => 'sebastianbergmann\\codecoverage\\data\\getemptylinesforfile', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Data/ProcessedCodeCoverageData.php' => - array ( - 0 => 'd00e801e275a710c217debcdb5bb3abe8b022b74', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\data\\processedcodecoveragedata', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\data\\initializeunseendata', - 1 => 'sebastianbergmann\\codecoverage\\data\\markcodeasexecutedbytestcase', - 2 => 'sebastianbergmann\\codecoverage\\data\\setlinecoverage', - 3 => 'sebastianbergmann\\codecoverage\\data\\linecoverage', - 4 => 'sebastianbergmann\\codecoverage\\data\\setfunctioncoverage', - 5 => 'sebastianbergmann\\codecoverage\\data\\functioncoverage', - 6 => 'sebastianbergmann\\codecoverage\\data\\coveredfiles', - 7 => 'sebastianbergmann\\codecoverage\\data\\renamefile', - 8 => 'sebastianbergmann\\codecoverage\\data\\merge', - 9 => 'sebastianbergmann\\codecoverage\\data\\priorityforline', - 10 => 'sebastianbergmann\\codecoverage\\data\\initpreviouslyunseenfunction', - 11 => 'sebastianbergmann\\codecoverage\\data\\initpreviouslyseenfunction', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/StaticAnalysisCacheNotConfiguredException.php' => - array ( - 0 => '5171f525858d3dc95c7ab369aea8255cbade747a', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysiscachenotconfiguredexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/UnintentionallyCoveredCodeException.php' => - array ( - 0 => '55774564373c60030059c7788c468bde7fc6e27e', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\unintentionallycoveredcodeexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\getunintentionallycoveredunits', - 2 => 'sebastianbergmann\\codecoverage\\tostring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/DirectoryCouldNotBeCreatedException.php' => - array ( - 0 => 'a8ee1d68bf7129412dc749bd67956f89029e9b86', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\util\\directorycouldnotbecreatedexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/ParserException.php' => - array ( - 0 => 'c26409359c3a33b442a381458cca03082850892e', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\parserexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/BranchAndPathCoverageNotSupportedException.php' => - array ( - 0 => '4d97113dfd5fc7061a8d54e823f595a0dd4e825d', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\branchandpathcoveragenotsupportedexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/ReflectionException.php' => - array ( - 0 => '8ffed9167ee166b937f865ade7c9544115b4701b', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\reflectionexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/XdebugNotAvailableException.php' => - array ( - 0 => '48ee4e143fa309d2b686d3e92d96bd1c7e9e3c3e', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\xdebugnotavailableexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/TestIdMissingException.php' => - array ( - 0 => 'e24c96b30884f04c17fd4a478b6f8da047e60fad', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\testidmissingexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/NoCodeCoverageDriverWithPathCoverageSupportAvailableException.php' => - array ( - 0 => '1f35323a933ced85755776e02a74b178e9f34353', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\nocodecoveragedriverwithpathcoveragesupportavailableexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/FileCouldNotBeWrittenException.php' => - array ( - 0 => '4b4f39d716f64078053d6dcff5803023fffc5426', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\filecouldnotbewrittenexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/XmlException.php' => - array ( - 0 => 'db4673016c1cd94a038419baa0712f8ff4dfb569', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\xmlexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/ReportAlreadyFinalizedException.php' => - array ( - 0 => 'eac90a88393de8c209c1fdae8f62f66429a184f7', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\reportalreadyfinalizedexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/WriteOperationFailedException.php' => - array ( - 0 => 'f75d4cfd0e5e25c128cb3a5e431b2252275dcf0d', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\writeoperationfailedexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php' => - array ( - 0 => '24d0d9939b7c3a3d540fd65bf97c771c1b25a0f9', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\invalidargumentexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/XdebugNotEnabledException.php' => - array ( - 0 => 'b16b47b5de097d7439410dc17c8ad43327365377', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\xdebugnotenabledexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/DeadCodeDetectionNotSupportedException.php' => - array ( - 0 => '916187a17ea1a17a88e2ba80a54f4a00201b8d48', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\deadcodedetectionnotsupportedexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/PathExistsButIsNotDirectoryException.php' => - array ( - 0 => 'bc3390322c06aa30d185234a321730977dc556c9', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\pathexistsbutisnotdirectoryexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/NoCodeCoverageDriverAvailableException.php' => - array ( - 0 => '946bfaaf140311811ff97aeced7161ec41f0f1f9', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\nocodecoveragedriveravailableexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/Exception.php' => - array ( - 0 => '0b964ff4c340596e66d278d1f225f966e2fb1dbd', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-code-coverage/src/Exception/PcovNotAvailableException.php' => - array ( - 0 => '4a2134aaa2570864e87b0264ed0d2a26136d1f03', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\pcovnotavailableexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\__construct', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/22/24/2224d829a91e793e9dfde9a72a1495f5c87a1770.php b/build/phpstan/cache/PHPStan/22/24/2224d829a91e793e9dfde9a72a1495f5c87a1770.php deleted file mode 100644 index 7cd69e7..0000000 --- a/build/phpstan/cache/PHPStan/22/24/2224d829a91e793e9dfde9a72a1495f5c87a1770.php +++ /dev/null @@ -1,28 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/code-unit-reverse-lookup/src/Wizard.php' => - array ( - 0 => '00c83b4dc0986fd9de1bb0438188f6444caabe1c', - 1 => - array ( - 0 => 'sebastianbergmann\\codeunitreverselookup\\wizard', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codeunitreverselookup\\lookup', - 1 => 'sebastianbergmann\\codeunitreverselookup\\updatelookuptable', - 2 => 'sebastianbergmann\\codeunitreverselookup\\processclassesandtraits', - 3 => 'sebastianbergmann\\codeunitreverselookup\\processfunctions', - 4 => 'sebastianbergmann\\codeunitreverselookup\\processfunctionormethod', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/29/e1/29e19bc71f3867ee7c4eb2c9fc2adf1a249bb080.php b/build/phpstan/cache/PHPStan/29/e1/29e19bc71f3867ee7c4eb2c9fc2adf1a249bb080.php deleted file mode 100644 index 9ae989c..0000000 --- a/build/phpstan/cache/PHPStan/29/e1/29e19bc71f3867ee7c4eb2c9fc2adf1a249bb080.php +++ /dev/null @@ -1,260 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Expect.php' => - array ( - 0 => '8055b66c2364b901934ef6b57c27f1d7b1496ed8', - 1 => - array ( - 0 => 'nette\\schema\\expect', - ), - 2 => - array ( - 0 => 'nette\\schema\\__callstatic', - 1 => 'nette\\schema\\type', - 2 => 'nette\\schema\\anyof', - 3 => 'nette\\schema\\structure', - 4 => 'nette\\schema\\from', - 5 => 'nette\\schema\\array', - 6 => 'nette\\schema\\arrayof', - 7 => 'nette\\schema\\listof', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/DynamicParameter.php' => - array ( - 0 => '4192e262c5c981d77aad158604c245d054f83e90', - 1 => - array ( - 0 => 'nette\\schema\\dynamicparameter', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/ValidationException.php' => - array ( - 0 => 'debe8d841f9dc68cc92527f0d6fb30ddc884d39a', - 1 => - array ( - 0 => 'nette\\schema\\validationexception', - ), - 2 => - array ( - 0 => 'nette\\schema\\__construct', - 1 => 'nette\\schema\\getmessages', - 2 => 'nette\\schema\\getmessageobjects', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Elements/Type.php' => - array ( - 0 => 'ce314fdc4a731e5d3d5999c86954ee5c2b9776ac', - 1 => - array ( - 0 => 'nette\\schema\\elements\\type', - ), - 2 => - array ( - 0 => 'nette\\schema\\elements\\__construct', - 1 => 'nette\\schema\\elements\\nullable', - 2 => 'nette\\schema\\elements\\mergedefaults', - 3 => 'nette\\schema\\elements\\dynamic', - 4 => 'nette\\schema\\elements\\min', - 5 => 'nette\\schema\\elements\\max', - 6 => 'nette\\schema\\elements\\items', - 7 => 'nette\\schema\\elements\\pattern', - 8 => 'nette\\schema\\elements\\normalize', - 9 => 'nette\\schema\\elements\\merge', - 10 => 'nette\\schema\\elements\\complete', - 11 => 'nette\\schema\\elements\\validateitems', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Elements/Structure.php' => - array ( - 0 => '0c281fc9427ca572c25a47af46579c29b1474e6e', - 1 => - array ( - 0 => 'nette\\schema\\elements\\structure', - ), - 2 => - array ( - 0 => 'nette\\schema\\elements\\__construct', - 1 => 'nette\\schema\\elements\\default', - 2 => 'nette\\schema\\elements\\min', - 3 => 'nette\\schema\\elements\\max', - 4 => 'nette\\schema\\elements\\otheritems', - 5 => 'nette\\schema\\elements\\skipdefaults', - 6 => 'nette\\schema\\elements\\extend', - 7 => 'nette\\schema\\elements\\getshape', - 8 => 'nette\\schema\\elements\\normalize', - 9 => 'nette\\schema\\elements\\merge', - 10 => 'nette\\schema\\elements\\complete', - 11 => 'nette\\schema\\elements\\validateitems', - 12 => 'nette\\schema\\elements\\completedefault', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Elements/Base.php' => - array ( - 0 => '5f17f0632b72113e75e11c4a3320bcf02efe9703', - 1 => - array ( - 0 => 'nette\\schema\\elements\\base', - ), - 2 => - array ( - 0 => 'nette\\schema\\elements\\default', - 1 => 'nette\\schema\\elements\\required', - 2 => 'nette\\schema\\elements\\before', - 3 => 'nette\\schema\\elements\\castto', - 4 => 'nette\\schema\\elements\\transform', - 5 => 'nette\\schema\\elements\\assert', - 6 => 'nette\\schema\\elements\\deprecated', - 7 => 'nette\\schema\\elements\\completedefault', - 8 => 'nette\\schema\\elements\\donormalize', - 9 => 'nette\\schema\\elements\\dodeprecation', - 10 => 'nette\\schema\\elements\\dotransform', - 11 => 'nette\\schema\\elements\\dovalidate', - 12 => 'nette\\schema\\elements\\dovalidaterange', - 13 => 'nette\\schema\\elements\\dofinalize', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Elements/AnyOf.php' => - array ( - 0 => '414710a9e3262ad6d561e713773c3e268f34b44f', - 1 => - array ( - 0 => 'nette\\schema\\elements\\anyof', - ), - 2 => - array ( - 0 => 'nette\\schema\\elements\\__construct', - 1 => 'nette\\schema\\elements\\firstisdefault', - 2 => 'nette\\schema\\elements\\nullable', - 3 => 'nette\\schema\\elements\\dynamic', - 4 => 'nette\\schema\\elements\\normalize', - 5 => 'nette\\schema\\elements\\merge', - 6 => 'nette\\schema\\elements\\complete', - 7 => 'nette\\schema\\elements\\findalternative', - 8 => 'nette\\schema\\elements\\completedefault', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Context.php' => - array ( - 0 => 'a1f0b34eac134ead52282f3747a21b7d735c11d9', - 1 => - array ( - 0 => 'nette\\schema\\context', - ), - 2 => - array ( - 0 => 'nette\\schema\\adderror', - 1 => 'nette\\schema\\addwarning', - 2 => 'nette\\schema\\createchecker', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Processor.php' => - array ( - 0 => 'efa684244f9e6f22300316afa634a0102d8973ad', - 1 => - array ( - 0 => 'nette\\schema\\processor', - ), - 2 => - array ( - 0 => 'nette\\schema\\skipdefaults', - 1 => 'nette\\schema\\process', - 2 => 'nette\\schema\\processmultiple', - 3 => 'nette\\schema\\getwarnings', - 4 => 'nette\\schema\\throwserrors', - 5 => 'nette\\schema\\createcontext', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Schema.php' => - array ( - 0 => '24a8422581be56a210c0a4c610af3aeaaeca779a', - 1 => - array ( - 0 => 'nette\\schema\\schema', - ), - 2 => - array ( - 0 => 'nette\\schema\\normalize', - 1 => 'nette\\schema\\merge', - 2 => 'nette\\schema\\complete', - 3 => 'nette\\schema\\completedefault', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Helpers.php' => - array ( - 0 => '0f8d327f5a4b38e63b15474096cdda91292bb20e', - 1 => - array ( - 0 => 'nette\\schema\\helpers', - ), - 2 => - array ( - 0 => 'nette\\schema\\merge', - 1 => 'nette\\schema\\getpropertytype', - 2 => 'nette\\schema\\parseannotation', - 3 => 'nette\\schema\\formatvalue', - 4 => 'nette\\schema\\validatetype', - 5 => 'nette\\schema\\validaterange', - 6 => 'nette\\schema\\isinrange', - 7 => 'nette\\schema\\validatepattern', - 8 => 'nette\\schema\\getcaststrategy', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/schema/src/Schema/Message.php' => - array ( - 0 => '2525526ec0028931fc3d2ca20207a9060c564059', - 1 => - array ( - 0 => 'nette\\schema\\message', - ), - 2 => - array ( - 0 => 'nette\\schema\\__construct', - 1 => 'nette\\schema\\tostring', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/2a/0d/2a0d87dd02dee5a170322f7126827cc830ffb674.php b/build/phpstan/cache/PHPStan/2a/0d/2a0d87dd02dee5a170322f7126827cc830ffb674.php deleted file mode 100644 index d4d054b..0000000 --- a/build/phpstan/cache/PHPStan/2a/0d/2a0d87dd02dee5a170322f7126827cc830ffb674.php +++ /dev/null @@ -1,164 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/SQLite3Exception.php' => - array ( - 0 => '1bb73b922ce93a9ac9fe50baccccf014c0a47a15', - 1 => - array ( - 0 => 'sqlite3exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/DateError.php' => - array ( - 0 => '507d40e4c8120159602a96ad7f79f2747c075832', - 1 => - array ( - 0 => 'dateerror', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/Override.php' => - array ( - 0 => 'ea5a9d50cfb4d187336cf7aecac4ba7268777a20', - 1 => - array ( - 0 => 'override', - ), - 2 => - array ( - 0 => '__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/DateException.php' => - array ( - 0 => 'af1baabcbe518784f6f8cec728df655e5f7d26a9', - 1 => - array ( - 0 => 'dateexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/DateInvalidOperationException.php' => - array ( - 0 => 'c514a879a3544566510c2c0a91b1b1a082f1e59e', - 1 => - array ( - 0 => 'dateinvalidoperationexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/DateObjectError.php' => - array ( - 0 => '5ecda63e0c1a1d420422a90b060c5b9a82b3b856', - 1 => - array ( - 0 => 'dateobjecterror', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedPeriodStringException.php' => - array ( - 0 => 'c8a6e7796fbec0c3b1a6db401a897ddc128f133b', - 1 => - array ( - 0 => 'datemalformedperiodstringexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedStringException.php' => - array ( - 0 => '5a2b12bd3f5b10658acf4d9f0c8c9581218a099a', - 1 => - array ( - 0 => 'datemalformedstringexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/DateRangeError.php' => - array ( - 0 => '95434544bd2764aa084667729cc6a9c5b10db9e3', - 1 => - array ( - 0 => 'daterangeerror', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/DateInvalidTimeZoneException.php' => - array ( - 0 => '9dd3725abd945fff1eecdccda915e4fe5e13f4fe', - 1 => - array ( - 0 => 'dateinvalidtimezoneexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedIntervalStringException.php' => - array ( - 0 => 'dbd4ce64cc4cb83a81cacb01dc9a7e2e02beaea5', - 1 => - array ( - 0 => 'datemalformedintervalstringexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/39/7e/397e1a2bbf979b2bcce48b710df4522487bdb71d.php b/build/phpstan/cache/PHPStan/39/7e/397e1a2bbf979b2bcce48b710df4522487bdb71d.php deleted file mode 100644 index 8c5a048..0000000 --- a/build/phpstan/cache/PHPStan/39/7e/397e1a2bbf979b2bcce48b710df4522487bdb71d.php +++ /dev/null @@ -1,106 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-timer/src/ResourceUsageFormatter.php' => - array ( - 0 => 'c89198c7ee4a06fb1337ba8af9ed1440d3a45a4a', - 1 => - array ( - 0 => 'sebastianbergmann\\timer\\resourceusageformatter', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\timer\\resourceusage', - 1 => 'sebastianbergmann\\timer\\resourceusagesincestartofrequest', - 2 => 'sebastianbergmann\\timer\\bytestostring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-timer/src/exceptions/NoActiveTimerException.php' => - array ( - 0 => '83b14a0d942e084460fc373c896ecf868ea4b7b7', - 1 => - array ( - 0 => 'sebastianbergmann\\timer\\noactivetimerexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-timer/src/exceptions/TimeSinceStartOfRequestNotAvailableException.php' => - array ( - 0 => '31c00ec28beba93d9853845c77887597821c9ee6', - 1 => - array ( - 0 => 'sebastianbergmann\\timer\\timesincestartofrequestnotavailableexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-timer/src/exceptions/Exception.php' => - array ( - 0 => '585b1208820c28f65d4ccebe577ca93444b2364c', - 1 => - array ( - 0 => 'sebastianbergmann\\timer\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-timer/src/Timer.php' => - array ( - 0 => '98c58a0323a73d447c560c257e7015e26e5d7bdd', - 1 => - array ( - 0 => 'sebastianbergmann\\timer\\timer', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\timer\\start', - 1 => 'sebastianbergmann\\timer\\stop', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-timer/src/Duration.php' => - array ( - 0 => '0fe375970a9fb84e9ac087e528852dc16adc5774', - 1 => - array ( - 0 => 'sebastianbergmann\\timer\\duration', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\timer\\frommicroseconds', - 1 => 'sebastianbergmann\\timer\\fromnanoseconds', - 2 => 'sebastianbergmann\\timer\\__construct', - 3 => 'sebastianbergmann\\timer\\asnanoseconds', - 4 => 'sebastianbergmann\\timer\\asmicroseconds', - 5 => 'sebastianbergmann\\timer\\asmilliseconds', - 6 => 'sebastianbergmann\\timer\\asseconds', - 7 => 'sebastianbergmann\\timer\\asstring', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/3b/cf/3bcfb0e52ab56e79b0cc84a8c34dd2fce9305585.php b/build/phpstan/cache/PHPStan/3b/cf/3bcfb0e52ab56e79b0cc84a8c34dd2fce9305585.php deleted file mode 100644 index 606a968..0000000 --- a/build/phpstan/cache/PHPStan/3b/cf/3bcfb0e52ab56e79b0cc84a8c34dd2fce9305585.php +++ /dev/null @@ -1,22 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/config/twilio_verify.php' => - array ( - 0 => 'a8f5ea7aad80874a9906da3b90cfb199a560f422', - 1 => - array ( - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/49/43/4943bcb54a2a84c6cb812a7bf78fc212b6bb9b96.php b/build/phpstan/cache/PHPStan/49/43/4943bcb54a2a84c6cb812a7bf78fc212b6bb9b96.php deleted file mode 100644 index cbca291..0000000 --- a/build/phpstan/cache/PHPStan/49/43/4943bcb54a2a84c6cb812a7bf78fc212b6bb9b96.php +++ /dev/null @@ -1,120 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/lines-of-code/src/LineCountingVisitor.php' => - array ( - 0 => '9da2fbce123885e666c8f040a3b005b4d9585ffe', - 1 => - array ( - 0 => 'sebastianbergmann\\linesofcode\\linecountingvisitor', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\linesofcode\\__construct', - 1 => 'sebastianbergmann\\linesofcode\\enternode', - 2 => 'sebastianbergmann\\linesofcode\\result', - 3 => 'sebastianbergmann\\linesofcode\\comments', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/lines-of-code/src/LinesOfCode.php' => - array ( - 0 => '5cc86f125be2fe1b73cd0d956190ae29437a7b2e', - 1 => - array ( - 0 => 'sebastianbergmann\\linesofcode\\linesofcode', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\linesofcode\\__construct', - 1 => 'sebastianbergmann\\linesofcode\\linesofcode', - 2 => 'sebastianbergmann\\linesofcode\\commentlinesofcode', - 3 => 'sebastianbergmann\\linesofcode\\noncommentlinesofcode', - 4 => 'sebastianbergmann\\linesofcode\\logicallinesofcode', - 5 => 'sebastianbergmann\\linesofcode\\plus', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/lines-of-code/src/Counter.php' => - array ( - 0 => '8dd8bef677e9ae4201d75eb7eddcd6a2cc8b62b7', - 1 => - array ( - 0 => 'sebastianbergmann\\linesofcode\\counter', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\linesofcode\\countinsourcefile', - 1 => 'sebastianbergmann\\linesofcode\\countinsourcestring', - 2 => 'sebastianbergmann\\linesofcode\\countinabstractsyntaxtree', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/lines-of-code/src/Exception/RuntimeException.php' => - array ( - 0 => '846eefcf2a00c4b39378c358f9f9fdf591fa14c6', - 1 => - array ( - 0 => 'sebastianbergmann\\linesofcode\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/lines-of-code/src/Exception/NegativeValueException.php' => - array ( - 0 => '2a5c2802c7e7237357d1f01eb112bb9e745e5f1b', - 1 => - array ( - 0 => 'sebastianbergmann\\linesofcode\\negativevalueexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/lines-of-code/src/Exception/IllogicalValuesException.php' => - array ( - 0 => 'f6aa84e6523cf722c342e5354720cef59f133e23', - 1 => - array ( - 0 => 'sebastianbergmann\\linesofcode\\illogicalvaluesexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/lines-of-code/src/Exception/Exception.php' => - array ( - 0 => '8f85e6aa5c47b0c642b4d0e38955cc8e25ad58e5', - 1 => - array ( - 0 => 'sebastianbergmann\\linesofcode\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/59/4f/594f1d5b5de228c969a5f59ae27f4c8618ada4ed.php b/build/phpstan/cache/PHPStan/59/4f/594f1d5b5de228c969a5f59ae27f4c8618ada4ed.php deleted file mode 100644 index b5b2de6..0000000 --- a/build/phpstan/cache/PHPStan/59/4f/594f1d5b5de228c969a5f59ae27f4c8618ada4ed.php +++ /dev/null @@ -1,145 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/theseer/tokenizer/src/Token.php' => - array ( - 0 => '72dfc3764b5904229fffdbd455692c1f6f453e03', - 1 => - array ( - 0 => 'theseer\\tokenizer\\token', - ), - 2 => - array ( - 0 => 'theseer\\tokenizer\\__construct', - 1 => 'theseer\\tokenizer\\getline', - 2 => 'theseer\\tokenizer\\getname', - 3 => 'theseer\\tokenizer\\getvalue', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/theseer/tokenizer/src/NamespaceUriException.php' => - array ( - 0 => 'eb0118a14b93df2a4b029d40f6b8acbf110999d6', - 1 => - array ( - 0 => 'theseer\\tokenizer\\namespaceuriexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/theseer/tokenizer/src/TokenCollectionException.php' => - array ( - 0 => '9c4af3c1624653bf11e5a5291e3c1f447a147c39', - 1 => - array ( - 0 => 'theseer\\tokenizer\\tokencollectionexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/theseer/tokenizer/src/TokenCollection.php' => - array ( - 0 => 'f50292c8fae48d972b5cad5d871bfe7d783cf876', - 1 => - array ( - 0 => 'theseer\\tokenizer\\tokencollection', - ), - 2 => - array ( - 0 => 'theseer\\tokenizer\\addtoken', - 1 => 'theseer\\tokenizer\\current', - 2 => 'theseer\\tokenizer\\key', - 3 => 'theseer\\tokenizer\\next', - 4 => 'theseer\\tokenizer\\valid', - 5 => 'theseer\\tokenizer\\rewind', - 6 => 'theseer\\tokenizer\\count', - 7 => 'theseer\\tokenizer\\offsetexists', - 8 => 'theseer\\tokenizer\\offsetget', - 9 => 'theseer\\tokenizer\\offsetset', - 10 => 'theseer\\tokenizer\\offsetunset', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/theseer/tokenizer/src/Tokenizer.php' => - array ( - 0 => 'c917fe54262f1eff4e50e00a4cb3c436dffa88d8', - 1 => - array ( - 0 => 'theseer\\tokenizer\\tokenizer', - ), - 2 => - array ( - 0 => 'theseer\\tokenizer\\parse', - 1 => 'theseer\\tokenizer\\fillblanks', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/theseer/tokenizer/src/XMLSerializer.php' => - array ( - 0 => 'c244e71221bcdc26b37e6007934d8d5a12c96e67', - 1 => - array ( - 0 => 'theseer\\tokenizer\\xmlserializer', - ), - 2 => - array ( - 0 => 'theseer\\tokenizer\\__construct', - 1 => 'theseer\\tokenizer\\todom', - 2 => 'theseer\\tokenizer\\toxml', - 3 => 'theseer\\tokenizer\\addtoken', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/theseer/tokenizer/src/NamespaceUri.php' => - array ( - 0 => 'befc3004af28f6a2154c9b9b1203ef18e16a49f2', - 1 => - array ( - 0 => 'theseer\\tokenizer\\namespaceuri', - ), - 2 => - array ( - 0 => 'theseer\\tokenizer\\__construct', - 1 => 'theseer\\tokenizer\\asstring', - 2 => 'theseer\\tokenizer\\ensurevaliduri', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/theseer/tokenizer/src/Exception.php' => - array ( - 0 => 'f1984821ed73363a5ede6d1cd570898e01148c23', - 1 => - array ( - 0 => 'theseer\\tokenizer\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/5a/af/5aaf6a97372b42bc88398afdadbfa84cb31d2592.php b/build/phpstan/cache/PHPStan/5a/af/5aaf6a97372b42bc88398afdadbfa84cb31d2592.php deleted file mode 100644 index 222135b..0000000 --- a/build/phpstan/cache/PHPStan/5a/af/5aaf6a97372b42bc88398afdadbfa84cb31d2592.php +++ /dev/null @@ -1,154 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/complexity/src/Complexity/Complexity.php' => - array ( - 0 => 'c4b52cb9a20b7d380b9212c05cfa18baa1f8639b', - 1 => - array ( - 0 => 'sebastianbergmann\\complexity\\complexity', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\complexity\\__construct', - 1 => 'sebastianbergmann\\complexity\\name', - 2 => 'sebastianbergmann\\complexity\\cyclomaticcomplexity', - 3 => 'sebastianbergmann\\complexity\\isfunction', - 4 => 'sebastianbergmann\\complexity\\ismethod', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/complexity/src/Complexity/ComplexityCollectionIterator.php' => - array ( - 0 => 'f2f1c366dfca1f2d6747ce4a0046baaae4e09ce0', - 1 => - array ( - 0 => 'sebastianbergmann\\complexity\\complexitycollectioniterator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\complexity\\__construct', - 1 => 'sebastianbergmann\\complexity\\rewind', - 2 => 'sebastianbergmann\\complexity\\valid', - 3 => 'sebastianbergmann\\complexity\\key', - 4 => 'sebastianbergmann\\complexity\\current', - 5 => 'sebastianbergmann\\complexity\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/complexity/src/Complexity/ComplexityCollection.php' => - array ( - 0 => '6d6bfd6d40dec3ab1b0307fa7b6c97ef7725e8d9', - 1 => - array ( - 0 => 'sebastianbergmann\\complexity\\complexitycollection', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\complexity\\fromlist', - 1 => 'sebastianbergmann\\complexity\\__construct', - 2 => 'sebastianbergmann\\complexity\\asarray', - 3 => 'sebastianbergmann\\complexity\\getiterator', - 4 => 'sebastianbergmann\\complexity\\count', - 5 => 'sebastianbergmann\\complexity\\isempty', - 6 => 'sebastianbergmann\\complexity\\cyclomaticcomplexity', - 7 => 'sebastianbergmann\\complexity\\isfunction', - 8 => 'sebastianbergmann\\complexity\\ismethod', - 9 => 'sebastianbergmann\\complexity\\mergewith', - 10 => 'sebastianbergmann\\complexity\\sortbydescendingcyclomaticcomplexity', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/complexity/src/Calculator.php' => - array ( - 0 => 'b8042bf3f7eda0cb1441c6eda42151454e189174', - 1 => - array ( - 0 => 'sebastianbergmann\\complexity\\calculator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\complexity\\calculateforsourcefile', - 1 => 'sebastianbergmann\\complexity\\calculateforsourcestring', - 2 => 'sebastianbergmann\\complexity\\calculateforabstractsyntaxtree', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/complexity/src/Visitor/CyclomaticComplexityCalculatingVisitor.php' => - array ( - 0 => '1672f2af02daf3bf9f9f5618245efd0c50b03afa', - 1 => - array ( - 0 => 'sebastianbergmann\\complexity\\cyclomaticcomplexitycalculatingvisitor', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\complexity\\enternode', - 1 => 'sebastianbergmann\\complexity\\cyclomaticcomplexity', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/complexity/src/Visitor/ComplexityCalculatingVisitor.php' => - array ( - 0 => 'c746502b1b404069bde9066c3a11d9cb927520c8', - 1 => - array ( - 0 => 'sebastianbergmann\\complexity\\complexitycalculatingvisitor', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\complexity\\__construct', - 1 => 'sebastianbergmann\\complexity\\enternode', - 2 => 'sebastianbergmann\\complexity\\result', - 3 => 'sebastianbergmann\\complexity\\cyclomaticcomplexity', - 4 => 'sebastianbergmann\\complexity\\classmethodname', - 5 => 'sebastianbergmann\\complexity\\functionname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/complexity/src/Exception/RuntimeException.php' => - array ( - 0 => 'e8ff0c097319875f50b1ff0a4a184747bbf724ac', - 1 => - array ( - 0 => 'sebastianbergmann\\complexity\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/complexity/src/Exception/Exception.php' => - array ( - 0 => '022209ac794d1b2cef438ba5ac0dc80e1e84f66c', - 1 => - array ( - 0 => 'sebastianbergmann\\complexity\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/5b/39/5b39a2491b73c999e4428ad8f42774bd706e8563.php b/build/phpstan/cache/PHPStan/5b/39/5b39a2491b73c999e4428ad8f42774bd706e8563.php deleted file mode 100644 index e6d1ee5..0000000 --- a/build/phpstan/cache/PHPStan/5b/39/5b39a2491b73c999e4428ad8f42774bd706e8563.php +++ /dev/null @@ -1,27 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/version/src/Version.php' => - array ( - 0 => '3cc851321f987fa548ad171836abc846c2b73810', - 1 => - array ( - 0 => 'sebastianbergmann\\version', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\__construct', - 1 => 'sebastianbergmann\\asstring', - 2 => 'sebastianbergmann\\generate', - 3 => 'sebastianbergmann\\getgitinformation', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/5c/60/5c60e8ebac70223ee4fc1afa54484297f3327f43.php b/build/phpstan/cache/PHPStan/5c/60/5c60e8ebac70223ee4fc1afa54484297f3327f43.php deleted file mode 100644 index 58c8227..0000000 --- a/build/phpstan/cache/PHPStan/5c/60/5c60e8ebac70223ee4fc1afa54484297f3327f43.php +++ /dev/null @@ -1,60 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/environment/src/Runtime.php' => - array ( - 0 => '692bd98de23847dfab973a08267448975c0d9565', - 1 => - array ( - 0 => 'sebastianbergmann\\environment\\runtime', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\environment\\cancollectcodecoverage', - 1 => 'sebastianbergmann\\environment\\discardscomments', - 2 => 'sebastianbergmann\\environment\\performsjustintimecompilation', - 3 => 'sebastianbergmann\\environment\\getrawbinary', - 4 => 'sebastianbergmann\\environment\\getbinary', - 5 => 'sebastianbergmann\\environment\\getnamewithversion', - 6 => 'sebastianbergmann\\environment\\getnamewithversionandcodecoveragedriver', - 7 => 'sebastianbergmann\\environment\\getname', - 8 => 'sebastianbergmann\\environment\\getvendorurl', - 9 => 'sebastianbergmann\\environment\\getversion', - 10 => 'sebastianbergmann\\environment\\hasxdebug', - 11 => 'sebastianbergmann\\environment\\isphp', - 12 => 'sebastianbergmann\\environment\\isphpdbg', - 13 => 'sebastianbergmann\\environment\\hasphpdbgcodecoverage', - 14 => 'sebastianbergmann\\environment\\haspcov', - 15 => 'sebastianbergmann\\environment\\getcurrentsettings', - 16 => 'sebastianbergmann\\environment\\isopcacheactive', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/environment/src/Console.php' => - array ( - 0 => '1ab1138f7b3619619292f9b657fa68872fae6046', - 1 => - array ( - 0 => 'sebastianbergmann\\environment\\console', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\environment\\hascolorsupport', - 1 => 'sebastianbergmann\\environment\\getnumberofcolumns', - 2 => 'sebastianbergmann\\environment\\isinteractive', - 3 => 'sebastianbergmann\\environment\\iswindows', - 4 => 'sebastianbergmann\\environment\\getnumberofcolumnsinteractive', - 5 => 'sebastianbergmann\\environment\\getnumberofcolumnswindows', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/65/c9/65c93509bed6d8a6b0d49b45753619d3f899cbe5.php b/build/phpstan/cache/PHPStan/65/c9/65c93509bed6d8a6b0d49b45753619d3f899cbe5.php deleted file mode 100644 index a892fc6..0000000 --- a/build/phpstan/cache/PHPStan/65/c9/65c93509bed6d8a6b0d49b45753619d3f899cbe5.php +++ /dev/null @@ -1,70 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-text-template/src/exceptions/RuntimeException.php' => - array ( - 0 => '7a19b120a8deaa8f0f3271cf2385276fbc4461ec', - 1 => - array ( - 0 => 'sebastianbergmann\\template\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-text-template/src/exceptions/InvalidArgumentException.php' => - array ( - 0 => '02fc5bf6252c6d418dcaee916fce2f3690251349', - 1 => - array ( - 0 => 'sebastianbergmann\\template\\invalidargumentexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-text-template/src/exceptions/Exception.php' => - array ( - 0 => '0a38bd1cb58cb6ab0f43b58f95608743ae360bfa', - 1 => - array ( - 0 => 'sebastianbergmann\\template\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-text-template/src/Template.php' => - array ( - 0 => 'f94bbe8dc3e30fba039d7952edf29e8ad1d17387', - 1 => - array ( - 0 => 'sebastianbergmann\\template\\template', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\template\\__construct', - 1 => 'sebastianbergmann\\template\\setvar', - 2 => 'sebastianbergmann\\template\\render', - 3 => 'sebastianbergmann\\template\\renderto', - 4 => 'sebastianbergmann\\template\\loadtemplatefile', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/77/33/77335fdf6ec7ec7dc6f397cfeaa3b474122be1ea.php b/build/phpstan/cache/PHPStan/77/33/77335fdf6ec7ec7dc6f397cfeaa3b474122be1ea.php deleted file mode 100644 index 673e7b4..0000000 --- a/build/phpstan/cache/PHPStan/77/33/77335fdf6ec7ec7dc6f397cfeaa3b474122be1ea.php +++ /dev/null @@ -1,23 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php' => - array ( - 0 => 'b44d72072bdc49d6c62ab0216e925fa0146c7a74', - 1 => - array ( - 0 => 'normalizer', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/7e/da/7eda7f716177026b79ab4149c9fc4e9a79b136aa.php b/build/phpstan/cache/PHPStan/7e/da/7eda7f716177026b79ab4149c9fc4e9a79b136aa.php deleted file mode 100644 index e645f36..0000000 --- a/build/phpstan/cache/PHPStan/7e/da/7eda7f716177026b79ab4149c9fc4e9a79b136aa.php +++ /dev/null @@ -1,315 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/ArrayComparator.php' => - array ( - 0 => '0762c0b8f0283f3a12eba475e68bb7e18136f2dd', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\arraycomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - 2 => 'sebastianbergmann\\comparator\\indent', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/TypeComparator.php' => - array ( - 0 => '03c9915bfa9ebe20e06941c7920660985fc92f4f', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\typecomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/NumberComparator.php' => - array ( - 0 => '4fe968b48b5ec6f58911f7bacc643d3083545c66', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\numbercomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/Factory.php' => - array ( - 0 => '9b6254ffac6ddd1c9173d0ae37f852de3d9bbda1', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\factory', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\getinstance', - 1 => 'sebastianbergmann\\comparator\\__construct', - 2 => 'sebastianbergmann\\comparator\\getcomparatorfor', - 3 => 'sebastianbergmann\\comparator\\register', - 4 => 'sebastianbergmann\\comparator\\unregister', - 5 => 'sebastianbergmann\\comparator\\reset', - 6 => 'sebastianbergmann\\comparator\\registerdefaultcomparators', - 7 => 'sebastianbergmann\\comparator\\registerdefaultcomparator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/EnumerationComparator.php' => - array ( - 0 => '8bf8b606dbe97642f5335b7eaabe7ce2a25abf70', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\enumerationcomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/ResourceComparator.php' => - array ( - 0 => '0481704c620be00d69ac3c88436c0e94a34d7f11', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\resourcecomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/MockObjectComparator.php' => - array ( - 0 => 'a2456a9ee515f4a6addd8dc6fd039b4990797cb9', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\mockobjectcomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\toarray', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/ObjectComparator.php' => - array ( - 0 => 'b4afaa81066faf1196f2a31bc54440c2274266b1', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\objectcomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - 2 => 'sebastianbergmann\\comparator\\toarray', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/NumericComparator.php' => - array ( - 0 => '7a690849336b304a0fad6156efb1786386676947', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\numericcomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - 2 => 'sebastianbergmann\\comparator\\isinfinite', - 3 => 'sebastianbergmann\\comparator\\isnan', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/exceptions/RuntimeException.php' => - array ( - 0 => 'd003040d7e1f41055e36d6ffc4386fa5b69a0657', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/exceptions/Exception.php' => - array ( - 0 => 'f1e8aa746d62e8f73b40edc650b39bac4bb05e66', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/DateTimeComparator.php' => - array ( - 0 => '3242d8422b096e75ff332c4964dbe8819b5c58c5', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\datetimecomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/ScalarComparator.php' => - array ( - 0 => '4054db6501f1d8ca4633838feac034d01af1a2f3', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\scalarcomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - 2 => 'sebastianbergmann\\comparator\\removeoverlongcommonprefix', - 3 => 'sebastianbergmann\\comparator\\findcommonprefix', - 4 => 'sebastianbergmann\\comparator\\removeoverlongcommonsuffix', - 5 => 'sebastianbergmann\\comparator\\findcommonsuffix', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/ExceptionComparator.php' => - array ( - 0 => '6903f3314181ea2f25478c45a8d694fe57d54e3e', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\exceptioncomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\toarray', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/Comparator.php' => - array ( - 0 => '65a17773ecbc26b7210cc14269d734eb46732767', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\comparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\setfactory', - 1 => 'sebastianbergmann\\comparator\\accepts', - 2 => 'sebastianbergmann\\comparator\\assertequals', - 3 => 'sebastianbergmann\\comparator\\factory', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/DOMNodeComparator.php' => - array ( - 0 => '59f3cbd6cd783a70863941e3b09ca2112d6c8511', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\domnodecomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - 2 => 'sebastianbergmann\\comparator\\nodetotext', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/ComparisonFailure.php' => - array ( - 0 => '7f7b6a0bf1f828dc2476d76c7b024ddf2eb96a35', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\comparisonfailure', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\__construct', - 1 => 'sebastianbergmann\\comparator\\getactual', - 2 => 'sebastianbergmann\\comparator\\getexpected', - 3 => 'sebastianbergmann\\comparator\\getactualasstring', - 4 => 'sebastianbergmann\\comparator\\getexpectedasstring', - 5 => 'sebastianbergmann\\comparator\\getdiff', - 6 => 'sebastianbergmann\\comparator\\tostring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/comparator/src/SplObjectStorageComparator.php' => - array ( - 0 => '6e0c145073b555753c9408146a1c7299eba60176', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\splobjectstoragecomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/81/a1/81a1fa3b4156ce369a2fd146a9dc25f914a32e26.php b/build/phpstan/cache/PHPStan/81/a1/81a1fa3b4156ce369a2fd146a9dc25f914a32e26.php deleted file mode 100644 index bed7cd9..0000000 --- a/build/phpstan/cache/PHPStan/81/a1/81a1fa3b4156ce369a2fd146a9dc25f914a32e26.php +++ /dev/null @@ -1,874 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/Email.php' => - array ( - 0 => '63d916ed4e74bd595a1d493d48dc4f2f371ed19d', - 1 => - array ( - 0 => 'phario\\manifest\\email', - ), - 2 => - array ( - 0 => 'phario\\manifest\\__construct', - 1 => 'phario\\manifest\\asstring', - 2 => 'phario\\manifest\\ensureemailisvalid', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/PhpVersionRequirement.php' => - array ( - 0 => '589b4bcdfff40e61638ecd681ac2e0fdcdd80793', - 1 => - array ( - 0 => 'phario\\manifest\\phpversionrequirement', - ), - 2 => - array ( - 0 => 'phario\\manifest\\__construct', - 1 => 'phario\\manifest\\getversionconstraint', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/Application.php' => - array ( - 0 => '06447031ef7ac0849754e58edae536dd1e629e81', - 1 => - array ( - 0 => 'phario\\manifest\\application', - ), - 2 => - array ( - 0 => 'phario\\manifest\\isapplication', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/RequirementCollectionIterator.php' => - array ( - 0 => '56b68dd6378f3921dcc067749c42085822cdecc1', - 1 => - array ( - 0 => 'phario\\manifest\\requirementcollectioniterator', - ), - 2 => - array ( - 0 => 'phario\\manifest\\__construct', - 1 => 'phario\\manifest\\rewind', - 2 => 'phario\\manifest\\valid', - 3 => 'phario\\manifest\\key', - 4 => 'phario\\manifest\\current', - 5 => 'phario\\manifest\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/AuthorCollectionIterator.php' => - array ( - 0 => 'd680e39a6304af6327d9f88ff5cfb27ea13156a3', - 1 => - array ( - 0 => 'phario\\manifest\\authorcollectioniterator', - ), - 2 => - array ( - 0 => 'phario\\manifest\\__construct', - 1 => 'phario\\manifest\\rewind', - 2 => 'phario\\manifest\\valid', - 3 => 'phario\\manifest\\key', - 4 => 'phario\\manifest\\current', - 5 => 'phario\\manifest\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/Type.php' => - array ( - 0 => 'ebd205ced6e357993f7aafbcd4a106f5dee20cd4', - 1 => - array ( - 0 => 'phario\\manifest\\type', - ), - 2 => - array ( - 0 => 'phario\\manifest\\application', - 1 => 'phario\\manifest\\library', - 2 => 'phario\\manifest\\extension', - 3 => 'phario\\manifest\\isapplication', - 4 => 'phario\\manifest\\islibrary', - 5 => 'phario\\manifest\\isextension', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/Library.php' => - array ( - 0 => 'b9f514f0833c69bfd34defce801dfe621e30ee7b', - 1 => - array ( - 0 => 'phario\\manifest\\library', - ), - 2 => - array ( - 0 => 'phario\\manifest\\islibrary', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/ApplicationName.php' => - array ( - 0 => '3bb7ab1a774c4f98cf64c98f1a48efdbd7160bef', - 1 => - array ( - 0 => 'phario\\manifest\\applicationname', - ), - 2 => - array ( - 0 => 'phario\\manifest\\__construct', - 1 => 'phario\\manifest\\asstring', - 2 => 'phario\\manifest\\isequal', - 3 => 'phario\\manifest\\ensurevalidformat', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/PhpExtensionRequirement.php' => - array ( - 0 => '812db9b82bf3018271075af363b374a5f16dc5e4', - 1 => - array ( - 0 => 'phario\\manifest\\phpextensionrequirement', - ), - 2 => - array ( - 0 => 'phario\\manifest\\__construct', - 1 => 'phario\\manifest\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/Manifest.php' => - array ( - 0 => 'fbc0777620ac7a7a6c9b4dff739977917282c625', - 1 => - array ( - 0 => 'phario\\manifest\\manifest', - ), - 2 => - array ( - 0 => 'phario\\manifest\\__construct', - 1 => 'phario\\manifest\\getname', - 2 => 'phario\\manifest\\getversion', - 3 => 'phario\\manifest\\gettype', - 4 => 'phario\\manifest\\getcopyrightinformation', - 5 => 'phario\\manifest\\getrequirements', - 6 => 'phario\\manifest\\getbundledcomponents', - 7 => 'phario\\manifest\\isapplication', - 8 => 'phario\\manifest\\islibrary', - 9 => 'phario\\manifest\\isextension', - 10 => 'phario\\manifest\\isextensionfor', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/Url.php' => - array ( - 0 => 'e4f2e6c67098ec7ba62102cffc7e049c57e1c10c', - 1 => - array ( - 0 => 'phario\\manifest\\url', - ), - 2 => - array ( - 0 => 'phario\\manifest\\__construct', - 1 => 'phario\\manifest\\asstring', - 2 => 'phario\\manifest\\ensureurlisvalid', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/RequirementCollection.php' => - array ( - 0 => '793303ae56df80a464fa91209faf5aff6ba94182', - 1 => - array ( - 0 => 'phario\\manifest\\requirementcollection', - ), - 2 => - array ( - 0 => 'phario\\manifest\\add', - 1 => 'phario\\manifest\\getrequirements', - 2 => 'phario\\manifest\\count', - 3 => 'phario\\manifest\\getiterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/License.php' => - array ( - 0 => '40e4c6c32047d7ebebeb5c797aef3616787b6fed', - 1 => - array ( - 0 => 'phario\\manifest\\license', - ), - 2 => - array ( - 0 => 'phario\\manifest\\__construct', - 1 => 'phario\\manifest\\getname', - 2 => 'phario\\manifest\\geturl', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/AuthorCollection.php' => - array ( - 0 => '96fb640e67cac90da0d73666c57af789918e3e0c', - 1 => - array ( - 0 => 'phario\\manifest\\authorcollection', - ), - 2 => - array ( - 0 => 'phario\\manifest\\add', - 1 => 'phario\\manifest\\getauthors', - 2 => 'phario\\manifest\\count', - 3 => 'phario\\manifest\\getiterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/BundledComponent.php' => - array ( - 0 => '38199fce4165b953005fd3d84994e8959a6c6a64', - 1 => - array ( - 0 => 'phario\\manifest\\bundledcomponent', - ), - 2 => - array ( - 0 => 'phario\\manifest\\__construct', - 1 => 'phario\\manifest\\getname', - 2 => 'phario\\manifest\\getversion', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/Extension.php' => - array ( - 0 => '4a74ef0f6e6f4775c4c5e36dd08211b3e974f754', - 1 => - array ( - 0 => 'phario\\manifest\\extension', - ), - 2 => - array ( - 0 => 'phario\\manifest\\__construct', - 1 => 'phario\\manifest\\getapplicationname', - 2 => 'phario\\manifest\\getversionconstraint', - 3 => 'phario\\manifest\\isextension', - 4 => 'phario\\manifest\\isextensionfor', - 5 => 'phario\\manifest\\iscompatiblewith', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/BundledComponentCollectionIterator.php' => - array ( - 0 => 'dac56785e130b4a51b2bc06ac1eab11ae6c27d7f', - 1 => - array ( - 0 => 'phario\\manifest\\bundledcomponentcollectioniterator', - ), - 2 => - array ( - 0 => 'phario\\manifest\\__construct', - 1 => 'phario\\manifest\\rewind', - 2 => 'phario\\manifest\\valid', - 3 => 'phario\\manifest\\key', - 4 => 'phario\\manifest\\current', - 5 => 'phario\\manifest\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/CopyrightInformation.php' => - array ( - 0 => '148cf8cd44a6e765c14b98c82a985aa442d32234', - 1 => - array ( - 0 => 'phario\\manifest\\copyrightinformation', - ), - 2 => - array ( - 0 => 'phario\\manifest\\__construct', - 1 => 'phario\\manifest\\getauthors', - 2 => 'phario\\manifest\\getlicense', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/Author.php' => - array ( - 0 => '55a18f897867cce128f41864b9664cc32271b15f', - 1 => - array ( - 0 => 'phario\\manifest\\author', - ), - 2 => - array ( - 0 => 'phario\\manifest\\__construct', - 1 => 'phario\\manifest\\asstring', - 2 => 'phario\\manifest\\getname', - 3 => 'phario\\manifest\\hasemail', - 4 => 'phario\\manifest\\getemail', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/Requirement.php' => - array ( - 0 => '49a53487001667fdb73eb8a08d61276ab60d5463', - 1 => - array ( - 0 => 'phario\\manifest\\requirement', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/values/BundledComponentCollection.php' => - array ( - 0 => 'f17eb75212ef6057872535b531de6d5b1717cc5c', - 1 => - array ( - 0 => 'phario\\manifest\\bundledcomponentcollection', - ), - 2 => - array ( - 0 => 'phario\\manifest\\add', - 1 => 'phario\\manifest\\getbundledcomponents', - 2 => 'phario\\manifest\\count', - 3 => 'phario\\manifest\\getiterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/ManifestLoaderException.php' => - array ( - 0 => '280709d0018d8c65f0ab2a76b50200e1297dfea6', - 1 => - array ( - 0 => 'phario\\manifest\\manifestloaderexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/NoEmailAddressException.php' => - array ( - 0 => 'a4f08c6ae9c1c46d47199c389944cc087503596a', - 1 => - array ( - 0 => 'phario\\manifest\\noemailaddressexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/ManifestDocumentException.php' => - array ( - 0 => 'f0a9a3c6d1a4e1a2fe17b15b458098fec19a7649', - 1 => - array ( - 0 => 'phario\\manifest\\manifestdocumentexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php' => - array ( - 0 => '87d442f19a4229e9425b13cc22438fa5fa828db2', - 1 => - array ( - 0 => 'phario\\manifest\\invalidapplicationnameexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php' => - array ( - 0 => '4eaff5364c264e932616a528b12152514d4476a4', - 1 => - array ( - 0 => 'phario\\manifest\\manifestdocumentmapperexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/ManifestElementException.php' => - array ( - 0 => 'a478db1db4a8f6883219a443eb000a0546500876', - 1 => - array ( - 0 => 'phario\\manifest\\manifestelementexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/InvalidEmailException.php' => - array ( - 0 => '19dda893ff582f4a491394e6ba428286414a800d', - 1 => - array ( - 0 => 'phario\\manifest\\invalidemailexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/InvalidUrlException.php' => - array ( - 0 => '5f3829973998ee02f339bfc2dc2b0b3b12c8b306', - 1 => - array ( - 0 => 'phario\\manifest\\invalidurlexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/ManifestDocumentLoadingException.php' => - array ( - 0 => '67f23286df445a69a821f28df8049899e7c5a190', - 1 => - array ( - 0 => 'phario\\manifest\\manifestdocumentloadingexception', - ), - 2 => - array ( - 0 => 'phario\\manifest\\__construct', - 1 => 'phario\\manifest\\getlibxmlerrors', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/Exception.php' => - array ( - 0 => '456e70315a2bf3c9cdbbe707cb915b49c34562ca', - 1 => - array ( - 0 => 'phario\\manifest\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/exceptions/ElementCollectionException.php' => - array ( - 0 => '56abfecae7166f594af97d8c2fb992986df0fa66', - 1 => - array ( - 0 => 'phario\\manifest\\elementcollectionexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/ContainsElement.php' => - array ( - 0 => 'fbc43ebcfa6562929a2d1dbed387fc466f5709de', - 1 => - array ( - 0 => 'phario\\manifest\\containselement', - ), - 2 => - array ( - 0 => 'phario\\manifest\\getname', - 1 => 'phario\\manifest\\getversion', - 2 => 'phario\\manifest\\gettype', - 3 => 'phario\\manifest\\getextensionelement', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/LicenseElement.php' => - array ( - 0 => '83fa93aca916c05e9ac53ffb94580fe7cd887cf5', - 1 => - array ( - 0 => 'phario\\manifest\\licenseelement', - ), - 2 => - array ( - 0 => 'phario\\manifest\\gettype', - 1 => 'phario\\manifest\\geturl', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/ComponentElement.php' => - array ( - 0 => 'edc677abdbecd27c31ec0586cfcccef9a8b60f24', - 1 => - array ( - 0 => 'phario\\manifest\\componentelement', - ), - 2 => - array ( - 0 => 'phario\\manifest\\getname', - 1 => 'phario\\manifest\\getversion', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/PhpElement.php' => - array ( - 0 => '792e281bfea9b182f000984ba4524eeaef4845bb', - 1 => - array ( - 0 => 'phario\\manifest\\phpelement', - ), - 2 => - array ( - 0 => 'phario\\manifest\\getversion', - 1 => 'phario\\manifest\\hasextelements', - 2 => 'phario\\manifest\\getextelements', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/ExtElementCollection.php' => - array ( - 0 => '92122645f5c18247b6820b0e1c082c3afe792fca', - 1 => - array ( - 0 => 'phario\\manifest\\extelementcollection', - ), - 2 => - array ( - 0 => 'phario\\manifest\\current', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/AuthorElement.php' => - array ( - 0 => '6e82b49f997b391f824a2106f7424de070be806a', - 1 => - array ( - 0 => 'phario\\manifest\\authorelement', - ), - 2 => - array ( - 0 => 'phario\\manifest\\getname', - 1 => 'phario\\manifest\\getemail', - 2 => 'phario\\manifest\\hasemail', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/ElementCollection.php' => - array ( - 0 => '4c9d3243758e99f4320ed518542b8b43ea61be6e', - 1 => - array ( - 0 => 'phario\\manifest\\elementcollection', - ), - 2 => - array ( - 0 => 'phario\\manifest\\__construct', - 1 => 'phario\\manifest\\current', - 2 => 'phario\\manifest\\next', - 3 => 'phario\\manifest\\key', - 4 => 'phario\\manifest\\valid', - 5 => 'phario\\manifest\\rewind', - 6 => 'phario\\manifest\\getcurrentelement', - 7 => 'phario\\manifest\\importnodes', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/ManifestDocument.php' => - array ( - 0 => 'e44d0e1be939cd8877d80c915cfadf21f8461644', - 1 => - array ( - 0 => 'phario\\manifest\\manifestdocument', - ), - 2 => - array ( - 0 => 'phario\\manifest\\fromfile', - 1 => 'phario\\manifest\\fromstring', - 2 => 'phario\\manifest\\__construct', - 3 => 'phario\\manifest\\getcontainselement', - 4 => 'phario\\manifest\\getcopyrightelement', - 5 => 'phario\\manifest\\getrequireselement', - 6 => 'phario\\manifest\\hasbundleselement', - 7 => 'phario\\manifest\\getbundleselement', - 8 => 'phario\\manifest\\ensurecorrectdocumenttype', - 9 => 'phario\\manifest\\fetchelementbyname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/BundlesElement.php' => - array ( - 0 => '465e2d00393cca9f7a403b6cb29c6c9ac5220b7d', - 1 => - array ( - 0 => 'phario\\manifest\\bundleselement', - ), - 2 => - array ( - 0 => 'phario\\manifest\\getcomponentelements', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/AuthorElementCollection.php' => - array ( - 0 => '1ff26f3fa73beb5afe705b5bab7dcd8ec62206e2', - 1 => - array ( - 0 => 'phario\\manifest\\authorelementcollection', - ), - 2 => - array ( - 0 => 'phario\\manifest\\current', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/ComponentElementCollection.php' => - array ( - 0 => '6e2aacb95068e468a753fae0e362eef6f6fb21ad', - 1 => - array ( - 0 => 'phario\\manifest\\componentelementcollection', - ), - 2 => - array ( - 0 => 'phario\\manifest\\current', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/CopyrightElement.php' => - array ( - 0 => 'd01043027c0e7b5fd73596813a568446c913f620', - 1 => - array ( - 0 => 'phario\\manifest\\copyrightelement', - ), - 2 => - array ( - 0 => 'phario\\manifest\\getauthorelements', - 1 => 'phario\\manifest\\getlicenseelement', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/ExtElement.php' => - array ( - 0 => '7ea8e93026621771fe55c348f70ea489166ee528', - 1 => - array ( - 0 => 'phario\\manifest\\extelement', - ), - 2 => - array ( - 0 => 'phario\\manifest\\getname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/RequiresElement.php' => - array ( - 0 => 'b73126f1c54b58214ce5042e46a89069a85f0bc6', - 1 => - array ( - 0 => 'phario\\manifest\\requireselement', - ), - 2 => - array ( - 0 => 'phario\\manifest\\getphpelement', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/ExtensionElement.php' => - array ( - 0 => '58a7c3f2631789f243661cde8c034a118c3248fa', - 1 => - array ( - 0 => 'phario\\manifest\\extensionelement', - ), - 2 => - array ( - 0 => 'phario\\manifest\\getfor', - 1 => 'phario\\manifest\\getcompatible', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/xml/ManifestElement.php' => - array ( - 0 => 'b25bc3045bdfc4e0fc33860ee1321bdef0a3aa63', - 1 => - array ( - 0 => 'phario\\manifest\\manifestelement', - ), - 2 => - array ( - 0 => 'phario\\manifest\\__construct', - 1 => 'phario\\manifest\\getattributevalue', - 2 => 'phario\\manifest\\hasattribute', - 3 => 'phario\\manifest\\getchildbyname', - 4 => 'phario\\manifest\\getchildrenbyname', - 5 => 'phario\\manifest\\haschild', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/ManifestSerializer.php' => - array ( - 0 => '2b5e0c2dfa9dd7e05f7c722f232b586b1e11cd54', - 1 => - array ( - 0 => 'phario\\manifest\\manifestserializer', - ), - 2 => - array ( - 0 => 'phario\\manifest\\serializetofile', - 1 => 'phario\\manifest\\serializetostring', - 2 => 'phario\\manifest\\startdocument', - 3 => 'phario\\manifest\\finishdocument', - 4 => 'phario\\manifest\\addcontains', - 5 => 'phario\\manifest\\addcopyright', - 6 => 'phario\\manifest\\addrequirements', - 7 => 'phario\\manifest\\addbundles', - 8 => 'phario\\manifest\\addextension', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/ManifestLoader.php' => - array ( - 0 => '49b9e9105ef820ed5441756d35d5c94c4d4588bb', - 1 => - array ( - 0 => 'phario\\manifest\\manifestloader', - ), - 2 => - array ( - 0 => 'phario\\manifest\\fromfile', - 1 => 'phario\\manifest\\fromphar', - 2 => 'phario\\manifest\\fromstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/manifest/src/ManifestDocumentMapper.php' => - array ( - 0 => '1bc21e8d302c08b4af060481b9ccd627445f480a', - 1 => - array ( - 0 => 'phario\\manifest\\manifestdocumentmapper', - ), - 2 => - array ( - 0 => 'phario\\manifest\\map', - 1 => 'phario\\manifest\\maptype', - 2 => 'phario\\manifest\\mapcopyright', - 3 => 'phario\\manifest\\maprequirements', - 4 => 'phario\\manifest\\mapbundledcomponents', - 5 => 'phario\\manifest\\mapextension', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/81/b7/81b79638cf7a7e2a79c39a16100dc9c8f6c789aa.php b/build/phpstan/cache/PHPStan/81/b7/81b79638cf7a7e2a79c39a16100dc9c8f6c789aa.php deleted file mode 100644 index 3854b0f..0000000 --- a/build/phpstan/cache/PHPStan/81/b7/81b79638cf7a7e2a79c39a16100dc9c8f6c789aa.php +++ /dev/null @@ -1,17309 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Application.php' => - array ( - 0 => 'f12414e2f75785979bf8a505c6487b6ac0826c0d', - 1 => - array ( - 0 => 'phpunit\\textui\\application', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\run', - 1 => 'phpunit\\textui\\execute', - 2 => 'phpunit\\textui\\loadbootstrapscript', - 3 => 'phpunit\\textui\\buildcliconfiguration', - 4 => 'phpunit\\textui\\loadxmlconfiguration', - 5 => 'phpunit\\textui\\buildtestsuite', - 6 => 'phpunit\\textui\\bootstrapextensions', - 7 => 'phpunit\\textui\\executecommandsthatonlyrequirecliconfiguration', - 8 => 'phpunit\\textui\\executecommandsthatdonotrequirethetestsuite', - 9 => 'phpunit\\textui\\executecommandsthatrequirethetestsuite', - 10 => 'phpunit\\textui\\writeruntimeinformation', - 11 => 'phpunit\\textui\\writepharextensioninformation', - 12 => 'phpunit\\textui\\writemessage', - 13 => 'phpunit\\textui\\writerandomseedinformation', - 14 => 'phpunit\\textui\\registerlogfilewriters', - 15 => 'phpunit\\textui\\testdoxresultcollector', - 16 => 'phpunit\\textui\\initializetestresultcache', - 17 => 'phpunit\\textui\\configurebaseline', - 18 => 'phpunit\\textui\\exitwithcrashmessage', - 19 => 'phpunit\\textui\\exitwitherrormessage', - 20 => 'phpunit\\textui\\filteredtests', - 21 => 'phpunit\\textui\\configuredeprecationtriggers', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/PhpHandler.php' => - array ( - 0 => 'e06de6a74018558d42d5b3b6299ab1f78eb460a6', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\phphandler', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\handle', - 1 => 'phpunit\\textui\\configuration\\handleincludepaths', - 2 => 'phpunit\\textui\\configuration\\handleinisettings', - 3 => 'phpunit\\textui\\configuration\\handleconstants', - 4 => 'phpunit\\textui\\configuration\\handleglobalvariables', - 5 => 'phpunit\\textui\\configuration\\handleservervariables', - 6 => 'phpunit\\textui\\configuration\\handlevariables', - 7 => 'phpunit\\textui\\configuration\\handleenvvariables', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/CodeCoverageFilterRegistry.php' => - array ( - 0 => '93e494814ef4f462a533465fc89142ebe2b51b96', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\codecoveragefilterregistry', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\instance', - 1 => 'phpunit\\textui\\configuration\\get', - 2 => 'phpunit\\textui\\configuration\\init', - 3 => 'phpunit\\textui\\configuration\\configured', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Registry.php' => - array ( - 0 => '59dd42001af798bd1a9de14b29d0b796661ce693', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\registry', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\saveto', - 1 => 'phpunit\\textui\\configuration\\loadfrom', - 2 => 'phpunit\\textui\\configuration\\get', - 3 => 'phpunit\\textui\\configuration\\init', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Builder.php' => - array ( - 0 => '7b8638a72aee54034af7b958552d735f8f9a9986', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\builder', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\build', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/Constant.php' => - array ( - 0 => '9cc606f015d2cd973f5a36d87256ed50bc4f00a2', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\constant', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\name', - 2 => 'phpunit\\textui\\configuration\\value', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/Variable.php' => - array ( - 0 => 'c2184468e3c326c7bd917f146703a6c598e2c611', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\variable', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\name', - 2 => 'phpunit\\textui\\configuration\\value', - 3 => 'phpunit\\textui\\configuration\\force', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/TestFileCollectionIterator.php' => - array ( - 0 => '9a2ce55c9f481055c59f1913dd8de414912f91e5', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\testfilecollectioniterator', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\rewind', - 2 => 'phpunit\\textui\\configuration\\valid', - 3 => 'phpunit\\textui\\configuration\\key', - 4 => 'phpunit\\textui\\configuration\\current', - 5 => 'phpunit\\textui\\configuration\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/TestSuiteCollection.php' => - array ( - 0 => '22c73257f16c4f5d873ebb3e1acee7b12c685d3f', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\testsuitecollection', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\fromarray', - 1 => 'phpunit\\textui\\configuration\\__construct', - 2 => 'phpunit\\textui\\configuration\\asarray', - 3 => 'phpunit\\textui\\configuration\\count', - 4 => 'phpunit\\textui\\configuration\\getiterator', - 5 => 'phpunit\\textui\\configuration\\isempty', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/TestFileCollection.php' => - array ( - 0 => '009ed5e4363a618110a7ce666baaf27df9d49742', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\testfilecollection', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\fromarray', - 1 => 'phpunit\\textui\\configuration\\__construct', - 2 => 'phpunit\\textui\\configuration\\asarray', - 3 => 'phpunit\\textui\\configuration\\count', - 4 => 'phpunit\\textui\\configuration\\getiterator', - 5 => 'phpunit\\textui\\configuration\\isempty', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/Group.php' => - array ( - 0 => 'b1376174bb0da1799824deff3ed84caa1974d96f', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\group', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\name', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/FilterDirectoryCollection.php' => - array ( - 0 => '07eab09e62aecf17494e9035a85f81c97bc6f38f', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\filterdirectorycollection', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\fromarray', - 1 => 'phpunit\\textui\\configuration\\__construct', - 2 => 'phpunit\\textui\\configuration\\asarray', - 3 => 'phpunit\\textui\\configuration\\count', - 4 => 'phpunit\\textui\\configuration\\notempty', - 5 => 'phpunit\\textui\\configuration\\getiterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/TestSuite.php' => - array ( - 0 => '6a01914c5ae742ab5f3dfc00e306a08b0fccb0b5', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\testsuite', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\name', - 2 => 'phpunit\\textui\\configuration\\directories', - 3 => 'phpunit\\textui\\configuration\\files', - 4 => 'phpunit\\textui\\configuration\\exclude', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/TestDirectory.php' => - array ( - 0 => '1b8ab8d24f07cb43773767bf912a247b847e85a7', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\testdirectory', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\path', - 2 => 'phpunit\\textui\\configuration\\prefix', - 3 => 'phpunit\\textui\\configuration\\suffix', - 4 => 'phpunit\\textui\\configuration\\phpversion', - 5 => 'phpunit\\textui\\configuration\\phpversionoperator', - 6 => 'phpunit\\textui\\configuration\\groups', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/VariableCollection.php' => - array ( - 0 => '25997ecadee0a9e5d5d9a6120179c72ae27cc82c', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\variablecollection', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\fromarray', - 1 => 'phpunit\\textui\\configuration\\__construct', - 2 => 'phpunit\\textui\\configuration\\asarray', - 3 => 'phpunit\\textui\\configuration\\count', - 4 => 'phpunit\\textui\\configuration\\getiterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/File.php' => - array ( - 0 => 'a7755bee2f358f907d5449360db45a52b5c267b8', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\file', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\path', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/TestSuiteCollectionIterator.php' => - array ( - 0 => 'e02748f7d3dddd8aaed82ec7d4213d3ebd053774', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\testsuitecollectioniterator', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\rewind', - 2 => 'phpunit\\textui\\configuration\\valid', - 3 => 'phpunit\\textui\\configuration\\key', - 4 => 'phpunit\\textui\\configuration\\current', - 5 => 'phpunit\\textui\\configuration\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/GroupCollectionIterator.php' => - array ( - 0 => 'd6b221d0ab441117c66dbf3d5f11347c18f5de66', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\groupcollectioniterator', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\rewind', - 2 => 'phpunit\\textui\\configuration\\valid', - 3 => 'phpunit\\textui\\configuration\\key', - 4 => 'phpunit\\textui\\configuration\\current', - 5 => 'phpunit\\textui\\configuration\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/ExtensionBootstrapCollection.php' => - array ( - 0 => '8a1df02e5bc593e011e63946b3bb085477a41358', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\extensionbootstrapcollection', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\fromarray', - 1 => 'phpunit\\textui\\configuration\\__construct', - 2 => 'phpunit\\textui\\configuration\\asarray', - 3 => 'phpunit\\textui\\configuration\\getiterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/ExtensionBootstrap.php' => - array ( - 0 => '0fc9a32009757074b70bb6263c3ddd557ef01526', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\extensionbootstrap', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\classname', - 2 => 'phpunit\\textui\\configuration\\parameters', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/GroupCollection.php' => - array ( - 0 => '08239fff9ec1956d3374dcdc91c3e634905d227c', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\groupcollection', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\fromarray', - 1 => 'phpunit\\textui\\configuration\\__construct', - 2 => 'phpunit\\textui\\configuration\\asarray', - 3 => 'phpunit\\textui\\configuration\\asarrayofstrings', - 4 => 'phpunit\\textui\\configuration\\isempty', - 5 => 'phpunit\\textui\\configuration\\getiterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/ExtensionBootstrapCollectionIterator.php' => - array ( - 0 => 'c78ea934393d6e38baeb1992339e761c9dd2ba62', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\extensionbootstrapcollectioniterator', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\rewind', - 2 => 'phpunit\\textui\\configuration\\valid', - 3 => 'phpunit\\textui\\configuration\\key', - 4 => 'phpunit\\textui\\configuration\\current', - 5 => 'phpunit\\textui\\configuration\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/VariableCollectionIterator.php' => - array ( - 0 => '0adfeed9903d96171a1dd9bc2d685d3003bb4d99', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\variablecollectioniterator', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\rewind', - 2 => 'phpunit\\textui\\configuration\\valid', - 3 => 'phpunit\\textui\\configuration\\key', - 4 => 'phpunit\\textui\\configuration\\current', - 5 => 'phpunit\\textui\\configuration\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/ConstantCollection.php' => - array ( - 0 => 'df374d843abbbc31f9921a6520cde8f749e4241b', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\constantcollection', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\fromarray', - 1 => 'phpunit\\textui\\configuration\\__construct', - 2 => 'phpunit\\textui\\configuration\\asarray', - 3 => 'phpunit\\textui\\configuration\\count', - 4 => 'phpunit\\textui\\configuration\\getiterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/TestFile.php' => - array ( - 0 => '8bcc367d25e7881cb657375f2dea360c413cf783', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\testfile', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\path', - 2 => 'phpunit\\textui\\configuration\\phpversion', - 3 => 'phpunit\\textui\\configuration\\phpversionoperator', - 4 => 'phpunit\\textui\\configuration\\groups', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/IniSettingCollection.php' => - array ( - 0 => '7190d16a952a4be882bdd22d2bdd8dd82eb6f48e', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\inisettingcollection', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\fromarray', - 1 => 'phpunit\\textui\\configuration\\__construct', - 2 => 'phpunit\\textui\\configuration\\asarray', - 3 => 'phpunit\\textui\\configuration\\count', - 4 => 'phpunit\\textui\\configuration\\getiterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/TestDirectoryCollectionIterator.php' => - array ( - 0 => '52533fb3a7cdd893455b4d110d024f9404966f70', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\testdirectorycollectioniterator', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\rewind', - 2 => 'phpunit\\textui\\configuration\\valid', - 3 => 'phpunit\\textui\\configuration\\key', - 4 => 'phpunit\\textui\\configuration\\current', - 5 => 'phpunit\\textui\\configuration\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/Directory.php' => - array ( - 0 => '6ef620ede069e553116135b0a43f71864049ee9c', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\directory', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\path', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/FileCollectionIterator.php' => - array ( - 0 => '2cd00cd64e20067edec47210a829b23e1df4437c', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\filecollectioniterator', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\rewind', - 2 => 'phpunit\\textui\\configuration\\valid', - 3 => 'phpunit\\textui\\configuration\\key', - 4 => 'phpunit\\textui\\configuration\\current', - 5 => 'phpunit\\textui\\configuration\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/TestDirectoryCollection.php' => - array ( - 0 => 'cc075651717d9afbb4401bc9734cf0f634a74df0', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\testdirectorycollection', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\fromarray', - 1 => 'phpunit\\textui\\configuration\\__construct', - 2 => 'phpunit\\textui\\configuration\\asarray', - 3 => 'phpunit\\textui\\configuration\\count', - 4 => 'phpunit\\textui\\configuration\\getiterator', - 5 => 'phpunit\\textui\\configuration\\isempty', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/FilterDirectoryCollectionIterator.php' => - array ( - 0 => '49581f2be618a3b5f2e3d139e2866692ababbb90', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\filterdirectorycollectioniterator', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\rewind', - 2 => 'phpunit\\textui\\configuration\\valid', - 3 => 'phpunit\\textui\\configuration\\key', - 4 => 'phpunit\\textui\\configuration\\current', - 5 => 'phpunit\\textui\\configuration\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/ConstantCollectionIterator.php' => - array ( - 0 => 'bc849ee37f0ae336c2048f2148e1dbe1a73d44e6', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\constantcollectioniterator', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\rewind', - 2 => 'phpunit\\textui\\configuration\\valid', - 3 => 'phpunit\\textui\\configuration\\key', - 4 => 'phpunit\\textui\\configuration\\current', - 5 => 'phpunit\\textui\\configuration\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/Source.php' => - array ( - 0 => 'a25aef7324b76b7aee27a98a91965e8c0af0166a', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\source', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\usebaseline', - 2 => 'phpunit\\textui\\configuration\\hasbaseline', - 3 => 'phpunit\\textui\\configuration\\baseline', - 4 => 'phpunit\\textui\\configuration\\includedirectories', - 5 => 'phpunit\\textui\\configuration\\includefiles', - 6 => 'phpunit\\textui\\configuration\\excludedirectories', - 7 => 'phpunit\\textui\\configuration\\excludefiles', - 8 => 'phpunit\\textui\\configuration\\notempty', - 9 => 'phpunit\\textui\\configuration\\restrictdeprecations', - 10 => 'phpunit\\textui\\configuration\\restrictnotices', - 11 => 'phpunit\\textui\\configuration\\restrictwarnings', - 12 => 'phpunit\\textui\\configuration\\ignoresuppressionofdeprecations', - 13 => 'phpunit\\textui\\configuration\\ignoresuppressionofphpdeprecations', - 14 => 'phpunit\\textui\\configuration\\ignoresuppressionoferrors', - 15 => 'phpunit\\textui\\configuration\\ignoresuppressionofnotices', - 16 => 'phpunit\\textui\\configuration\\ignoresuppressionofphpnotices', - 17 => 'phpunit\\textui\\configuration\\ignoresuppressionofwarnings', - 18 => 'phpunit\\textui\\configuration\\ignoresuppressionofphpwarnings', - 19 => 'phpunit\\textui\\configuration\\deprecationtriggers', - 20 => 'phpunit\\textui\\configuration\\ignoreselfdeprecations', - 21 => 'phpunit\\textui\\configuration\\ignoredirectdeprecations', - 22 => 'phpunit\\textui\\configuration\\ignoreindirectdeprecations', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/FileCollection.php' => - array ( - 0 => 'c856dddb3db92c14f58cfae3f8f1e3576e41da3d', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\filecollection', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\fromarray', - 1 => 'phpunit\\textui\\configuration\\__construct', - 2 => 'phpunit\\textui\\configuration\\asarray', - 3 => 'phpunit\\textui\\configuration\\count', - 4 => 'phpunit\\textui\\configuration\\notempty', - 5 => 'phpunit\\textui\\configuration\\getiterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/FilterDirectory.php' => - array ( - 0 => 'db0d0c12690ebc028fab6e094fd1bcb5407d0db1', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\filterdirectory', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\path', - 2 => 'phpunit\\textui\\configuration\\prefix', - 3 => 'phpunit\\textui\\configuration\\suffix', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/DirectoryCollectionIterator.php' => - array ( - 0 => '786c41c55aa5f27463f57aa8e11b3f0fbdecc270', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\directorycollectioniterator', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\rewind', - 2 => 'phpunit\\textui\\configuration\\valid', - 3 => 'phpunit\\textui\\configuration\\key', - 4 => 'phpunit\\textui\\configuration\\current', - 5 => 'phpunit\\textui\\configuration\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/Php.php' => - array ( - 0 => '54fe56ff63282e61955428bdb9b56866f5b26017', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\php', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\includepaths', - 2 => 'phpunit\\textui\\configuration\\inisettings', - 3 => 'phpunit\\textui\\configuration\\constants', - 4 => 'phpunit\\textui\\configuration\\globalvariables', - 5 => 'phpunit\\textui\\configuration\\envvariables', - 6 => 'phpunit\\textui\\configuration\\postvariables', - 7 => 'phpunit\\textui\\configuration\\getvariables', - 8 => 'phpunit\\textui\\configuration\\cookievariables', - 9 => 'phpunit\\textui\\configuration\\servervariables', - 10 => 'phpunit\\textui\\configuration\\filesvariables', - 11 => 'phpunit\\textui\\configuration\\requestvariables', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/IniSetting.php' => - array ( - 0 => '5cc4ce4ff91dd9439a9e1ccefc6b45e74dcaa5f9', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\inisetting', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\name', - 2 => 'phpunit\\textui\\configuration\\value', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/DirectoryCollection.php' => - array ( - 0 => '2d002f2b1de33a49486cdc80ed8ca871d8ec1d3c', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\directorycollection', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\fromarray', - 1 => 'phpunit\\textui\\configuration\\__construct', - 2 => 'phpunit\\textui\\configuration\\asarray', - 3 => 'phpunit\\textui\\configuration\\count', - 4 => 'phpunit\\textui\\configuration\\getiterator', - 5 => 'phpunit\\textui\\configuration\\isempty', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/IniSettingCollectionIterator.php' => - array ( - 0 => '111aff9c4f78fbdc6328acd21ede032970f9454b', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\inisettingcollectioniterator', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\rewind', - 2 => 'phpunit\\textui\\configuration\\valid', - 3 => 'phpunit\\textui\\configuration\\key', - 4 => 'phpunit\\textui\\configuration\\current', - 5 => 'phpunit\\textui\\configuration\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Configuration.php' => - array ( - 0 => '7cd839fe7bce66b251c52f7c89cf30960a989549', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\configuration', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - 1 => 'phpunit\\textui\\configuration\\hascliarguments', - 2 => 'phpunit\\textui\\configuration\\cliarguments', - 3 => 'phpunit\\textui\\configuration\\hasconfigurationfile', - 4 => 'phpunit\\textui\\configuration\\configurationfile', - 5 => 'phpunit\\textui\\configuration\\hasbootstrap', - 6 => 'phpunit\\textui\\configuration\\bootstrap', - 7 => 'phpunit\\textui\\configuration\\cacheresult', - 8 => 'phpunit\\textui\\configuration\\hascachedirectory', - 9 => 'phpunit\\textui\\configuration\\cachedirectory', - 10 => 'phpunit\\textui\\configuration\\hascoveragecachedirectory', - 11 => 'phpunit\\textui\\configuration\\coveragecachedirectory', - 12 => 'phpunit\\textui\\configuration\\source', - 13 => 'phpunit\\textui\\configuration\\testresultcachefile', - 14 => 'phpunit\\textui\\configuration\\ignoredeprecatedcodeunitsfromcodecoverage', - 15 => 'phpunit\\textui\\configuration\\disablecodecoverageignore', - 16 => 'phpunit\\textui\\configuration\\pathcoverage', - 17 => 'phpunit\\textui\\configuration\\hascoveragereport', - 18 => 'phpunit\\textui\\configuration\\hascoverageclover', - 19 => 'phpunit\\textui\\configuration\\coverageclover', - 20 => 'phpunit\\textui\\configuration\\hascoveragecobertura', - 21 => 'phpunit\\textui\\configuration\\coveragecobertura', - 22 => 'phpunit\\textui\\configuration\\hascoveragecrap4j', - 23 => 'phpunit\\textui\\configuration\\coveragecrap4j', - 24 => 'phpunit\\textui\\configuration\\coveragecrap4jthreshold', - 25 => 'phpunit\\textui\\configuration\\hascoveragehtml', - 26 => 'phpunit\\textui\\configuration\\coveragehtml', - 27 => 'phpunit\\textui\\configuration\\coveragehtmllowupperbound', - 28 => 'phpunit\\textui\\configuration\\coveragehtmlhighlowerbound', - 29 => 'phpunit\\textui\\configuration\\coveragehtmlcolorsuccesslow', - 30 => 'phpunit\\textui\\configuration\\coveragehtmlcolorsuccessmedium', - 31 => 'phpunit\\textui\\configuration\\coveragehtmlcolorsuccesshigh', - 32 => 'phpunit\\textui\\configuration\\coveragehtmlcolorwarning', - 33 => 'phpunit\\textui\\configuration\\coveragehtmlcolordanger', - 34 => 'phpunit\\textui\\configuration\\hascoveragehtmlcustomcssfile', - 35 => 'phpunit\\textui\\configuration\\coveragehtmlcustomcssfile', - 36 => 'phpunit\\textui\\configuration\\hascoveragephp', - 37 => 'phpunit\\textui\\configuration\\coveragephp', - 38 => 'phpunit\\textui\\configuration\\hascoveragetext', - 39 => 'phpunit\\textui\\configuration\\coveragetext', - 40 => 'phpunit\\textui\\configuration\\coveragetextshowuncoveredfiles', - 41 => 'phpunit\\textui\\configuration\\coveragetextshowonlysummary', - 42 => 'phpunit\\textui\\configuration\\hascoveragexml', - 43 => 'phpunit\\textui\\configuration\\coveragexml', - 44 => 'phpunit\\textui\\configuration\\failondeprecation', - 45 => 'phpunit\\textui\\configuration\\failonphpunitdeprecation', - 46 => 'phpunit\\textui\\configuration\\failonemptytestsuite', - 47 => 'phpunit\\textui\\configuration\\failonincomplete', - 48 => 'phpunit\\textui\\configuration\\failonnotice', - 49 => 'phpunit\\textui\\configuration\\failonrisky', - 50 => 'phpunit\\textui\\configuration\\failonskipped', - 51 => 'phpunit\\textui\\configuration\\failonwarning', - 52 => 'phpunit\\textui\\configuration\\stopondefect', - 53 => 'phpunit\\textui\\configuration\\stopondeprecation', - 54 => 'phpunit\\textui\\configuration\\hasspecificdeprecationtostopon', - 55 => 'phpunit\\textui\\configuration\\specificdeprecationtostopon', - 56 => 'phpunit\\textui\\configuration\\stoponerror', - 57 => 'phpunit\\textui\\configuration\\stoponfailure', - 58 => 'phpunit\\textui\\configuration\\stoponincomplete', - 59 => 'phpunit\\textui\\configuration\\stoponnotice', - 60 => 'phpunit\\textui\\configuration\\stoponrisky', - 61 => 'phpunit\\textui\\configuration\\stoponskipped', - 62 => 'phpunit\\textui\\configuration\\stoponwarning', - 63 => 'phpunit\\textui\\configuration\\outputtostandarderrorstream', - 64 => 'phpunit\\textui\\configuration\\columns', - 65 => 'phpunit\\textui\\configuration\\noextensions', - 66 => 'phpunit\\textui\\configuration\\haspharextensiondirectory', - 67 => 'phpunit\\textui\\configuration\\pharextensiondirectory', - 68 => 'phpunit\\textui\\configuration\\extensionbootstrappers', - 69 => 'phpunit\\textui\\configuration\\backupglobals', - 70 => 'phpunit\\textui\\configuration\\backupstaticproperties', - 71 => 'phpunit\\textui\\configuration\\bestrictaboutchangestoglobalstate', - 72 => 'phpunit\\textui\\configuration\\colors', - 73 => 'phpunit\\textui\\configuration\\processisolation', - 74 => 'phpunit\\textui\\configuration\\enforcetimelimit', - 75 => 'phpunit\\textui\\configuration\\defaulttimelimit', - 76 => 'phpunit\\textui\\configuration\\timeoutforsmalltests', - 77 => 'phpunit\\textui\\configuration\\timeoutformediumtests', - 78 => 'phpunit\\textui\\configuration\\timeoutforlargetests', - 79 => 'phpunit\\textui\\configuration\\reportuselesstests', - 80 => 'phpunit\\textui\\configuration\\strictcoverage', - 81 => 'phpunit\\textui\\configuration\\disallowtestoutput', - 82 => 'phpunit\\textui\\configuration\\displaydetailsonincompletetests', - 83 => 'phpunit\\textui\\configuration\\displaydetailsonskippedtests', - 84 => 'phpunit\\textui\\configuration\\displaydetailsonteststhattriggerdeprecations', - 85 => 'phpunit\\textui\\configuration\\displaydetailsonphpunitdeprecations', - 86 => 'phpunit\\textui\\configuration\\displaydetailsonteststhattriggererrors', - 87 => 'phpunit\\textui\\configuration\\displaydetailsonteststhattriggernotices', - 88 => 'phpunit\\textui\\configuration\\displaydetailsonteststhattriggerwarnings', - 89 => 'phpunit\\textui\\configuration\\reversedefectlist', - 90 => 'phpunit\\textui\\configuration\\requirecoveragemetadata', - 91 => 'phpunit\\textui\\configuration\\noprogress', - 92 => 'phpunit\\textui\\configuration\\noresults', - 93 => 'phpunit\\textui\\configuration\\nooutput', - 94 => 'phpunit\\textui\\configuration\\executionorder', - 95 => 'phpunit\\textui\\configuration\\executionorderdefects', - 96 => 'phpunit\\textui\\configuration\\resolvedependencies', - 97 => 'phpunit\\textui\\configuration\\haslogfileteamcity', - 98 => 'phpunit\\textui\\configuration\\logfileteamcity', - 99 => 'phpunit\\textui\\configuration\\haslogfilejunit', - 100 => 'phpunit\\textui\\configuration\\logfilejunit', - 101 => 'phpunit\\textui\\configuration\\haslogfiletestdoxhtml', - 102 => 'phpunit\\textui\\configuration\\logfiletestdoxhtml', - 103 => 'phpunit\\textui\\configuration\\haslogfiletestdoxtext', - 104 => 'phpunit\\textui\\configuration\\logfiletestdoxtext', - 105 => 'phpunit\\textui\\configuration\\haslogeventstext', - 106 => 'phpunit\\textui\\configuration\\logeventstext', - 107 => 'phpunit\\textui\\configuration\\haslogeventsverbosetext', - 108 => 'phpunit\\textui\\configuration\\logeventsverbosetext', - 109 => 'phpunit\\textui\\configuration\\outputisteamcity', - 110 => 'phpunit\\textui\\configuration\\outputistestdox', - 111 => 'phpunit\\textui\\configuration\\testdoxoutputwithsummary', - 112 => 'phpunit\\textui\\configuration\\hastestscovering', - 113 => 'phpunit\\textui\\configuration\\testscovering', - 114 => 'phpunit\\textui\\configuration\\hastestsusing', - 115 => 'phpunit\\textui\\configuration\\testsusing', - 116 => 'phpunit\\textui\\configuration\\hastestsrequiringphpextension', - 117 => 'phpunit\\textui\\configuration\\testsrequiringphpextension', - 118 => 'phpunit\\textui\\configuration\\hasfilter', - 119 => 'phpunit\\textui\\configuration\\filter', - 120 => 'phpunit\\textui\\configuration\\hasexcludefilter', - 121 => 'phpunit\\textui\\configuration\\excludefilter', - 122 => 'phpunit\\textui\\configuration\\hasgroups', - 123 => 'phpunit\\textui\\configuration\\groups', - 124 => 'phpunit\\textui\\configuration\\hasexcludegroups', - 125 => 'phpunit\\textui\\configuration\\excludegroups', - 126 => 'phpunit\\textui\\configuration\\randomorderseed', - 127 => 'phpunit\\textui\\configuration\\includeuncoveredfiles', - 128 => 'phpunit\\textui\\configuration\\testsuite', - 129 => 'phpunit\\textui\\configuration\\includetestsuite', - 130 => 'phpunit\\textui\\configuration\\excludetestsuite', - 131 => 'phpunit\\textui\\configuration\\hasdefaulttestsuite', - 132 => 'phpunit\\textui\\configuration\\defaulttestsuite', - 133 => 'phpunit\\textui\\configuration\\testsuffixes', - 134 => 'phpunit\\textui\\configuration\\php', - 135 => 'phpunit\\textui\\configuration\\controlgarbagecollector', - 136 => 'phpunit\\textui\\configuration\\numberoftestsbeforegarbagecollection', - 137 => 'phpunit\\textui\\configuration\\hasgeneratebaseline', - 138 => 'phpunit\\textui\\configuration\\generatebaseline', - 139 => 'phpunit\\textui\\configuration\\debug', - 140 => 'phpunit\\textui\\configuration\\shortenarraysforexportthreshold', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Cli/Builder.php' => - array ( - 0 => '299d1c598668b0ea5ed4622ca3fcfbb3dcca9357', - 1 => - array ( - 0 => 'phpunit\\textui\\cliarguments\\builder', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\cliarguments\\fromparameters', - 1 => 'phpunit\\textui\\cliarguments\\markprocessed', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Cli/Configuration.php' => - array ( - 0 => '4390757920a44f504441e433391d0dacfb894f15', - 1 => - array ( - 0 => 'phpunit\\textui\\cliarguments\\configuration', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\cliarguments\\__construct', - 1 => 'phpunit\\textui\\cliarguments\\arguments', - 2 => 'phpunit\\textui\\cliarguments\\hasatleastversion', - 3 => 'phpunit\\textui\\cliarguments\\atleastversion', - 4 => 'phpunit\\textui\\cliarguments\\hasbackupglobals', - 5 => 'phpunit\\textui\\cliarguments\\backupglobals', - 6 => 'phpunit\\textui\\cliarguments\\hasbackupstaticproperties', - 7 => 'phpunit\\textui\\cliarguments\\backupstaticproperties', - 8 => 'phpunit\\textui\\cliarguments\\hasbestrictaboutchangestoglobalstate', - 9 => 'phpunit\\textui\\cliarguments\\bestrictaboutchangestoglobalstate', - 10 => 'phpunit\\textui\\cliarguments\\hasbootstrap', - 11 => 'phpunit\\textui\\cliarguments\\bootstrap', - 12 => 'phpunit\\textui\\cliarguments\\hascachedirectory', - 13 => 'phpunit\\textui\\cliarguments\\cachedirectory', - 14 => 'phpunit\\textui\\cliarguments\\hascacheresult', - 15 => 'phpunit\\textui\\cliarguments\\cacheresult', - 16 => 'phpunit\\textui\\cliarguments\\checkversion', - 17 => 'phpunit\\textui\\cliarguments\\hascolors', - 18 => 'phpunit\\textui\\cliarguments\\colors', - 19 => 'phpunit\\textui\\cliarguments\\hascolumns', - 20 => 'phpunit\\textui\\cliarguments\\columns', - 21 => 'phpunit\\textui\\cliarguments\\hasconfigurationfile', - 22 => 'phpunit\\textui\\cliarguments\\configurationfile', - 23 => 'phpunit\\textui\\cliarguments\\hascoveragefilter', - 24 => 'phpunit\\textui\\cliarguments\\coveragefilter', - 25 => 'phpunit\\textui\\cliarguments\\hascoverageclover', - 26 => 'phpunit\\textui\\cliarguments\\coverageclover', - 27 => 'phpunit\\textui\\cliarguments\\hascoveragecobertura', - 28 => 'phpunit\\textui\\cliarguments\\coveragecobertura', - 29 => 'phpunit\\textui\\cliarguments\\hascoveragecrap4j', - 30 => 'phpunit\\textui\\cliarguments\\coveragecrap4j', - 31 => 'phpunit\\textui\\cliarguments\\hascoveragehtml', - 32 => 'phpunit\\textui\\cliarguments\\coveragehtml', - 33 => 'phpunit\\textui\\cliarguments\\hascoveragephp', - 34 => 'phpunit\\textui\\cliarguments\\coveragephp', - 35 => 'phpunit\\textui\\cliarguments\\hascoveragetext', - 36 => 'phpunit\\textui\\cliarguments\\coveragetext', - 37 => 'phpunit\\textui\\cliarguments\\hascoveragetextshowuncoveredfiles', - 38 => 'phpunit\\textui\\cliarguments\\coveragetextshowuncoveredfiles', - 39 => 'phpunit\\textui\\cliarguments\\hascoveragetextshowonlysummary', - 40 => 'phpunit\\textui\\cliarguments\\coveragetextshowonlysummary', - 41 => 'phpunit\\textui\\cliarguments\\hascoveragexml', - 42 => 'phpunit\\textui\\cliarguments\\coveragexml', - 43 => 'phpunit\\textui\\cliarguments\\haspathcoverage', - 44 => 'phpunit\\textui\\cliarguments\\pathcoverage', - 45 => 'phpunit\\textui\\cliarguments\\warmcoveragecache', - 46 => 'phpunit\\textui\\cliarguments\\hasdefaulttimelimit', - 47 => 'phpunit\\textui\\cliarguments\\defaulttimelimit', - 48 => 'phpunit\\textui\\cliarguments\\hasdisablecodecoverageignore', - 49 => 'phpunit\\textui\\cliarguments\\disablecodecoverageignore', - 50 => 'phpunit\\textui\\cliarguments\\hasdisallowtestoutput', - 51 => 'phpunit\\textui\\cliarguments\\disallowtestoutput', - 52 => 'phpunit\\textui\\cliarguments\\hasenforcetimelimit', - 53 => 'phpunit\\textui\\cliarguments\\enforcetimelimit', - 54 => 'phpunit\\textui\\cliarguments\\hasexcludegroups', - 55 => 'phpunit\\textui\\cliarguments\\excludegroups', - 56 => 'phpunit\\textui\\cliarguments\\hasexecutionorder', - 57 => 'phpunit\\textui\\cliarguments\\executionorder', - 58 => 'phpunit\\textui\\cliarguments\\hasexecutionorderdefects', - 59 => 'phpunit\\textui\\cliarguments\\executionorderdefects', - 60 => 'phpunit\\textui\\cliarguments\\hasfailondeprecation', - 61 => 'phpunit\\textui\\cliarguments\\failondeprecation', - 62 => 'phpunit\\textui\\cliarguments\\hasfailonphpunitdeprecation', - 63 => 'phpunit\\textui\\cliarguments\\failonphpunitdeprecation', - 64 => 'phpunit\\textui\\cliarguments\\hasfailonemptytestsuite', - 65 => 'phpunit\\textui\\cliarguments\\failonemptytestsuite', - 66 => 'phpunit\\textui\\cliarguments\\hasfailonincomplete', - 67 => 'phpunit\\textui\\cliarguments\\failonincomplete', - 68 => 'phpunit\\textui\\cliarguments\\hasfailonnotice', - 69 => 'phpunit\\textui\\cliarguments\\failonnotice', - 70 => 'phpunit\\textui\\cliarguments\\hasfailonrisky', - 71 => 'phpunit\\textui\\cliarguments\\failonrisky', - 72 => 'phpunit\\textui\\cliarguments\\hasfailonskipped', - 73 => 'phpunit\\textui\\cliarguments\\failonskipped', - 74 => 'phpunit\\textui\\cliarguments\\hasfailonwarning', - 75 => 'phpunit\\textui\\cliarguments\\failonwarning', - 76 => 'phpunit\\textui\\cliarguments\\hasstopondefect', - 77 => 'phpunit\\textui\\cliarguments\\stopondefect', - 78 => 'phpunit\\textui\\cliarguments\\hasstopondeprecation', - 79 => 'phpunit\\textui\\cliarguments\\stopondeprecation', - 80 => 'phpunit\\textui\\cliarguments\\hasspecificdeprecationtostopon', - 81 => 'phpunit\\textui\\cliarguments\\specificdeprecationtostopon', - 82 => 'phpunit\\textui\\cliarguments\\hasstoponerror', - 83 => 'phpunit\\textui\\cliarguments\\stoponerror', - 84 => 'phpunit\\textui\\cliarguments\\hasstoponfailure', - 85 => 'phpunit\\textui\\cliarguments\\stoponfailure', - 86 => 'phpunit\\textui\\cliarguments\\hasstoponincomplete', - 87 => 'phpunit\\textui\\cliarguments\\stoponincomplete', - 88 => 'phpunit\\textui\\cliarguments\\hasstoponnotice', - 89 => 'phpunit\\textui\\cliarguments\\stoponnotice', - 90 => 'phpunit\\textui\\cliarguments\\hasstoponrisky', - 91 => 'phpunit\\textui\\cliarguments\\stoponrisky', - 92 => 'phpunit\\textui\\cliarguments\\hasstoponskipped', - 93 => 'phpunit\\textui\\cliarguments\\stoponskipped', - 94 => 'phpunit\\textui\\cliarguments\\hasstoponwarning', - 95 => 'phpunit\\textui\\cliarguments\\stoponwarning', - 96 => 'phpunit\\textui\\cliarguments\\hasexcludefilter', - 97 => 'phpunit\\textui\\cliarguments\\excludefilter', - 98 => 'phpunit\\textui\\cliarguments\\hasfilter', - 99 => 'phpunit\\textui\\cliarguments\\filter', - 100 => 'phpunit\\textui\\cliarguments\\hasgeneratebaseline', - 101 => 'phpunit\\textui\\cliarguments\\generatebaseline', - 102 => 'phpunit\\textui\\cliarguments\\hasusebaseline', - 103 => 'phpunit\\textui\\cliarguments\\usebaseline', - 104 => 'phpunit\\textui\\cliarguments\\ignorebaseline', - 105 => 'phpunit\\textui\\cliarguments\\generateconfiguration', - 106 => 'phpunit\\textui\\cliarguments\\migrateconfiguration', - 107 => 'phpunit\\textui\\cliarguments\\hasgroups', - 108 => 'phpunit\\textui\\cliarguments\\groups', - 109 => 'phpunit\\textui\\cliarguments\\hastestscovering', - 110 => 'phpunit\\textui\\cliarguments\\testscovering', - 111 => 'phpunit\\textui\\cliarguments\\hastestsusing', - 112 => 'phpunit\\textui\\cliarguments\\testsusing', - 113 => 'phpunit\\textui\\cliarguments\\hastestsrequiringphpextension', - 114 => 'phpunit\\textui\\cliarguments\\testsrequiringphpextension', - 115 => 'phpunit\\textui\\cliarguments\\help', - 116 => 'phpunit\\textui\\cliarguments\\hasincludepath', - 117 => 'phpunit\\textui\\cliarguments\\includepath', - 118 => 'phpunit\\textui\\cliarguments\\hasinisettings', - 119 => 'phpunit\\textui\\cliarguments\\inisettings', - 120 => 'phpunit\\textui\\cliarguments\\hasjunitlogfile', - 121 => 'phpunit\\textui\\cliarguments\\junitlogfile', - 122 => 'phpunit\\textui\\cliarguments\\listgroups', - 123 => 'phpunit\\textui\\cliarguments\\listsuites', - 124 => 'phpunit\\textui\\cliarguments\\listtestfiles', - 125 => 'phpunit\\textui\\cliarguments\\listtests', - 126 => 'phpunit\\textui\\cliarguments\\haslisttestsxml', - 127 => 'phpunit\\textui\\cliarguments\\listtestsxml', - 128 => 'phpunit\\textui\\cliarguments\\hasnocoverage', - 129 => 'phpunit\\textui\\cliarguments\\nocoverage', - 130 => 'phpunit\\textui\\cliarguments\\hasnoextensions', - 131 => 'phpunit\\textui\\cliarguments\\noextensions', - 132 => 'phpunit\\textui\\cliarguments\\hasnooutput', - 133 => 'phpunit\\textui\\cliarguments\\nooutput', - 134 => 'phpunit\\textui\\cliarguments\\hasnoprogress', - 135 => 'phpunit\\textui\\cliarguments\\noprogress', - 136 => 'phpunit\\textui\\cliarguments\\hasnoresults', - 137 => 'phpunit\\textui\\cliarguments\\noresults', - 138 => 'phpunit\\textui\\cliarguments\\hasnologging', - 139 => 'phpunit\\textui\\cliarguments\\nologging', - 140 => 'phpunit\\textui\\cliarguments\\hasprocessisolation', - 141 => 'phpunit\\textui\\cliarguments\\processisolation', - 142 => 'phpunit\\textui\\cliarguments\\hasrandomorderseed', - 143 => 'phpunit\\textui\\cliarguments\\randomorderseed', - 144 => 'phpunit\\textui\\cliarguments\\hasreportuselesstests', - 145 => 'phpunit\\textui\\cliarguments\\reportuselesstests', - 146 => 'phpunit\\textui\\cliarguments\\hasresolvedependencies', - 147 => 'phpunit\\textui\\cliarguments\\resolvedependencies', - 148 => 'phpunit\\textui\\cliarguments\\hasreverselist', - 149 => 'phpunit\\textui\\cliarguments\\reverselist', - 150 => 'phpunit\\textui\\cliarguments\\hasstderr', - 151 => 'phpunit\\textui\\cliarguments\\stderr', - 152 => 'phpunit\\textui\\cliarguments\\hasstrictcoverage', - 153 => 'phpunit\\textui\\cliarguments\\strictcoverage', - 154 => 'phpunit\\textui\\cliarguments\\hasteamcitylogfile', - 155 => 'phpunit\\textui\\cliarguments\\teamcitylogfile', - 156 => 'phpunit\\textui\\cliarguments\\hasteamcityprinter', - 157 => 'phpunit\\textui\\cliarguments\\teamcityprinter', - 158 => 'phpunit\\textui\\cliarguments\\hastestdoxhtmlfile', - 159 => 'phpunit\\textui\\cliarguments\\testdoxhtmlfile', - 160 => 'phpunit\\textui\\cliarguments\\hastestdoxtextfile', - 161 => 'phpunit\\textui\\cliarguments\\testdoxtextfile', - 162 => 'phpunit\\textui\\cliarguments\\hastestdoxprinter', - 163 => 'phpunit\\textui\\cliarguments\\testdoxprinter', - 164 => 'phpunit\\textui\\cliarguments\\hastestdoxprintersummary', - 165 => 'phpunit\\textui\\cliarguments\\testdoxprintersummary', - 166 => 'phpunit\\textui\\cliarguments\\hastestsuffixes', - 167 => 'phpunit\\textui\\cliarguments\\testsuffixes', - 168 => 'phpunit\\textui\\cliarguments\\hastestsuite', - 169 => 'phpunit\\textui\\cliarguments\\testsuite', - 170 => 'phpunit\\textui\\cliarguments\\hasexcludedtestsuite', - 171 => 'phpunit\\textui\\cliarguments\\excludedtestsuite', - 172 => 'phpunit\\textui\\cliarguments\\usedefaultconfiguration', - 173 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonincompletetests', - 174 => 'phpunit\\textui\\cliarguments\\displaydetailsonincompletetests', - 175 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonskippedtests', - 176 => 'phpunit\\textui\\cliarguments\\displaydetailsonskippedtests', - 177 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonteststhattriggerdeprecations', - 178 => 'phpunit\\textui\\cliarguments\\displaydetailsonteststhattriggerdeprecations', - 179 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonphpunitdeprecations', - 180 => 'phpunit\\textui\\cliarguments\\displaydetailsonphpunitdeprecations', - 181 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonteststhattriggererrors', - 182 => 'phpunit\\textui\\cliarguments\\displaydetailsonteststhattriggererrors', - 183 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonteststhattriggernotices', - 184 => 'phpunit\\textui\\cliarguments\\displaydetailsonteststhattriggernotices', - 185 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonteststhattriggerwarnings', - 186 => 'phpunit\\textui\\cliarguments\\displaydetailsonteststhattriggerwarnings', - 187 => 'phpunit\\textui\\cliarguments\\version', - 188 => 'phpunit\\textui\\cliarguments\\haslogeventstext', - 189 => 'phpunit\\textui\\cliarguments\\logeventstext', - 190 => 'phpunit\\textui\\cliarguments\\haslogeventsverbosetext', - 191 => 'phpunit\\textui\\cliarguments\\logeventsverbosetext', - 192 => 'phpunit\\textui\\cliarguments\\debug', - 193 => 'phpunit\\textui\\cliarguments\\hasextensions', - 194 => 'phpunit\\textui\\cliarguments\\extensions', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Cli/XmlConfigurationFileFinder.php' => - array ( - 0 => 'd04bf271e14eab55eba299dfb45375676b53bdeb', - 1 => - array ( - 0 => 'phpunit\\textui\\cliarguments\\xmlconfigurationfilefinder', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\cliarguments\\find', - 1 => 'phpunit\\textui\\cliarguments\\configurationfileindirectory', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Cli/Exception.php' => - array ( - 0 => '0f0be4b7788e246d7417668e94d0595c58c5d94c', - 1 => - array ( - 0 => 'phpunit\\textui\\cliarguments\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Loader.php' => - array ( - 0 => 'f83d5d2eb6dbd3fcca0e58821efec5cabca3d897', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\loader', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\load', - 1 => 'phpunit\\textui\\xmlconfiguration\\logging', - 2 => 'phpunit\\textui\\xmlconfiguration\\extensions', - 3 => 'phpunit\\textui\\xmlconfiguration\\toabsolutepath', - 4 => 'phpunit\\textui\\xmlconfiguration\\source', - 5 => 'phpunit\\textui\\xmlconfiguration\\codecoverage', - 6 => 'phpunit\\textui\\xmlconfiguration\\getboolean', - 7 => 'phpunit\\textui\\xmlconfiguration\\getvalue', - 8 => 'phpunit\\textui\\xmlconfiguration\\readfilterdirectories', - 9 => 'phpunit\\textui\\xmlconfiguration\\readfilterfiles', - 10 => 'phpunit\\textui\\xmlconfiguration\\groups', - 11 => 'phpunit\\textui\\xmlconfiguration\\getbooleanattribute', - 12 => 'phpunit\\textui\\xmlconfiguration\\getintegerattribute', - 13 => 'phpunit\\textui\\xmlconfiguration\\getstringattribute', - 14 => 'phpunit\\textui\\xmlconfiguration\\getstringattributewithdefault', - 15 => 'phpunit\\textui\\xmlconfiguration\\getinteger', - 16 => 'phpunit\\textui\\xmlconfiguration\\php', - 17 => 'phpunit\\textui\\xmlconfiguration\\phpunit', - 18 => 'phpunit\\textui\\xmlconfiguration\\getcolors', - 19 => 'phpunit\\textui\\xmlconfiguration\\getcolumns', - 20 => 'phpunit\\textui\\xmlconfiguration\\testsuite', - 21 => 'phpunit\\textui\\xmlconfiguration\\gettestsuiteelements', - 22 => 'phpunit\\textui\\xmlconfiguration\\element', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/PHPUnit.php' => - array ( - 0 => 'efb7383dafd872d4d733e4326dbe8372afddf3f1', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\phpunit', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\hascachedirectory', - 2 => 'phpunit\\textui\\xmlconfiguration\\cachedirectory', - 3 => 'phpunit\\textui\\xmlconfiguration\\cacheresult', - 4 => 'phpunit\\textui\\xmlconfiguration\\columns', - 5 => 'phpunit\\textui\\xmlconfiguration\\colors', - 6 => 'phpunit\\textui\\xmlconfiguration\\stderr', - 7 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonincompletetests', - 8 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonskippedtests', - 9 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonteststhattriggerdeprecations', - 10 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonphpunitdeprecations', - 11 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonteststhattriggererrors', - 12 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonteststhattriggernotices', - 13 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonteststhattriggerwarnings', - 14 => 'phpunit\\textui\\xmlconfiguration\\reversedefectlist', - 15 => 'phpunit\\textui\\xmlconfiguration\\requirecoveragemetadata', - 16 => 'phpunit\\textui\\xmlconfiguration\\hasbootstrap', - 17 => 'phpunit\\textui\\xmlconfiguration\\bootstrap', - 18 => 'phpunit\\textui\\xmlconfiguration\\processisolation', - 19 => 'phpunit\\textui\\xmlconfiguration\\failondeprecation', - 20 => 'phpunit\\textui\\xmlconfiguration\\failonphpunitdeprecation', - 21 => 'phpunit\\textui\\xmlconfiguration\\failonemptytestsuite', - 22 => 'phpunit\\textui\\xmlconfiguration\\failonincomplete', - 23 => 'phpunit\\textui\\xmlconfiguration\\failonnotice', - 24 => 'phpunit\\textui\\xmlconfiguration\\failonrisky', - 25 => 'phpunit\\textui\\xmlconfiguration\\failonskipped', - 26 => 'phpunit\\textui\\xmlconfiguration\\failonwarning', - 27 => 'phpunit\\textui\\xmlconfiguration\\stopondefect', - 28 => 'phpunit\\textui\\xmlconfiguration\\stopondeprecation', - 29 => 'phpunit\\textui\\xmlconfiguration\\stoponerror', - 30 => 'phpunit\\textui\\xmlconfiguration\\stoponfailure', - 31 => 'phpunit\\textui\\xmlconfiguration\\stoponincomplete', - 32 => 'phpunit\\textui\\xmlconfiguration\\stoponnotice', - 33 => 'phpunit\\textui\\xmlconfiguration\\stoponrisky', - 34 => 'phpunit\\textui\\xmlconfiguration\\stoponskipped', - 35 => 'phpunit\\textui\\xmlconfiguration\\stoponwarning', - 36 => 'phpunit\\textui\\xmlconfiguration\\hasextensionsdirectory', - 37 => 'phpunit\\textui\\xmlconfiguration\\extensionsdirectory', - 38 => 'phpunit\\textui\\xmlconfiguration\\bestrictaboutchangestoglobalstate', - 39 => 'phpunit\\textui\\xmlconfiguration\\bestrictaboutoutputduringtests', - 40 => 'phpunit\\textui\\xmlconfiguration\\bestrictaboutteststhatdonottestanything', - 41 => 'phpunit\\textui\\xmlconfiguration\\bestrictaboutcoveragemetadata', - 42 => 'phpunit\\textui\\xmlconfiguration\\enforcetimelimit', - 43 => 'phpunit\\textui\\xmlconfiguration\\defaulttimelimit', - 44 => 'phpunit\\textui\\xmlconfiguration\\timeoutforsmalltests', - 45 => 'phpunit\\textui\\xmlconfiguration\\timeoutformediumtests', - 46 => 'phpunit\\textui\\xmlconfiguration\\timeoutforlargetests', - 47 => 'phpunit\\textui\\xmlconfiguration\\hasdefaulttestsuite', - 48 => 'phpunit\\textui\\xmlconfiguration\\defaulttestsuite', - 49 => 'phpunit\\textui\\xmlconfiguration\\executionorder', - 50 => 'phpunit\\textui\\xmlconfiguration\\resolvedependencies', - 51 => 'phpunit\\textui\\xmlconfiguration\\defectsfirst', - 52 => 'phpunit\\textui\\xmlconfiguration\\backupglobals', - 53 => 'phpunit\\textui\\xmlconfiguration\\backupstaticproperties', - 54 => 'phpunit\\textui\\xmlconfiguration\\testdoxprinter', - 55 => 'phpunit\\textui\\xmlconfiguration\\testdoxprintersummary', - 56 => 'phpunit\\textui\\xmlconfiguration\\controlgarbagecollector', - 57 => 'phpunit\\textui\\xmlconfiguration\\numberoftestsbeforegarbagecollection', - 58 => 'phpunit\\textui\\xmlconfiguration\\shortenarraysforexportthreshold', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Validator/Validator.php' => - array ( - 0 => 'cf59b897ce1e188d7480c7a611c92e8aa08f8951', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\validator', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\validate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Validator/ValidationResult.php' => - array ( - 0 => 'ca8ba3547411c6617c476f9a552dcf646fa8f34c', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\validationresult', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\fromarray', - 1 => 'phpunit\\textui\\xmlconfiguration\\__construct', - 2 => 'phpunit\\textui\\xmlconfiguration\\hasvalidationerrors', - 3 => 'phpunit\\textui\\xmlconfiguration\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/SchemaDetector/SchemaDetectionResult.php' => - array ( - 0 => '834d8fc9e53f60226a153f93a39ad1a0963af76d', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\schemadetectionresult', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\detected', - 1 => 'phpunit\\textui\\xmlconfiguration\\version', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/SchemaDetector/SuccessfulSchemaDetectionResult.php' => - array ( - 0 => '4efe689680dd617c3d92db45920e3c54fbc2e0f8', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\successfulschemadetectionresult', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\detected', - 2 => 'phpunit\\textui\\xmlconfiguration\\version', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/SchemaDetector/FailedSchemaDetectionResult.php' => - array ( - 0 => '4dde584304e23427ca91367832750738e7045d75', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\failedschemadetectionresult', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/SchemaDetector/SchemaDetector.php' => - array ( - 0 => '4fa4e59e2320f12f86bbd59210afee8094312cdf', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\schemadetector', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\detect', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Configuration.php' => - array ( - 0 => '90da38f5aa90e837f738f5bc98daea546997cebb', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\configuration', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\extensions', - 2 => 'phpunit\\textui\\xmlconfiguration\\source', - 3 => 'phpunit\\textui\\xmlconfiguration\\codecoverage', - 4 => 'phpunit\\textui\\xmlconfiguration\\groups', - 5 => 'phpunit\\textui\\xmlconfiguration\\logging', - 6 => 'phpunit\\textui\\xmlconfiguration\\php', - 7 => 'phpunit\\textui\\xmlconfiguration\\phpunit', - 8 => 'phpunit\\textui\\xmlconfiguration\\testsuite', - 9 => 'phpunit\\textui\\xmlconfiguration\\isdefault', - 10 => 'phpunit\\textui\\xmlconfiguration\\wasloadedfromfile', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/TestSuiteMapper.php' => - array ( - 0 => 'aad9d4aefc6912c778b1e5e81272e7ea703563d1', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\testsuitemapper', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\map', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/LoadedFromFileConfiguration.php' => - array ( - 0 => 'f5b2ebaa8fb0472243074b8bdccd4f54b965fa29', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\loadedfromfileconfiguration', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\filename', - 2 => 'phpunit\\textui\\xmlconfiguration\\hasvalidationerrors', - 3 => 'phpunit\\textui\\xmlconfiguration\\validationerrors', - 4 => 'phpunit\\textui\\xmlconfiguration\\wasloadedfromfile', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/CodeCoverage.php' => - array ( - 0 => 'dcd51d74f859f14df917b4139b868670ddaeed70', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\codecoverage', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\pathcoverage', - 2 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\includeuncoveredfiles', - 3 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\ignoredeprecatedcodeunits', - 4 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\disablecodecoverageignore', - 5 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\hasclover', - 6 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\clover', - 7 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\hascobertura', - 8 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\cobertura', - 9 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\hascrap4j', - 10 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\crap4j', - 11 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\hashtml', - 12 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\html', - 13 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\hasphp', - 14 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\php', - 15 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\hastext', - 16 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\text', - 17 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\hasxml', - 18 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\xml', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/Report/Cobertura.php' => - array ( - 0 => 'e550f445d109879dec58b3505830f56e3e51c1b1', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\cobertura', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\target', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/Report/Clover.php' => - array ( - 0 => '44befd951fe503f6cd81eb9d3cb27c04cc121476', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\clover', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\target', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/Report/Xml.php' => - array ( - 0 => '6292b19a4aaeb678d1bff9d6fe229097f3f6ae8c', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\xml', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\target', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/Report/Html.php' => - array ( - 0 => '4768b4bf03962acb947a5c5708f81c479f804706', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\html', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\target', - 2 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\lowupperbound', - 3 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\highlowerbound', - 4 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\colorsuccesslow', - 5 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\colorsuccessmedium', - 6 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\colorsuccesshigh', - 7 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\colorwarning', - 8 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\colordanger', - 9 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\hascustomcssfile', - 10 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\customcssfile', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/Report/Php.php' => - array ( - 0 => '06bfeff154250e41ac10fa4a35b452a7c2b0fbcb', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\php', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\target', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/Report/Text.php' => - array ( - 0 => '94db27751965af21fb5da2f15d8e85d61a937116', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\text', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\target', - 2 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\showuncoveredfiles', - 3 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\showonlysummary', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/Report/Crap4j.php' => - array ( - 0 => 'dfd0a3d37e7994068451d71dfbdc67321f1922bb', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\crap4j', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\target', - 2 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\threshold', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/DefaultConfiguration.php' => - array ( - 0 => '55a65ff37a7e039c42594fa1552074295bbc8964', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\defaultconfiguration', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\create', - 1 => 'phpunit\\textui\\xmlconfiguration\\isdefault', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/SchemaFinder.php' => - array ( - 0 => 'a1fa4436902d64049e78e2df7985cfe4e7710ecf', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\schemafinder', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\available', - 1 => 'phpunit\\textui\\xmlconfiguration\\find', - 2 => 'phpunit\\textui\\xmlconfiguration\\path', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Groups.php' => - array ( - 0 => '689af841f2e52b7d6e86f092e73f98967228929f', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\groups', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\hasinclude', - 2 => 'phpunit\\textui\\xmlconfiguration\\include', - 3 => 'phpunit\\textui\\xmlconfiguration\\hasexclude', - 4 => 'phpunit\\textui\\xmlconfiguration\\exclude', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Generator.php' => - array ( - 0 => 'af3a2facec6c0bef5b4615f5b3a3761a9e9b23b2', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\generator', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\generatedefaultconfiguration', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Exception.php' => - array ( - 0 => 'd4f0bbea8b6aa2ac2f3cfbb6a8a69ec3a8a5ec1e', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/MigrationException.php' => - array ( - 0 => 'a1f92ed8c45e70c41a7865cbe14a8eeba5cdd50a', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrationexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RenameForceCoversAnnotationAttribute.php' => - array ( - 0 => 'be4495f82dcc44f7c465677c8905754c8fc53374', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\renameforcecoversannotationattribute', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/CoverageCrap4jToReport.php' => - array ( - 0 => 'd4cf2bdddf7ea405fbff80849328521f902d7341', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\coveragecrap4jtoreport', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\fortype', - 1 => 'phpunit\\textui\\xmlconfiguration\\toreportformat', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveCoverageElementCacheDirectoryAttribute.php' => - array ( - 0 => 'a9a6c85541a2397cc69f385a4e7fc3517e6a0762', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\removecoverageelementcachedirectoryattribute', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RenameBackupStaticAttributesAttribute.php' => - array ( - 0 => '08cff37970bf82179e914c567d5edb4198e06728', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\renamebackupstaticattributesattribute', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveTestSuiteLoaderAttributes.php' => - array ( - 0 => 'aa6d8bbe0bbb0e23a85a25b672c7d4ec7eb64dc6', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\removetestsuiteloaderattributes', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveCacheResultFileAttribute.php' => - array ( - 0 => 'e5b6fd8db3e8cade458f5bf91201aaebad5da6ba', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\removecacheresultfileattribute', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveLoggingElements.php' => - array ( - 0 => 'c5561d0d72f128a09f69ef1665c17939be647a9a', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\removeloggingelements', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - 1 => 'phpunit\\textui\\xmlconfiguration\\removetestdoxelement', - 2 => 'phpunit\\textui\\xmlconfiguration\\removetextelement', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/ConvertLogTypes.php' => - array ( - 0 => '6d1624d925f3cb10fb46ad22daafd412c263c2cb', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\convertlogtypes', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveLogTypes.php' => - array ( - 0 => '00c8089e17f0bd76d41fc20197d8fe4958f46a28', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\removelogtypes', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveCoverageElementIncludeUncoveredFilesAttribute.php' => - array ( - 0 => 'c64db44c3f8781d6612042fc16c03b8063afc350', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\removecoverageelementincludeuncoveredfilesattribute', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/MoveAttributesFromFilterWhitelistToCoverage.php' => - array ( - 0 => '743fad0ada2d9ad0867ef6765508ea1a43537c93', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\moveattributesfromfilterwhitelisttocoverage', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/MoveWhitelistExcludesToCoverage.php' => - array ( - 0 => 'ac3fd88b8150a3232279b061b0cc9ac27af9fe5d', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\movewhitelistexcludestocoverage', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveVerboseAttribute.php' => - array ( - 0 => '11550794a068c05c46928cf78bd5ec9ec9157d5b', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\removeverboseattribute', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveRegisterMockObjectsFromTestArgumentsRecursivelyAttribute.php' => - array ( - 0 => '4c71a4f1bebd7d82e4431ecde406a8f632b5458b', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\removeregistermockobjectsfromtestargumentsrecursivelyattribute', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RenameBeStrictAboutCoversAnnotationAttribute.php' => - array ( - 0 => '451d9c1d5dcf7d3dcf7ab16490f4a2e3faaf62de', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\renamebestrictaboutcoversannotationattribute', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveCacheTokensAttribute.php' => - array ( - 0 => 'bdb747127d7ea254c1059cdece26452963974ad4', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\removecachetokensattribute', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemovePrinterAttributes.php' => - array ( - 0 => '71adbc8d37637fa63f831e4ef7f15b4c6186a338', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\removeprinterattributes', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/CoveragePhpToReport.php' => - array ( - 0 => '7dedf1b01279a5a1a89f55d2b9eb00219670f4b3', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\coveragephptoreport', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\fortype', - 1 => 'phpunit\\textui\\xmlconfiguration\\toreportformat', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/MoveWhitelistIncludesToCoverage.php' => - array ( - 0 => '164f00846d284c52f73acb69f88a4b404c15df76', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\movewhitelistincludestocoverage', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/UpdateSchemaLocation.php' => - array ( - 0 => 'ddfd17dd7ae1cdf38d11b2b441e99764aeb0e5e2', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\updateschemalocation', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveEmptyFilter.php' => - array ( - 0 => '7a12054f04d5f8aec3d109c8475ea9e3ce198827', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\removeemptyfilter', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - 1 => 'phpunit\\textui\\xmlconfiguration\\ensureempty', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveBeStrictAboutTodoAnnotatedTestsAttribute.php' => - array ( - 0 => '7f85c0987617d343e91b2e14e1d0aa90581dc3a7', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\removebestrictabouttodoannotatedtestsattribute', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/LogToReportMigration.php' => - array ( - 0 => 'bc7f494eb94b03c72083c00e109b1d13480a262e', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\logtoreportmigration', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - 1 => 'phpunit\\textui\\xmlconfiguration\\migrateattributes', - 2 => 'phpunit\\textui\\xmlconfiguration\\fortype', - 3 => 'phpunit\\textui\\xmlconfiguration\\toreportformat', - 4 => 'phpunit\\textui\\xmlconfiguration\\findlognode', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveCoverageElementProcessUncoveredFilesAttribute.php' => - array ( - 0 => 'c15b6868e4409b1d49158796fc133b3b07f2219a', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\removecoverageelementprocessuncoveredfilesattribute', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/MoveAttributesFromRootToCoverage.php' => - array ( - 0 => 'dd73b50ee2796c7e9924136bc73b2539e6c3f640', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\moveattributesfromroottocoverage', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/CoverageXmlToReport.php' => - array ( - 0 => '5922a0d76700a7e4f17e0602183139515e41d1e1', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\coveragexmltoreport', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\fortype', - 1 => 'phpunit\\textui\\xmlconfiguration\\toreportformat', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveTestDoxGroupsElement.php' => - array ( - 0 => '20468a91aa0a23e74add9039587c1d510c361d91', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\removetestdoxgroupselement', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/CoverageHtmlToReport.php' => - array ( - 0 => 'e09f046cd3e4790a8368c4b5d2f1973ed41c5db9', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\coveragehtmltoreport', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\fortype', - 1 => 'phpunit\\textui\\xmlconfiguration\\toreportformat', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/IntroduceCoverageElement.php' => - array ( - 0 => '7cb14b359dcc1ee3a875d0cfb205e4520aef0900', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\introducecoverageelement', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/CoverageTextToReport.php' => - array ( - 0 => '20906a9f6d9413eacbf9a719f0a6e96eef04a3a8', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\coveragetexttoreport', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\fortype', - 1 => 'phpunit\\textui\\xmlconfiguration\\toreportformat', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveNoInteractionAttribute.php' => - array ( - 0 => '5e77a3800fa56b0dff693889084d5856b5cefc21', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\removenointeractionattribute', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveBeStrictAboutResourceUsageDuringSmallTestsAttribute.php' => - array ( - 0 => 'ab8ba456cf0c9b339130e36d06e8acb45a550b46', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\removebestrictaboutresourceusageduringsmalltestsattribute', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/MoveCoverageDirectoriesToSource.php' => - array ( - 0 => '0ae01be883d239af2fae9b8ccbf834a2d270a1ef', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\movecoveragedirectoriestosource', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/CoverageCloverToReport.php' => - array ( - 0 => '567009c643d59e533dfc2689be74ddf0d1034fe7', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\coverageclovertoreport', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\fortype', - 1 => 'phpunit\\textui\\xmlconfiguration\\toreportformat', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/ReplaceRestrictDeprecationsWithIgnoreDeprecations.php' => - array ( - 0 => '9656c6ff526f0b82aaa186a438b5ae7eeb42c1c2', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\replacerestrictdeprecationswithignoredeprecations', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/Migration.php' => - array ( - 0 => '95d38bcdc92c05eb6ea00b9589def889d1b9beed', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migration', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveConversionToExceptionsAttributes.php' => - array ( - 0 => '8b8760a6534755cd14378a3bc2693b2180944efb', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\removeconversiontoexceptionsattributes', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/IntroduceCacheDirectoryAttribute.php' => - array ( - 0 => 'eebcd557466bdd8a0b72a5f2c770c2d0074f00c0', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\introducecachedirectoryattribute', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/RemoveListeners.php' => - array ( - 0 => 'e64501de941f341528686a89b595e176688fcb8f', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\removelisteners', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrator.php' => - array ( - 0 => '73a27473b48981ea58529cd66f81d71679022f2a', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrator', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/MigrationBuilder.php' => - array ( - 0 => '41d631dfcbc42965c72d348d4797cd51606d1cc1', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrationbuilder', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\build', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/SnapshotNodeList.php' => - array ( - 0 => '4265566a18c23668f84a0a85564069c78b867e84', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\snapshotnodelist', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\fromnodelist', - 1 => 'phpunit\\textui\\xmlconfiguration\\count', - 2 => 'phpunit\\textui\\xmlconfiguration\\getiterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Logging/TeamCity.php' => - array ( - 0 => '7f94b515899e284cb248575b3114264ef1cc08db', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\teamcity', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\logging\\target', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Logging/TestDox/Html.php' => - array ( - 0 => '09f69118287742efa510639ffd85431061bab41e', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\testdox\\html', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\testdox\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\logging\\testdox\\target', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Logging/TestDox/Text.php' => - array ( - 0 => '5a1ba63aed7f28fbc0e89479cfd1904fe1b24093', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\testdox\\text', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\testdox\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\logging\\testdox\\target', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Logging/Junit.php' => - array ( - 0 => 'fa2648aa5cb6182071c3cf6c647a00473b094c23', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\junit', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\logging\\target', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Logging/Logging.php' => - array ( - 0 => 'f1bfa478e9d0ebdd24e88a403eeeb62ad358f9dc', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\logging', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\logging\\hasjunit', - 2 => 'phpunit\\textui\\xmlconfiguration\\logging\\junit', - 3 => 'phpunit\\textui\\xmlconfiguration\\logging\\hasteamcity', - 4 => 'phpunit\\textui\\xmlconfiguration\\logging\\teamcity', - 5 => 'phpunit\\textui\\xmlconfiguration\\logging\\hastestdoxhtml', - 6 => 'phpunit\\textui\\xmlconfiguration\\logging\\testdoxhtml', - 7 => 'phpunit\\textui\\xmlconfiguration\\logging\\hastestdoxtext', - 8 => 'phpunit\\textui\\xmlconfiguration\\logging\\testdoxtext', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/TestSuiteBuilder.php' => - array ( - 0 => '21198fdd03d3af66d29bf783d1503833df169cfa', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\testsuitebuilder', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\build', - 1 => 'phpunit\\textui\\configuration\\testsuitefrompath', - 2 => 'phpunit\\textui\\configuration\\testsuitefrompathlist', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/SourceFilter.php' => - array ( - 0 => 'b78678f05406d958e11ace7da5edfe774071dbb6', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\sourcefilter', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\includes', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/SourceMapper.php' => - array ( - 0 => '511e052b59d4f437b985f45bfee12e25964be4bd', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\sourcemapper', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\map', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Merger.php' => - array ( - 0 => 'c28507b3167d4736bcfe4f740aec9258904d556c', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\merger', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\merge', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoBootstrapException.php' => - array ( - 0 => 'e89adbef462ec8b9712861cb5ad1da685fe90f24', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\nobootstrapexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoCustomCssFileException.php' => - array ( - 0 => 'df7740e41ea6f290a3e01a11d1106b57cac4f6b6', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\nocustomcssfileexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/ConfigurationCannotBeBuiltException.php' => - array ( - 0 => 'b7cf90f1fe62dd5f4c621e87e07a4a25d629594e', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\configurationcannotbebuiltexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/SpecificDeprecationToStopOnNotConfiguredException.php' => - array ( - 0 => 'f2eb264390144f664b6b821c30e6561ca13bc1f0', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\specificdeprecationtostoponnotconfiguredexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/CodeCoverageReportNotConfiguredException.php' => - array ( - 0 => '25ffffc57d9bc1aab7ef904d02b9fc5283be4f33', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\codecoveragereportnotconfiguredexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoPharExtensionDirectoryException.php' => - array ( - 0 => '3d437b5db4d3b4a7f0b40c1fa7d5e674dbb33990', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\nopharextensiondirectoryexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/FilterNotConfiguredException.php' => - array ( - 0 => '02ca5e8fa09bbf695be9ad90ac843b41a3decadc', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\filternotconfiguredexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoDefaultTestSuiteException.php' => - array ( - 0 => 'e76f5647d0dab86deaff96914a1c4cccc9fad5bc', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\nodefaulttestsuiteexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/CannotFindSchemaException.php' => - array ( - 0 => '65e55368a3291a3b4b771d235fcfa6b851aba3ca', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\cannotfindschemaexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/LoggingNotConfiguredException.php' => - array ( - 0 => '0588de36a3edfff413d678250b821d35dc8fd2d8', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\loggingnotconfiguredexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoCoverageCacheDirectoryException.php' => - array ( - 0 => 'ef44d47ec54dd79df1149eb6f7f4c47740b19577', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\nocoveragecachedirectoryexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoBaselineException.php' => - array ( - 0 => '5956aed529d178e1a27e6127481c9f968c185184', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\nobaselineexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoCacheDirectoryException.php' => - array ( - 0 => 'a3b9097eb983fb89b490551e2d2d6d6752ccdbb2', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\nocachedirectoryexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoConfigurationFileException.php' => - array ( - 0 => '29abe2e5b128e446f78ebe9fd63e36cbd4e962ee', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\noconfigurationfileexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/Exception.php' => - array ( - 0 => '651f39402a47ca1bb60aaefd362efc91ddb09f78', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Printer/NullPrinter.php' => - array ( - 0 => 'f3af88df335d0da2a40ca9ba37632f3927baa2a9', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\nullprinter', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\print', - 1 => 'phpunit\\textui\\output\\flush', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Printer/DefaultPrinter.php' => - array ( - 0 => '9ba361bb822891ae318580dae4e9ea5ec5d49a15', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\defaultprinter', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\from', - 1 => 'phpunit\\textui\\output\\standardoutput', - 2 => 'phpunit\\textui\\output\\standarderror', - 3 => 'phpunit\\textui\\output\\__construct', - 4 => 'phpunit\\textui\\output\\print', - 5 => 'phpunit\\textui\\output\\flush', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Printer/Printer.php' => - array ( - 0 => 'b59027b7fac3199d97fb6db2f6905aace22e8c6f', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\printer', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\print', - 1 => 'phpunit\\textui\\output\\flush', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/SummaryPrinter.php' => - array ( - 0 => '456278667ed14af9ad5e56133dc94c8bb2479fa3', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\summaryprinter', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\__construct', - 1 => 'phpunit\\textui\\output\\print', - 2 => 'phpunit\\textui\\output\\printcountstring', - 3 => 'phpunit\\textui\\output\\printwithcolor', - 4 => 'phpunit\\textui\\output\\printnumberofissuesignoredbybaseline', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ResultPrinter.php' => - array ( - 0 => '2f5d956284dd3324f56d7100f4f7cad2947f0052', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\resultprinter', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\__construct', - 1 => 'phpunit\\textui\\output\\default\\print', - 2 => 'phpunit\\textui\\output\\default\\printphpuniterrors', - 3 => 'phpunit\\textui\\output\\default\\printdetailsonteststhattriggeredphpunitdeprecations', - 4 => 'phpunit\\textui\\output\\default\\printtestrunnerwarnings', - 5 => 'phpunit\\textui\\output\\default\\printtestrunnerdeprecations', - 6 => 'phpunit\\textui\\output\\default\\printdetailsonteststhattriggeredphpunitwarnings', - 7 => 'phpunit\\textui\\output\\default\\printtestswitherrors', - 8 => 'phpunit\\textui\\output\\default\\printtestswithfailedassertions', - 9 => 'phpunit\\textui\\output\\default\\printriskytests', - 10 => 'phpunit\\textui\\output\\default\\printincompletetests', - 11 => 'phpunit\\textui\\output\\default\\printskippedtestsuites', - 12 => 'phpunit\\textui\\output\\default\\printskippedtests', - 13 => 'phpunit\\textui\\output\\default\\printissuelist', - 14 => 'phpunit\\textui\\output\\default\\printlistheaderwithnumberoftestsandnumberofissues', - 15 => 'phpunit\\textui\\output\\default\\printlistheaderwithnumber', - 16 => 'phpunit\\textui\\output\\default\\printlistheader', - 17 => 'phpunit\\textui\\output\\default\\printlist', - 18 => 'phpunit\\textui\\output\\default\\printlistelement', - 19 => 'phpunit\\textui\\output\\default\\printissuelistelement', - 20 => 'phpunit\\textui\\output\\default\\name', - 21 => 'phpunit\\textui\\output\\default\\maptestswithissueseventstoelements', - 22 => 'phpunit\\textui\\output\\default\\testlocation', - 23 => 'phpunit\\textui\\output\\default\\reasonmessage', - 24 => 'phpunit\\textui\\output\\default\\reasonlocation', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/UnexpectedOutputPrinter.php' => - array ( - 0 => '7186aeda6a72cbff8a47d9e2effcd881218870ce', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\unexpectedoutputprinter', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\__construct', - 1 => 'phpunit\\textui\\output\\default\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/ProgressPrinter.php' => - array ( - 0 => '66ca8e3c6bc4e09b36d7dd4dd8987427c97c1cc5', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\progressprinter', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\__construct', - 1 => 'phpunit\\textui\\output\\default\\progressprinter\\testrunnerexecutionstarted', - 2 => 'phpunit\\textui\\output\\default\\progressprinter\\beforetestclassmethoderrored', - 3 => 'phpunit\\textui\\output\\default\\progressprinter\\testprepared', - 4 => 'phpunit\\textui\\output\\default\\progressprinter\\testskipped', - 5 => 'phpunit\\textui\\output\\default\\progressprinter\\testmarkedincomplete', - 6 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggerednotice', - 7 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpnotice', - 8 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggereddeprecation', - 9 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpdeprecation', - 10 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpunitdeprecation', - 11 => 'phpunit\\textui\\output\\default\\progressprinter\\testconsideredrisky', - 12 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredwarning', - 13 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpwarning', - 14 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpunitwarning', - 15 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggerederror', - 16 => 'phpunit\\textui\\output\\default\\progressprinter\\testfailed', - 17 => 'phpunit\\textui\\output\\default\\progressprinter\\testerrored', - 18 => 'phpunit\\textui\\output\\default\\progressprinter\\testfinished', - 19 => 'phpunit\\textui\\output\\default\\progressprinter\\registersubscribers', - 20 => 'phpunit\\textui\\output\\default\\progressprinter\\updateteststatus', - 21 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforsuccess', - 22 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforskipped', - 23 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforincomplete', - 24 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressfornotice', - 25 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressfordeprecation', - 26 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforrisky', - 27 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforwarning', - 28 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforfailure', - 29 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforerror', - 30 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogresswithcolor', - 31 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogress', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestErroredSubscriber.php' => - array ( - 0 => 'b7c2677b4f823afa51d1ac8569e320a5236215cb', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testerroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestConsideredRiskySubscriber.php' => - array ( - 0 => 'b06cbc160cb4bb8c9669752d12c74508e1e93118', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testconsideredriskysubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredNoticeSubscriber.php' => - array ( - 0 => '97a8d630c2dafc30b67a7e00e1e3dcbf9136cbda', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggerednoticesubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredPhpunitWarningSubscriber.php' => - array ( - 0 => '1d7c5b97c2c0bfe9a81dc1af6c8db31190da9005', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpunitwarningsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestFailedSubscriber.php' => - array ( - 0 => 'b55fc82ffd8a052352a034408ffc3b302b569a5e', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredWarningSubscriber.php' => - array ( - 0 => '328463e2ac4c9dfb7bfea9c5fd51c6f2ad63e933', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredwarningsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/BeforeTestClassMethodErroredSubscriber.php' => - array ( - 0 => '2024bceb1e40922404c8b13423681f8be92153da', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\beforetestclassmethoderroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredDeprecationSubscriber.php' => - array ( - 0 => '8309ebe41ee85ea1c4078eabeb0a7a9cef981fb1', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggereddeprecationsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredPhpDeprecationSubscriber.php' => - array ( - 0 => 'c147fed0f2801524d86d59ae5f9b51148b5cb88c', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpdeprecationsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestMarkedIncompleteSubscriber.php' => - array ( - 0 => '3da74dd9689dcfa18aa8c779814791294477277e', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testmarkedincompletesubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestPreparedSubscriber.php' => - array ( - 0 => '80f8bf0ed68da8faf9f9c438789a4ab8dbd203cb', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testpreparedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredPhpWarningSubscriber.php' => - array ( - 0 => '4cfbbd84948f6f9f79a767fcfe293f012ecaf282', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpwarningsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/Subscriber.php' => - array ( - 0 => 'b8c1c12bd0788cc308b0a5ab8b48edfcd9ffd701', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\subscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\__construct', - 1 => 'phpunit\\textui\\output\\default\\progressprinter\\printer', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestSkippedSubscriber.php' => - array ( - 0 => '8d2d68f40690ed2b8f7e56fcc7d8214cd069826d', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testskippedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestFinishedSubscriber.php' => - array ( - 0 => 'dc7d041fc7ebf68383a249916e487206c2a3dc6e', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredErrorSubscriber.php' => - array ( - 0 => 'efc60f0d662f41f9dd3f6da6a736d6254b0dbd58', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggerederrorsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredPhpunitDeprecationSubscriber.php' => - array ( - 0 => 'a4cda89b11c1d515611752ca610e7cd529aa6d60', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpunitdeprecationsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestRunnerExecutionStartedSubscriber.php' => - array ( - 0 => '387d66d6968176f25c1b0dead11c46d44ba216a4', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testrunnerexecutionstartedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredPhpNoticeSubscriber.php' => - array ( - 0 => '2c15623012a12e04708dd104055cc40d2911326a', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpnoticesubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/TestDox/ResultPrinter.php' => - array ( - 0 => '1ca7bf0eecfbb0368c9c7529fe939db74019b86e', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\testdox\\resultprinter', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\testdox\\__construct', - 1 => 'phpunit\\textui\\output\\testdox\\print', - 2 => 'phpunit\\textui\\output\\testdox\\doprint', - 3 => 'phpunit\\textui\\output\\testdox\\printprettifiedclassname', - 4 => 'phpunit\\textui\\output\\testdox\\printtestresult', - 5 => 'phpunit\\textui\\output\\testdox\\printtestresultheader', - 6 => 'phpunit\\textui\\output\\testdox\\printtestresultbody', - 7 => 'phpunit\\textui\\output\\testdox\\printtestresultbodystart', - 8 => 'phpunit\\textui\\output\\testdox\\printtestresultbodyend', - 9 => 'phpunit\\textui\\output\\testdox\\printthrowable', - 10 => 'phpunit\\textui\\output\\testdox\\colorizemessageanddiff', - 11 => 'phpunit\\textui\\output\\testdox\\formatstacktrace', - 12 => 'phpunit\\textui\\output\\testdox\\prefixlines', - 13 => 'phpunit\\textui\\output\\testdox\\prefixfor', - 14 => 'phpunit\\textui\\output\\testdox\\colorfor', - 15 => 'phpunit\\textui\\output\\testdox\\messagecolorfor', - 16 => 'phpunit\\textui\\output\\testdox\\symbolfor', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Output/Facade.php' => - array ( - 0 => 'efc851751b3003dcecc4be9e98e119c077f23fdb', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\facade', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\init', - 1 => 'phpunit\\textui\\output\\printresult', - 2 => 'phpunit\\textui\\output\\printerfor', - 3 => 'phpunit\\textui\\output\\createprinter', - 4 => 'phpunit\\textui\\output\\createprogressprinter', - 5 => 'phpunit\\textui\\output\\usedefaultprogressprinter', - 6 => 'phpunit\\textui\\output\\createresultprinter', - 7 => 'phpunit\\textui\\output\\createsummaryprinter', - 8 => 'phpunit\\textui\\output\\createunexpectedoutputprinter', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/TestSuiteFilterProcessor.php' => - array ( - 0 => '8b732f086d66fa52bc284affbf7ff2cb44fb5364', - 1 => - array ( - 0 => 'phpunit\\textui\\testsuitefilterprocessor', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\process', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/TestRunner.php' => - array ( - 0 => '476ebf03ebb894ccd2a0d6e519420d364ff3c7a4', - 1 => - array ( - 0 => 'phpunit\\textui\\testrunner', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\run', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/ShellExitCodeCalculator.php' => - array ( - 0 => '5f0d811831cb5f7ce1d0b9822a019152eb8f3b84', - 1 => - array ( - 0 => 'phpunit\\textui\\shellexitcodecalculator', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\calculate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Help.php' => - array ( - 0 => '4b25c744de98e9a375e8fc3ef109118966d3d75b', - 1 => - array ( - 0 => 'phpunit\\textui\\help', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\__construct', - 1 => 'phpunit\\textui\\generate', - 2 => 'phpunit\\textui\\writewithoutcolor', - 3 => 'phpunit\\textui\\writewithcolor', - 4 => 'phpunit\\textui\\elements', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Result.php' => - array ( - 0 => '89902429f5e51e912947de5450410ff92a631014', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\result', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\from', - 1 => 'phpunit\\textui\\command\\__construct', - 2 => 'phpunit\\textui\\command\\output', - 3 => 'phpunit\\textui\\command\\shellexitcode', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Command.php' => - array ( - 0 => '96e50f31ed155151784c459da253346c43bb8c0a', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\command', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\execute', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/WarmCodeCoverageCacheCommand.php' => - array ( - 0 => '78c25f5294c55837d73361ae84fc4a8d8d514453', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\warmcodecoveragecachecommand', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\__construct', - 1 => 'phpunit\\textui\\command\\execute', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ShowVersionCommand.php' => - array ( - 0 => '616b75efcb1b0d990c7e34e77570b4a3b4f2652c', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\showversioncommand', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\execute', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ListTestsAsTextCommand.php' => - array ( - 0 => 'b680bed2dd96cd77c6d7286ceede36b0641b52d0', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\listtestsastextcommand', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\__construct', - 1 => 'phpunit\\textui\\command\\execute', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ListTestSuitesCommand.php' => - array ( - 0 => '67faf7f9c2ad3912ec917375e07f100c5893f6dd', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\listtestsuitescommand', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\__construct', - 1 => 'phpunit\\textui\\command\\execute', - 2 => 'phpunit\\textui\\command\\warnaboutconflictingoptions', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ListTestsAsXmlCommand.php' => - array ( - 0 => '3755b3f90c5ab1c7443c75f73db9b811bac87852', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\listtestsasxmlcommand', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\__construct', - 1 => 'phpunit\\textui\\command\\execute', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/VersionCheckCommand.php' => - array ( - 0 => '4eb45269fe1d7a76ba74b044bbad47da17e3592f', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\versioncheckcommand', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\__construct', - 1 => 'phpunit\\textui\\command\\execute', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/AtLeastVersionCommand.php' => - array ( - 0 => '0e0835b2de049efc98bf30f119ad1af6462fc763', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\atleastversioncommand', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\__construct', - 1 => 'phpunit\\textui\\command\\execute', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ListTestFilesCommand.php' => - array ( - 0 => 'f2cdc6101ce8eb88e6728505212841178306751c', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\listtestfilescommand', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\__construct', - 1 => 'phpunit\\textui\\command\\execute', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/GenerateConfigurationCommand.php' => - array ( - 0 => '2033120c9c22e4f59759962f8157925a3747ea78', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\generateconfigurationcommand', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\execute', - 1 => 'phpunit\\textui\\command\\read', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/MigrateConfigurationCommand.php' => - array ( - 0 => '0e3e09562a48768ef6c9c3e9ac4e7948df04a4ad', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\migrateconfigurationcommand', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\__construct', - 1 => 'phpunit\\textui\\command\\execute', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ShowHelpCommand.php' => - array ( - 0 => '1a9288f23a9a91a947d0630dc7589f9f06742bd8', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\showhelpcommand', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\__construct', - 1 => 'phpunit\\textui\\command\\execute', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ListGroupsCommand.php' => - array ( - 0 => '04db0cd699b49ddaa9953d341e3524bfce74100a', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\listgroupscommand', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\__construct', - 1 => 'phpunit\\textui\\command\\execute', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Exception/InvalidSocketException.php' => - array ( - 0 => '0238662e03efd7be7d81aca840e20e14534e9675', - 1 => - array ( - 0 => 'phpunit\\textui\\invalidsocketexception', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Exception/RuntimeException.php' => - array ( - 0 => '402a47a1fcbadbc07b259a80e7188b91da7e59ea', - 1 => - array ( - 0 => 'phpunit\\textui\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Exception/TestDirectoryNotFoundException.php' => - array ( - 0 => '58780a502a030a322cac326144bfbdcabc10bcab', - 1 => - array ( - 0 => 'phpunit\\textui\\testdirectorynotfoundexception', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Exception/TestFileNotFoundException.php' => - array ( - 0 => '3a91189d8cd317d57ac8ee5616d00a8d9f1cbc5c', - 1 => - array ( - 0 => 'phpunit\\textui\\testfilenotfoundexception', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Exception/CannotOpenSocketException.php' => - array ( - 0 => '62795c3cc94c8eeae3c962572c06ba225de0082a', - 1 => - array ( - 0 => 'phpunit\\textui\\cannotopensocketexception', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/TextUI/Exception/Exception.php' => - array ( - 0 => 'cd59a68d86bd54ca3a220e6011d8ef170e0b112c', - 1 => - array ( - 0 => 'phpunit\\textui\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/ThrowableToStringMapper.php' => - array ( - 0 => 'd7cdb5c7f1b8a7facd4c62bc6fc81bdc660d06fc', - 1 => - array ( - 0 => 'phpunit\\util\\throwabletostringmapper', - ), - 2 => - array ( - 0 => 'phpunit\\util\\map', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Json.php' => - array ( - 0 => 'f09a0e4204721447998fcbc48411907d7359554e', - 1 => - array ( - 0 => 'phpunit\\util\\json', - ), - 2 => - array ( - 0 => 'phpunit\\util\\prettify', - 1 => 'phpunit\\util\\canonicalize', - 2 => 'phpunit\\util\\recursivesort', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Filesystem.php' => - array ( - 0 => '69ee8031504d0c6a4026b241cc139d75da125f6e', - 1 => - array ( - 0 => 'phpunit\\util\\filesystem', - ), - 2 => - array ( - 0 => 'phpunit\\util\\createdirectory', - 1 => 'phpunit\\util\\resolvestreamorfile', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Reflection.php' => - array ( - 0 => '47a8509ced7fb460e99c44acdeed19c5906f7f0a', - 1 => - array ( - 0 => 'phpunit\\util\\reflection', - ), - 2 => - array ( - 0 => 'phpunit\\util\\sourcelocationfor', - 1 => 'phpunit\\util\\publicmethodsdeclareddirectlyintestclass', - 2 => 'phpunit\\util\\methodsdeclareddirectlyintestclass', - 3 => 'phpunit\\util\\filterandsortmethods', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/PHP/DefaultJobRunner.php' => - array ( - 0 => 'e42fc65b7be79cd323869790a34e84d50faae438', - 1 => - array ( - 0 => 'phpunit\\util\\php\\defaultjobrunner', - ), - 2 => - array ( - 0 => 'phpunit\\util\\php\\run', - 1 => 'phpunit\\util\\php\\runprocess', - 2 => 'phpunit\\util\\php\\buildcommand', - 3 => 'phpunit\\util\\php\\settingstoparameters', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/PHP/Result.php' => - array ( - 0 => '96d819459e657e1e5fa1bdd7455996e0b3cd51f3', - 1 => - array ( - 0 => 'phpunit\\util\\php\\result', - ), - 2 => - array ( - 0 => 'phpunit\\util\\php\\__construct', - 1 => 'phpunit\\util\\php\\stdout', - 2 => 'phpunit\\util\\php\\stderr', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/PHP/JobRunnerRegistry.php' => - array ( - 0 => '22283b12bdc032fa494dfa83ed35890010d3aa67', - 1 => - array ( - 0 => 'phpunit\\util\\php\\jobrunnerregistry', - ), - 2 => - array ( - 0 => 'phpunit\\util\\php\\run', - 1 => 'phpunit\\util\\php\\set', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/PHP/JobRunner.php' => - array ( - 0 => 'd02afed30bfc3dcb5e64ce4382613d40d0b97a3e', - 1 => - array ( - 0 => 'phpunit\\util\\php\\jobrunner', - ), - 2 => - array ( - 0 => 'phpunit\\util\\php\\run', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/PHP/Job.php' => - array ( - 0 => '5fb8d2525206b2663bb72ec46e410c3818901040', - 1 => - array ( - 0 => 'phpunit\\util\\php\\job', - ), - 2 => - array ( - 0 => 'phpunit\\util\\php\\__construct', - 1 => 'phpunit\\util\\php\\code', - 2 => 'phpunit\\util\\php\\phpsettings', - 3 => 'phpunit\\util\\php\\hasenvironmentvariables', - 4 => 'phpunit\\util\\php\\environmentvariables', - 5 => 'phpunit\\util\\php\\hasarguments', - 6 => 'phpunit\\util\\php\\arguments', - 7 => 'phpunit\\util\\php\\hasinput', - 8 => 'phpunit\\util\\php\\input', - 9 => 'phpunit\\util\\php\\redirecterrors', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Xml/Loader.php' => - array ( - 0 => 'c95283aa3b237d6b0dd8d56e35edd7c81c2eb664', - 1 => - array ( - 0 => 'phpunit\\util\\xml\\loader', - ), - 2 => - array ( - 0 => 'phpunit\\util\\xml\\loadfile', - 1 => 'phpunit\\util\\xml\\load', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Xml/Xml.php' => - array ( - 0 => 'f3f1bb1527c3ac183ad4ceca66897ba256e3ce4b', - 1 => - array ( - 0 => 'phpunit\\util\\xml', - ), - 2 => - array ( - 0 => 'phpunit\\util\\preparestring', - 1 => 'phpunit\\util\\converttoutf8', - 2 => 'phpunit\\util\\isutf8', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Cloner.php' => - array ( - 0 => 'cd201f3975bafc0d4f017b77034e2ae2bd1b080a', - 1 => - array ( - 0 => 'phpunit\\util\\cloner', - ), - 2 => - array ( - 0 => 'phpunit\\util\\clone', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/VersionComparisonOperator.php' => - array ( - 0 => 'cdfacd33fbf63ea2644a142c14578b63f22ae069', - 1 => - array ( - 0 => 'phpunit\\util\\versioncomparisonoperator', - ), - 2 => - array ( - 0 => 'phpunit\\util\\__construct', - 1 => 'phpunit\\util\\asstring', - 2 => 'phpunit\\util\\ensureoperatorisvalid', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Test.php' => - array ( - 0 => '9389c4d65ed2ce61831a799a9d0059a9ffd5043a', - 1 => - array ( - 0 => 'phpunit\\util\\test', - ), - 2 => - array ( - 0 => 'phpunit\\util\\istestmethod', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Exporter.php' => - array ( - 0 => '2d9729e181a84d4b83f2710b231915c0cb52bf6e', - 1 => - array ( - 0 => 'phpunit\\util\\exporter', - ), - 2 => - array ( - 0 => 'phpunit\\util\\export', - 1 => 'phpunit\\util\\shortenedrecursiveexport', - 2 => 'phpunit\\util\\shortenedexport', - 3 => 'phpunit\\util\\exporter', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/GlobalState.php' => - array ( - 0 => '3d57d1e1661b8adebbf2e6aa222d2251b9d348ce', - 1 => - array ( - 0 => 'phpunit\\util\\globalstate', - ), - 2 => - array ( - 0 => 'phpunit\\util\\getincludedfilesasstring', - 1 => 'phpunit\\util\\processincludedfilesasstring', - 2 => 'phpunit\\util\\getinisettingsasstring', - 3 => 'phpunit\\util\\getconstantsasstring', - 4 => 'phpunit\\util\\getglobalsasstring', - 5 => 'phpunit\\util\\exportvariable', - 6 => 'phpunit\\util\\arrayonlycontainsscalars', - 7 => 'phpunit\\util\\isinisettingdeprecated', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Http/PhpDownloader.php' => - array ( - 0 => '2379a0af336bb499d80f1e3434f3dd457e0505be', - 1 => - array ( - 0 => 'phpunit\\util\\http\\phpdownloader', - ), - 2 => - array ( - 0 => 'phpunit\\util\\http\\download', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Http/Downloader.php' => - array ( - 0 => '7cc5681d06dbb05daf0ed205b2c013d62f03ba70', - 1 => - array ( - 0 => 'phpunit\\util\\http\\downloader', - ), - 2 => - array ( - 0 => 'phpunit\\util\\http\\download', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Color.php' => - array ( - 0 => 'b29b3e9689f449af386cd2100b55cf1304232a68', - 1 => - array ( - 0 => 'phpunit\\util\\color', - ), - 2 => - array ( - 0 => 'phpunit\\util\\colorize', - 1 => 'phpunit\\util\\colorizetextbox', - 2 => 'phpunit\\util\\colorizepath', - 3 => 'phpunit\\util\\dim', - 4 => 'phpunit\\util\\visualizewhitespace', - 5 => 'phpunit\\util\\optimizecolor', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Filter.php' => - array ( - 0 => '38938a3177d093207ef14d7ac74d34eef0437305', - 1 => - array ( - 0 => 'phpunit\\util\\filter', - ), - 2 => - array ( - 0 => 'phpunit\\util\\stacktracefromthrowableasstring', - 1 => 'phpunit\\util\\stacktraceasstring', - 2 => 'phpunit\\util\\shouldprintframe', - 3 => 'phpunit\\util\\fileisexcluded', - 4 => 'phpunit\\util\\frameexists', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Exception/InvalidVersionOperatorException.php' => - array ( - 0 => 'fb893c1da20c4c292284e2d8a0240fd8a2462741', - 1 => - array ( - 0 => 'phpunit\\util\\invalidversionoperatorexception', - ), - 2 => - array ( - 0 => 'phpunit\\util\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Exception/InvalidDirectoryException.php' => - array ( - 0 => '457f2a940fbb3b0026474fa957ef975529c6d380', - 1 => - array ( - 0 => 'phpunit\\util\\invaliddirectoryexception', - ), - 2 => - array ( - 0 => 'phpunit\\util\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Exception/XmlException.php' => - array ( - 0 => '9f86b83eba37dfe5d7f729415dd3f3fa2b077008', - 1 => - array ( - 0 => 'phpunit\\util\\xml\\xmlexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Exception/InvalidJsonException.php' => - array ( - 0 => '4eb6939c0ad62c0ac16f365a83d70fc5877ffa4e', - 1 => - array ( - 0 => 'phpunit\\util\\invalidjsonexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Exception/PhpProcessException.php' => - array ( - 0 => '4cac0bc83e62efc1ece2169f0281853045504932', - 1 => - array ( - 0 => 'phpunit\\util\\php\\phpprocessexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/Exception/Exception.php' => - array ( - 0 => 'd57f5a2eb2c1d9d24f96d21c4991ea6babe98a9c', - 1 => - array ( - 0 => 'phpunit\\util\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Util/ExcludeList.php' => - array ( - 0 => 'c98e07aa5803ee3c408f953ecdb4a8305ec68872', - 1 => - array ( - 0 => 'phpunit\\util\\excludelist', - ), - 2 => - array ( - 0 => 'phpunit\\util\\adddirectory', - 1 => 'phpunit\\util\\__construct', - 2 => 'phpunit\\util\\getexcludeddirectories', - 3 => 'phpunit\\util\\isexcluded', - 4 => 'phpunit\\util\\initialize', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestRunner/SeparateProcessTestRunner.php' => - array ( - 0 => '49e62ba64054b7065d7ba5abc7bbac09c93911fa', - 1 => - array ( - 0 => 'phpunit\\framework\\separateprocesstestrunner', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\run', - 1 => 'phpunit\\framework\\runtestjob', - 2 => 'phpunit\\framework\\processchildresult', - 3 => 'phpunit\\framework\\saveconfigurationforchildprocess', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestRunner/IsolatedTestRunner.php' => - array ( - 0 => '210571513d03f935c3d6e958c09df19d4044d985', - 1 => - array ( - 0 => 'phpunit\\framework\\isolatedtestrunner', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\run', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php' => - array ( - 0 => 'a5c7c677fca8faa338a0fd42ffbfd3347b90d4c5', - 1 => - array ( - 0 => 'phpunit\\framework\\testrunner', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - 1 => 'phpunit\\framework\\run', - 2 => 'phpunit\\framework\\hascoveragemetadata', - 3 => 'phpunit\\framework\\cantimelimitbeenforced', - 4 => 'phpunit\\framework\\shouldtimelimitbeenforced', - 5 => 'phpunit\\framework\\runtestwithtimeout', - 6 => 'phpunit\\framework\\shoulderrorhandlerbeused', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestRunner/IsolatedTestRunnerRegistry.php' => - array ( - 0 => 'ba1629890d03668bda6f782a2a05a73505c365c0', - 1 => - array ( - 0 => 'phpunit\\framework\\isolatedtestrunnerregistry', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\run', - 1 => 'phpunit\\framework\\set', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/ExecutionOrderDependency.php' => - array ( - 0 => '72d43716a69a38be8af6831c4703e9b2faa132f2', - 1 => - array ( - 0 => 'phpunit\\framework\\executionorderdependency', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\invalid', - 1 => 'phpunit\\framework\\forclass', - 2 => 'phpunit\\framework\\formethod', - 3 => 'phpunit\\framework\\filterinvalid', - 4 => 'phpunit\\framework\\mergeunique', - 5 => 'phpunit\\framework\\diff', - 6 => 'phpunit\\framework\\__construct', - 7 => 'phpunit\\framework\\__tostring', - 8 => 'phpunit\\framework\\isvalid', - 9 => 'phpunit\\framework\\shallowclone', - 10 => 'phpunit\\framework\\deepclone', - 11 => 'phpunit\\framework\\targetisclass', - 12 => 'phpunit\\framework\\gettarget', - 13 => 'phpunit\\framework\\gettargetclassname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestSize/Unknown.php' => - array ( - 0 => 'fe298d21968e2e18920db8828e05cd17efb95c36', - 1 => - array ( - 0 => 'phpunit\\framework\\testsize\\unknown', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\testsize\\isunknown', - 1 => 'phpunit\\framework\\testsize\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestSize/Medium.php' => - array ( - 0 => 'efd5773c66f23b051e64cedd9399eae42241f3be', - 1 => - array ( - 0 => 'phpunit\\framework\\testsize\\medium', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\testsize\\ismedium', - 1 => 'phpunit\\framework\\testsize\\isgreaterthan', - 2 => 'phpunit\\framework\\testsize\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestSize/Known.php' => - array ( - 0 => '7be3df5748e365fb8dc33859b3788983fc384a82', - 1 => - array ( - 0 => 'phpunit\\framework\\testsize\\known', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\testsize\\isknown', - 1 => 'phpunit\\framework\\testsize\\isgreaterthan', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestSize/Large.php' => - array ( - 0 => '543f59c4dae3c3b082e7fb889503e8257f1f2b14', - 1 => - array ( - 0 => 'phpunit\\framework\\testsize\\large', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\testsize\\islarge', - 1 => 'phpunit\\framework\\testsize\\isgreaterthan', - 2 => 'phpunit\\framework\\testsize\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestSize/TestSize.php' => - array ( - 0 => 'd004c46656b79e1dfa74cfa46616c6a72a837c8d', - 1 => - array ( - 0 => 'phpunit\\framework\\testsize\\testsize', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\testsize\\unknown', - 1 => 'phpunit\\framework\\testsize\\small', - 2 => 'phpunit\\framework\\testsize\\medium', - 3 => 'phpunit\\framework\\testsize\\large', - 4 => 'phpunit\\framework\\testsize\\isknown', - 5 => 'phpunit\\framework\\testsize\\isunknown', - 6 => 'phpunit\\framework\\testsize\\issmall', - 7 => 'phpunit\\framework\\testsize\\ismedium', - 8 => 'phpunit\\framework\\testsize\\islarge', - 9 => 'phpunit\\framework\\testsize\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestSize/Small.php' => - array ( - 0 => '47f05492fb0338067177277680057f768c263c2a', - 1 => - array ( - 0 => 'phpunit\\framework\\testsize\\small', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\testsize\\issmall', - 1 => 'phpunit\\framework\\testsize\\isgreaterthan', - 2 => 'phpunit\\framework\\testsize\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestSuiteIterator.php' => - array ( - 0 => '6f46b7056914cfbf9ec882b43cafbeccaf935cb7', - 1 => - array ( - 0 => 'phpunit\\framework\\testsuiteiterator', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - 1 => 'phpunit\\framework\\rewind', - 2 => 'phpunit\\framework\\valid', - 3 => 'phpunit\\framework\\key', - 4 => 'phpunit\\framework\\current', - 5 => 'phpunit\\framework\\next', - 6 => 'phpunit\\framework\\getchildren', - 7 => 'phpunit\\framework\\haschildren', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestSuite.php' => - array ( - 0 => 'cbb2a134bb889c01acb92c09521dafcf91e30efd', - 1 => - array ( - 0 => 'phpunit\\framework\\testsuite', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\empty', - 1 => 'phpunit\\framework\\fromclassreflector', - 2 => 'phpunit\\framework\\__construct', - 3 => 'phpunit\\framework\\addtest', - 4 => 'phpunit\\framework\\addtestsuite', - 5 => 'phpunit\\framework\\addtestfile', - 6 => 'phpunit\\framework\\addtestfiles', - 7 => 'phpunit\\framework\\count', - 8 => 'phpunit\\framework\\isempty', - 9 => 'phpunit\\framework\\name', - 10 => 'phpunit\\framework\\groups', - 11 => 'phpunit\\framework\\collect', - 12 => 'phpunit\\framework\\run', - 13 => 'phpunit\\framework\\tests', - 14 => 'phpunit\\framework\\settests', - 15 => 'phpunit\\framework\\marktestsuiteskipped', - 16 => 'phpunit\\framework\\getiterator', - 17 => 'phpunit\\framework\\injectfilter', - 18 => 'phpunit\\framework\\provides', - 19 => 'phpunit\\framework\\requires', - 20 => 'phpunit\\framework\\sortid', - 21 => 'phpunit\\framework\\isfortestclass', - 22 => 'phpunit\\framework\\addtestmethod', - 23 => 'phpunit\\framework\\clearcaches', - 24 => 'phpunit\\framework\\containsonlyvirtualgroups', - 25 => 'phpunit\\framework\\methoddoesnotexistorisdeclaredintestcase', - 26 => 'phpunit\\framework\\throwabletostring', - 27 => 'phpunit\\framework\\invokemethodsbeforefirsttest', - 28 => 'phpunit\\framework\\invokemethodsafterlasttest', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Warning.php' => - array ( - 0 => '6bf680399acc5376f72eda429fe67686847275e6', - 1 => - array ( - 0 => 'phpunit\\framework\\teststatus\\warning', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\teststatus\\iswarning', - 1 => 'phpunit\\framework\\teststatus\\asint', - 2 => 'phpunit\\framework\\teststatus\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Skipped.php' => - array ( - 0 => '174526f857203770c5b57c4414c3fb59630b9eeb', - 1 => - array ( - 0 => 'phpunit\\framework\\teststatus\\skipped', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\teststatus\\isskipped', - 1 => 'phpunit\\framework\\teststatus\\asint', - 2 => 'phpunit\\framework\\teststatus\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Risky.php' => - array ( - 0 => '1645f8054f13ffe953a96e38d15c4d34e40084fb', - 1 => - array ( - 0 => 'phpunit\\framework\\teststatus\\risky', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\teststatus\\isrisky', - 1 => 'phpunit\\framework\\teststatus\\asint', - 2 => 'phpunit\\framework\\teststatus\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Unknown.php' => - array ( - 0 => '913aa3c2811a44ba23ba4d6f34a228e68c2fa76d', - 1 => - array ( - 0 => 'phpunit\\framework\\teststatus\\unknown', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\teststatus\\isunknown', - 1 => 'phpunit\\framework\\teststatus\\asint', - 2 => 'phpunit\\framework\\teststatus\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Incomplete.php' => - array ( - 0 => '90ed87ff3591ebe2662dc404d0284ebef9a7f146', - 1 => - array ( - 0 => 'phpunit\\framework\\teststatus\\incomplete', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\teststatus\\isincomplete', - 1 => 'phpunit\\framework\\teststatus\\asint', - 2 => 'phpunit\\framework\\teststatus\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Error.php' => - array ( - 0 => '6401824700ef2a6a0f80c4128f1fdd613847017e', - 1 => - array ( - 0 => 'phpunit\\framework\\teststatus\\error', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\teststatus\\iserror', - 1 => 'phpunit\\framework\\teststatus\\asint', - 2 => 'phpunit\\framework\\teststatus\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Known.php' => - array ( - 0 => '49dfba6b576d5b324ae187335c45e1cd6b9156a4', - 1 => - array ( - 0 => 'phpunit\\framework\\teststatus\\known', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\teststatus\\isknown', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Success.php' => - array ( - 0 => 'db298d4606ad2b86f9186f18dba624a77638ef3f', - 1 => - array ( - 0 => 'phpunit\\framework\\teststatus\\success', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\teststatus\\issuccess', - 1 => 'phpunit\\framework\\teststatus\\asint', - 2 => 'phpunit\\framework\\teststatus\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Failure.php' => - array ( - 0 => 'f01b911894041a021883fc5d2457bbd5357ec2b5', - 1 => - array ( - 0 => 'phpunit\\framework\\teststatus\\failure', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\teststatus\\isfailure', - 1 => 'phpunit\\framework\\teststatus\\asint', - 2 => 'phpunit\\framework\\teststatus\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Deprecation.php' => - array ( - 0 => 'acb44c343f71264a13cf889f0ba36efbadfb128d', - 1 => - array ( - 0 => 'phpunit\\framework\\teststatus\\deprecation', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\teststatus\\isdeprecation', - 1 => 'phpunit\\framework\\teststatus\\asint', - 2 => 'phpunit\\framework\\teststatus\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/Notice.php' => - array ( - 0 => '04b445e620f1cbdb0271900746733c9ec5d97d10', - 1 => - array ( - 0 => 'phpunit\\framework\\teststatus\\notice', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\teststatus\\isnotice', - 1 => 'phpunit\\framework\\teststatus\\asint', - 2 => 'phpunit\\framework\\teststatus\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestStatus/TestStatus.php' => - array ( - 0 => '6ba38f1db241977910f4416c94fac0cc017c04b3', - 1 => - array ( - 0 => 'phpunit\\framework\\teststatus\\teststatus', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\teststatus\\from', - 1 => 'phpunit\\framework\\teststatus\\unknown', - 2 => 'phpunit\\framework\\teststatus\\success', - 3 => 'phpunit\\framework\\teststatus\\skipped', - 4 => 'phpunit\\framework\\teststatus\\incomplete', - 5 => 'phpunit\\framework\\teststatus\\notice', - 6 => 'phpunit\\framework\\teststatus\\deprecation', - 7 => 'phpunit\\framework\\teststatus\\failure', - 8 => 'phpunit\\framework\\teststatus\\error', - 9 => 'phpunit\\framework\\teststatus\\warning', - 10 => 'phpunit\\framework\\teststatus\\risky', - 11 => 'phpunit\\framework\\teststatus\\__construct', - 12 => 'phpunit\\framework\\teststatus\\isknown', - 13 => 'phpunit\\framework\\teststatus\\isunknown', - 14 => 'phpunit\\framework\\teststatus\\issuccess', - 15 => 'phpunit\\framework\\teststatus\\isskipped', - 16 => 'phpunit\\framework\\teststatus\\isincomplete', - 17 => 'phpunit\\framework\\teststatus\\isnotice', - 18 => 'phpunit\\framework\\teststatus\\isdeprecation', - 19 => 'phpunit\\framework\\teststatus\\isfailure', - 20 => 'phpunit\\framework\\teststatus\\iserror', - 21 => 'phpunit\\framework\\teststatus\\iswarning', - 22 => 'phpunit\\framework\\teststatus\\isrisky', - 23 => 'phpunit\\framework\\teststatus\\message', - 24 => 'phpunit\\framework\\teststatus\\ismoreimportantthan', - 25 => 'phpunit\\framework\\teststatus\\asint', - 26 => 'phpunit\\framework\\teststatus\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/SelfDescribing.php' => - array ( - 0 => 'e0686366fd9c68a94bac36132eac1a68007926c0', - 1 => - array ( - 0 => 'phpunit\\framework\\selfdescribing', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\tostring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Reorderable.php' => - array ( - 0 => '2ca207fdf184854a41cafaf07aaf0a68722c418e', - 1 => - array ( - 0 => 'phpunit\\framework\\reorderable', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\sortid', - 1 => 'phpunit\\framework\\provides', - 2 => 'phpunit\\framework\\requires', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestBuilder.php' => - array ( - 0 => '49d66a6c64244cc55ca201dedf9e04f565433002', - 1 => - array ( - 0 => 'phpunit\\framework\\testbuilder', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\build', - 1 => 'phpunit\\framework\\builddataprovidertestsuite', - 2 => 'phpunit\\framework\\configuretestcase', - 3 => 'phpunit\\framework\\backupsettings', - 4 => 'phpunit\\framework\\shouldglobalstatebepreserved', - 5 => 'phpunit\\framework\\shouldtestmethodberuninseparateprocess', - 6 => 'phpunit\\framework\\shouldalltestmethodsoftestclassberuninsingleseparateprocess', - 7 => 'phpunit\\framework\\requirementssatisfied', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Assert/Functions.php' => - array ( - 0 => '0582fcebc0e1a19cbee86884f4f9ebc1c8266633', - 1 => - array ( - ), - 2 => - array ( - 0 => 'phpunit\\framework\\assertarrayisequaltoarrayonlyconsideringlistofkeys', - 1 => 'phpunit\\framework\\assertarrayisequaltoarrayignoringlistofkeys', - 2 => 'phpunit\\framework\\assertarrayisidenticaltoarrayonlyconsideringlistofkeys', - 3 => 'phpunit\\framework\\assertarrayisidenticaltoarrayignoringlistofkeys', - 4 => 'phpunit\\framework\\assertarrayhaskey', - 5 => 'phpunit\\framework\\assertarraynothaskey', - 6 => 'phpunit\\framework\\assertislist', - 7 => 'phpunit\\framework\\assertcontains', - 8 => 'phpunit\\framework\\assertcontainsequals', - 9 => 'phpunit\\framework\\assertnotcontains', - 10 => 'phpunit\\framework\\assertnotcontainsequals', - 11 => 'phpunit\\framework\\assertcontainsonly', - 12 => 'phpunit\\framework\\assertcontainsonlyarray', - 13 => 'phpunit\\framework\\assertcontainsonlybool', - 14 => 'phpunit\\framework\\assertcontainsonlycallable', - 15 => 'phpunit\\framework\\assertcontainsonlyfloat', - 16 => 'phpunit\\framework\\assertcontainsonlyint', - 17 => 'phpunit\\framework\\assertcontainsonlyiterable', - 18 => 'phpunit\\framework\\assertcontainsonlynull', - 19 => 'phpunit\\framework\\assertcontainsonlynumeric', - 20 => 'phpunit\\framework\\assertcontainsonlyobject', - 21 => 'phpunit\\framework\\assertcontainsonlyresource', - 22 => 'phpunit\\framework\\assertcontainsonlyclosedresource', - 23 => 'phpunit\\framework\\assertcontainsonlyscalar', - 24 => 'phpunit\\framework\\assertcontainsonlystring', - 25 => 'phpunit\\framework\\assertcontainsonlyinstancesof', - 26 => 'phpunit\\framework\\assertnotcontainsonly', - 27 => 'phpunit\\framework\\assertcontainsnotonlyarray', - 28 => 'phpunit\\framework\\assertcontainsnotonlybool', - 29 => 'phpunit\\framework\\assertcontainsnotonlycallable', - 30 => 'phpunit\\framework\\assertcontainsnotonlyfloat', - 31 => 'phpunit\\framework\\assertcontainsnotonlyint', - 32 => 'phpunit\\framework\\assertcontainsnotonlyiterable', - 33 => 'phpunit\\framework\\assertcontainsnotonlynull', - 34 => 'phpunit\\framework\\assertcontainsnotonlynumeric', - 35 => 'phpunit\\framework\\assertcontainsnotonlyobject', - 36 => 'phpunit\\framework\\assertcontainsnotonlyresource', - 37 => 'phpunit\\framework\\assertcontainsnotonlyclosedresource', - 38 => 'phpunit\\framework\\assertcontainsnotonlyscalar', - 39 => 'phpunit\\framework\\assertcontainsnotonlystring', - 40 => 'phpunit\\framework\\assertcontainsnotonlyinstancesof', - 41 => 'phpunit\\framework\\assertcount', - 42 => 'phpunit\\framework\\assertnotcount', - 43 => 'phpunit\\framework\\assertequals', - 44 => 'phpunit\\framework\\assertequalscanonicalizing', - 45 => 'phpunit\\framework\\assertequalsignoringcase', - 46 => 'phpunit\\framework\\assertequalswithdelta', - 47 => 'phpunit\\framework\\assertnotequals', - 48 => 'phpunit\\framework\\assertnotequalscanonicalizing', - 49 => 'phpunit\\framework\\assertnotequalsignoringcase', - 50 => 'phpunit\\framework\\assertnotequalswithdelta', - 51 => 'phpunit\\framework\\assertobjectequals', - 52 => 'phpunit\\framework\\assertobjectnotequals', - 53 => 'phpunit\\framework\\assertempty', - 54 => 'phpunit\\framework\\assertnotempty', - 55 => 'phpunit\\framework\\assertgreaterthan', - 56 => 'phpunit\\framework\\assertgreaterthanorequal', - 57 => 'phpunit\\framework\\assertlessthan', - 58 => 'phpunit\\framework\\assertlessthanorequal', - 59 => 'phpunit\\framework\\assertfileequals', - 60 => 'phpunit\\framework\\assertfileequalscanonicalizing', - 61 => 'phpunit\\framework\\assertfileequalsignoringcase', - 62 => 'phpunit\\framework\\assertfilenotequals', - 63 => 'phpunit\\framework\\assertfilenotequalscanonicalizing', - 64 => 'phpunit\\framework\\assertfilenotequalsignoringcase', - 65 => 'phpunit\\framework\\assertstringequalsfile', - 66 => 'phpunit\\framework\\assertstringequalsfilecanonicalizing', - 67 => 'phpunit\\framework\\assertstringequalsfileignoringcase', - 68 => 'phpunit\\framework\\assertstringnotequalsfile', - 69 => 'phpunit\\framework\\assertstringnotequalsfilecanonicalizing', - 70 => 'phpunit\\framework\\assertstringnotequalsfileignoringcase', - 71 => 'phpunit\\framework\\assertisreadable', - 72 => 'phpunit\\framework\\assertisnotreadable', - 73 => 'phpunit\\framework\\assertiswritable', - 74 => 'phpunit\\framework\\assertisnotwritable', - 75 => 'phpunit\\framework\\assertdirectoryexists', - 76 => 'phpunit\\framework\\assertdirectorydoesnotexist', - 77 => 'phpunit\\framework\\assertdirectoryisreadable', - 78 => 'phpunit\\framework\\assertdirectoryisnotreadable', - 79 => 'phpunit\\framework\\assertdirectoryiswritable', - 80 => 'phpunit\\framework\\assertdirectoryisnotwritable', - 81 => 'phpunit\\framework\\assertfileexists', - 82 => 'phpunit\\framework\\assertfiledoesnotexist', - 83 => 'phpunit\\framework\\assertfileisreadable', - 84 => 'phpunit\\framework\\assertfileisnotreadable', - 85 => 'phpunit\\framework\\assertfileiswritable', - 86 => 'phpunit\\framework\\assertfileisnotwritable', - 87 => 'phpunit\\framework\\asserttrue', - 88 => 'phpunit\\framework\\assertnottrue', - 89 => 'phpunit\\framework\\assertfalse', - 90 => 'phpunit\\framework\\assertnotfalse', - 91 => 'phpunit\\framework\\assertnull', - 92 => 'phpunit\\framework\\assertnotnull', - 93 => 'phpunit\\framework\\assertfinite', - 94 => 'phpunit\\framework\\assertinfinite', - 95 => 'phpunit\\framework\\assertnan', - 96 => 'phpunit\\framework\\assertobjecthasproperty', - 97 => 'phpunit\\framework\\assertobjectnothasproperty', - 98 => 'phpunit\\framework\\assertsame', - 99 => 'phpunit\\framework\\assertnotsame', - 100 => 'phpunit\\framework\\assertinstanceof', - 101 => 'phpunit\\framework\\assertnotinstanceof', - 102 => 'phpunit\\framework\\assertisarray', - 103 => 'phpunit\\framework\\assertisbool', - 104 => 'phpunit\\framework\\assertisfloat', - 105 => 'phpunit\\framework\\assertisint', - 106 => 'phpunit\\framework\\assertisnumeric', - 107 => 'phpunit\\framework\\assertisobject', - 108 => 'phpunit\\framework\\assertisresource', - 109 => 'phpunit\\framework\\assertisclosedresource', - 110 => 'phpunit\\framework\\assertisstring', - 111 => 'phpunit\\framework\\assertisscalar', - 112 => 'phpunit\\framework\\assertiscallable', - 113 => 'phpunit\\framework\\assertisiterable', - 114 => 'phpunit\\framework\\assertisnotarray', - 115 => 'phpunit\\framework\\assertisnotbool', - 116 => 'phpunit\\framework\\assertisnotfloat', - 117 => 'phpunit\\framework\\assertisnotint', - 118 => 'phpunit\\framework\\assertisnotnumeric', - 119 => 'phpunit\\framework\\assertisnotobject', - 120 => 'phpunit\\framework\\assertisnotresource', - 121 => 'phpunit\\framework\\assertisnotclosedresource', - 122 => 'phpunit\\framework\\assertisnotstring', - 123 => 'phpunit\\framework\\assertisnotscalar', - 124 => 'phpunit\\framework\\assertisnotcallable', - 125 => 'phpunit\\framework\\assertisnotiterable', - 126 => 'phpunit\\framework\\assertmatchesregularexpression', - 127 => 'phpunit\\framework\\assertdoesnotmatchregularexpression', - 128 => 'phpunit\\framework\\assertsamesize', - 129 => 'phpunit\\framework\\assertnotsamesize', - 130 => 'phpunit\\framework\\assertstringcontainsstringignoringlineendings', - 131 => 'phpunit\\framework\\assertstringequalsstringignoringlineendings', - 132 => 'phpunit\\framework\\assertfilematchesformat', - 133 => 'phpunit\\framework\\assertfilematchesformatfile', - 134 => 'phpunit\\framework\\assertstringmatchesformat', - 135 => 'phpunit\\framework\\assertstringnotmatchesformat', - 136 => 'phpunit\\framework\\assertstringmatchesformatfile', - 137 => 'phpunit\\framework\\assertstringnotmatchesformatfile', - 138 => 'phpunit\\framework\\assertstringstartswith', - 139 => 'phpunit\\framework\\assertstringstartsnotwith', - 140 => 'phpunit\\framework\\assertstringcontainsstring', - 141 => 'phpunit\\framework\\assertstringcontainsstringignoringcase', - 142 => 'phpunit\\framework\\assertstringnotcontainsstring', - 143 => 'phpunit\\framework\\assertstringnotcontainsstringignoringcase', - 144 => 'phpunit\\framework\\assertstringendswith', - 145 => 'phpunit\\framework\\assertstringendsnotwith', - 146 => 'phpunit\\framework\\assertxmlfileequalsxmlfile', - 147 => 'phpunit\\framework\\assertxmlfilenotequalsxmlfile', - 148 => 'phpunit\\framework\\assertxmlstringequalsxmlfile', - 149 => 'phpunit\\framework\\assertxmlstringnotequalsxmlfile', - 150 => 'phpunit\\framework\\assertxmlstringequalsxmlstring', - 151 => 'phpunit\\framework\\assertxmlstringnotequalsxmlstring', - 152 => 'phpunit\\framework\\assertthat', - 153 => 'phpunit\\framework\\assertjson', - 154 => 'phpunit\\framework\\assertjsonstringequalsjsonstring', - 155 => 'phpunit\\framework\\assertjsonstringnotequalsjsonstring', - 156 => 'phpunit\\framework\\assertjsonstringequalsjsonfile', - 157 => 'phpunit\\framework\\assertjsonstringnotequalsjsonfile', - 158 => 'phpunit\\framework\\assertjsonfileequalsjsonfile', - 159 => 'phpunit\\framework\\assertjsonfilenotequalsjsonfile', - 160 => 'phpunit\\framework\\logicaland', - 161 => 'phpunit\\framework\\logicalor', - 162 => 'phpunit\\framework\\logicalnot', - 163 => 'phpunit\\framework\\logicalxor', - 164 => 'phpunit\\framework\\anything', - 165 => 'phpunit\\framework\\istrue', - 166 => 'phpunit\\framework\\isfalse', - 167 => 'phpunit\\framework\\isjson', - 168 => 'phpunit\\framework\\isnull', - 169 => 'phpunit\\framework\\isfinite', - 170 => 'phpunit\\framework\\isinfinite', - 171 => 'phpunit\\framework\\isnan', - 172 => 'phpunit\\framework\\containsequal', - 173 => 'phpunit\\framework\\containsidentical', - 174 => 'phpunit\\framework\\containsonly', - 175 => 'phpunit\\framework\\containsonlyarray', - 176 => 'phpunit\\framework\\containsonlybool', - 177 => 'phpunit\\framework\\containsonlycallable', - 178 => 'phpunit\\framework\\containsonlyfloat', - 179 => 'phpunit\\framework\\containsonlyint', - 180 => 'phpunit\\framework\\containsonlyiterable', - 181 => 'phpunit\\framework\\containsonlynull', - 182 => 'phpunit\\framework\\containsonlynumeric', - 183 => 'phpunit\\framework\\containsonlyobject', - 184 => 'phpunit\\framework\\containsonlyresource', - 185 => 'phpunit\\framework\\containsonlyclosedresource', - 186 => 'phpunit\\framework\\containsonlyscalar', - 187 => 'phpunit\\framework\\containsonlystring', - 188 => 'phpunit\\framework\\containsonlyinstancesof', - 189 => 'phpunit\\framework\\arrayhaskey', - 190 => 'phpunit\\framework\\islist', - 191 => 'phpunit\\framework\\equalto', - 192 => 'phpunit\\framework\\equaltocanonicalizing', - 193 => 'phpunit\\framework\\equaltoignoringcase', - 194 => 'phpunit\\framework\\equaltowithdelta', - 195 => 'phpunit\\framework\\isempty', - 196 => 'phpunit\\framework\\iswritable', - 197 => 'phpunit\\framework\\isreadable', - 198 => 'phpunit\\framework\\directoryexists', - 199 => 'phpunit\\framework\\fileexists', - 200 => 'phpunit\\framework\\greaterthan', - 201 => 'phpunit\\framework\\greaterthanorequal', - 202 => 'phpunit\\framework\\identicalto', - 203 => 'phpunit\\framework\\isinstanceof', - 204 => 'phpunit\\framework\\isarray', - 205 => 'phpunit\\framework\\isbool', - 206 => 'phpunit\\framework\\iscallable', - 207 => 'phpunit\\framework\\isfloat', - 208 => 'phpunit\\framework\\isint', - 209 => 'phpunit\\framework\\isiterable', - 210 => 'phpunit\\framework\\isnumeric', - 211 => 'phpunit\\framework\\isobject', - 212 => 'phpunit\\framework\\isresource', - 213 => 'phpunit\\framework\\isclosedresource', - 214 => 'phpunit\\framework\\isscalar', - 215 => 'phpunit\\framework\\isstring', - 216 => 'phpunit\\framework\\istype', - 217 => 'phpunit\\framework\\lessthan', - 218 => 'phpunit\\framework\\lessthanorequal', - 219 => 'phpunit\\framework\\matchesregularexpression', - 220 => 'phpunit\\framework\\matches', - 221 => 'phpunit\\framework\\stringstartswith', - 222 => 'phpunit\\framework\\stringcontains', - 223 => 'phpunit\\framework\\stringendswith', - 224 => 'phpunit\\framework\\stringequalsstringignoringlineendings', - 225 => 'phpunit\\framework\\countof', - 226 => 'phpunit\\framework\\objectequals', - 227 => 'phpunit\\framework\\callback', - 228 => 'phpunit\\framework\\any', - 229 => 'phpunit\\framework\\never', - 230 => 'phpunit\\framework\\atleast', - 231 => 'phpunit\\framework\\atleastonce', - 232 => 'phpunit\\framework\\once', - 233 => 'phpunit\\framework\\exactly', - 234 => 'phpunit\\framework\\atmost', - 235 => 'phpunit\\framework\\returnvalue', - 236 => 'phpunit\\framework\\returnvaluemap', - 237 => 'phpunit\\framework\\returnargument', - 238 => 'phpunit\\framework\\returncallback', - 239 => 'phpunit\\framework\\returnself', - 240 => 'phpunit\\framework\\throwexception', - 241 => 'phpunit\\framework\\onconsecutivecalls', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/DataProviderTestSuite.php' => - array ( - 0 => '6ecff0c5667e5857f224e9378bbb661600d2664f', - 1 => - array ( - 0 => 'phpunit\\framework\\dataprovidertestsuite', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\setdependencies', - 1 => 'phpunit\\framework\\provides', - 2 => 'phpunit\\framework\\requires', - 3 => 'phpunit\\framework\\size', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Assert.php' => - array ( - 0 => '9cd0fb3be64581ea89bdfdf989e233d7b6812353', - 1 => - array ( - 0 => 'phpunit\\framework\\assert', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\assertarrayisequaltoarrayonlyconsideringlistofkeys', - 1 => 'phpunit\\framework\\assertarrayisequaltoarrayignoringlistofkeys', - 2 => 'phpunit\\framework\\assertarrayisidenticaltoarrayonlyconsideringlistofkeys', - 3 => 'phpunit\\framework\\assertarrayisidenticaltoarrayignoringlistofkeys', - 4 => 'phpunit\\framework\\assertarrayhaskey', - 5 => 'phpunit\\framework\\assertarraynothaskey', - 6 => 'phpunit\\framework\\assertislist', - 7 => 'phpunit\\framework\\assertcontains', - 8 => 'phpunit\\framework\\assertcontainsequals', - 9 => 'phpunit\\framework\\assertnotcontains', - 10 => 'phpunit\\framework\\assertnotcontainsequals', - 11 => 'phpunit\\framework\\assertcontainsonly', - 12 => 'phpunit\\framework\\assertcontainsonlyarray', - 13 => 'phpunit\\framework\\assertcontainsonlybool', - 14 => 'phpunit\\framework\\assertcontainsonlycallable', - 15 => 'phpunit\\framework\\assertcontainsonlyfloat', - 16 => 'phpunit\\framework\\assertcontainsonlyint', - 17 => 'phpunit\\framework\\assertcontainsonlyiterable', - 18 => 'phpunit\\framework\\assertcontainsonlynull', - 19 => 'phpunit\\framework\\assertcontainsonlynumeric', - 20 => 'phpunit\\framework\\assertcontainsonlyobject', - 21 => 'phpunit\\framework\\assertcontainsonlyresource', - 22 => 'phpunit\\framework\\assertcontainsonlyclosedresource', - 23 => 'phpunit\\framework\\assertcontainsonlyscalar', - 24 => 'phpunit\\framework\\assertcontainsonlystring', - 25 => 'phpunit\\framework\\assertcontainsonlyinstancesof', - 26 => 'phpunit\\framework\\assertnotcontainsonly', - 27 => 'phpunit\\framework\\assertcontainsnotonlyarray', - 28 => 'phpunit\\framework\\assertcontainsnotonlybool', - 29 => 'phpunit\\framework\\assertcontainsnotonlycallable', - 30 => 'phpunit\\framework\\assertcontainsnotonlyfloat', - 31 => 'phpunit\\framework\\assertcontainsnotonlyint', - 32 => 'phpunit\\framework\\assertcontainsnotonlyiterable', - 33 => 'phpunit\\framework\\assertcontainsnotonlynull', - 34 => 'phpunit\\framework\\assertcontainsnotonlynumeric', - 35 => 'phpunit\\framework\\assertcontainsnotonlyobject', - 36 => 'phpunit\\framework\\assertcontainsnotonlyresource', - 37 => 'phpunit\\framework\\assertcontainsnotonlyclosedresource', - 38 => 'phpunit\\framework\\assertcontainsnotonlyscalar', - 39 => 'phpunit\\framework\\assertcontainsnotonlystring', - 40 => 'phpunit\\framework\\assertcontainsnotonlyinstancesof', - 41 => 'phpunit\\framework\\assertcount', - 42 => 'phpunit\\framework\\assertnotcount', - 43 => 'phpunit\\framework\\assertequals', - 44 => 'phpunit\\framework\\assertequalscanonicalizing', - 45 => 'phpunit\\framework\\assertequalsignoringcase', - 46 => 'phpunit\\framework\\assertequalswithdelta', - 47 => 'phpunit\\framework\\assertnotequals', - 48 => 'phpunit\\framework\\assertnotequalscanonicalizing', - 49 => 'phpunit\\framework\\assertnotequalsignoringcase', - 50 => 'phpunit\\framework\\assertnotequalswithdelta', - 51 => 'phpunit\\framework\\assertobjectequals', - 52 => 'phpunit\\framework\\assertobjectnotequals', - 53 => 'phpunit\\framework\\assertempty', - 54 => 'phpunit\\framework\\assertnotempty', - 55 => 'phpunit\\framework\\assertgreaterthan', - 56 => 'phpunit\\framework\\assertgreaterthanorequal', - 57 => 'phpunit\\framework\\assertlessthan', - 58 => 'phpunit\\framework\\assertlessthanorequal', - 59 => 'phpunit\\framework\\assertfileequals', - 60 => 'phpunit\\framework\\assertfileequalscanonicalizing', - 61 => 'phpunit\\framework\\assertfileequalsignoringcase', - 62 => 'phpunit\\framework\\assertfilenotequals', - 63 => 'phpunit\\framework\\assertfilenotequalscanonicalizing', - 64 => 'phpunit\\framework\\assertfilenotequalsignoringcase', - 65 => 'phpunit\\framework\\assertstringequalsfile', - 66 => 'phpunit\\framework\\assertstringequalsfilecanonicalizing', - 67 => 'phpunit\\framework\\assertstringequalsfileignoringcase', - 68 => 'phpunit\\framework\\assertstringnotequalsfile', - 69 => 'phpunit\\framework\\assertstringnotequalsfilecanonicalizing', - 70 => 'phpunit\\framework\\assertstringnotequalsfileignoringcase', - 71 => 'phpunit\\framework\\assertisreadable', - 72 => 'phpunit\\framework\\assertisnotreadable', - 73 => 'phpunit\\framework\\assertiswritable', - 74 => 'phpunit\\framework\\assertisnotwritable', - 75 => 'phpunit\\framework\\assertdirectoryexists', - 76 => 'phpunit\\framework\\assertdirectorydoesnotexist', - 77 => 'phpunit\\framework\\assertdirectoryisreadable', - 78 => 'phpunit\\framework\\assertdirectoryisnotreadable', - 79 => 'phpunit\\framework\\assertdirectoryiswritable', - 80 => 'phpunit\\framework\\assertdirectoryisnotwritable', - 81 => 'phpunit\\framework\\assertfileexists', - 82 => 'phpunit\\framework\\assertfiledoesnotexist', - 83 => 'phpunit\\framework\\assertfileisreadable', - 84 => 'phpunit\\framework\\assertfileisnotreadable', - 85 => 'phpunit\\framework\\assertfileiswritable', - 86 => 'phpunit\\framework\\assertfileisnotwritable', - 87 => 'phpunit\\framework\\asserttrue', - 88 => 'phpunit\\framework\\assertnottrue', - 89 => 'phpunit\\framework\\assertfalse', - 90 => 'phpunit\\framework\\assertnotfalse', - 91 => 'phpunit\\framework\\assertnull', - 92 => 'phpunit\\framework\\assertnotnull', - 93 => 'phpunit\\framework\\assertfinite', - 94 => 'phpunit\\framework\\assertinfinite', - 95 => 'phpunit\\framework\\assertnan', - 96 => 'phpunit\\framework\\assertobjecthasproperty', - 97 => 'phpunit\\framework\\assertobjectnothasproperty', - 98 => 'phpunit\\framework\\assertsame', - 99 => 'phpunit\\framework\\assertnotsame', - 100 => 'phpunit\\framework\\assertinstanceof', - 101 => 'phpunit\\framework\\assertnotinstanceof', - 102 => 'phpunit\\framework\\assertisarray', - 103 => 'phpunit\\framework\\assertisbool', - 104 => 'phpunit\\framework\\assertisfloat', - 105 => 'phpunit\\framework\\assertisint', - 106 => 'phpunit\\framework\\assertisnumeric', - 107 => 'phpunit\\framework\\assertisobject', - 108 => 'phpunit\\framework\\assertisresource', - 109 => 'phpunit\\framework\\assertisclosedresource', - 110 => 'phpunit\\framework\\assertisstring', - 111 => 'phpunit\\framework\\assertisscalar', - 112 => 'phpunit\\framework\\assertiscallable', - 113 => 'phpunit\\framework\\assertisiterable', - 114 => 'phpunit\\framework\\assertisnotarray', - 115 => 'phpunit\\framework\\assertisnotbool', - 116 => 'phpunit\\framework\\assertisnotfloat', - 117 => 'phpunit\\framework\\assertisnotint', - 118 => 'phpunit\\framework\\assertisnotnumeric', - 119 => 'phpunit\\framework\\assertisnotobject', - 120 => 'phpunit\\framework\\assertisnotresource', - 121 => 'phpunit\\framework\\assertisnotclosedresource', - 122 => 'phpunit\\framework\\assertisnotstring', - 123 => 'phpunit\\framework\\assertisnotscalar', - 124 => 'phpunit\\framework\\assertisnotcallable', - 125 => 'phpunit\\framework\\assertisnotiterable', - 126 => 'phpunit\\framework\\assertmatchesregularexpression', - 127 => 'phpunit\\framework\\assertdoesnotmatchregularexpression', - 128 => 'phpunit\\framework\\assertsamesize', - 129 => 'phpunit\\framework\\assertnotsamesize', - 130 => 'phpunit\\framework\\assertstringcontainsstringignoringlineendings', - 131 => 'phpunit\\framework\\assertstringequalsstringignoringlineendings', - 132 => 'phpunit\\framework\\assertfilematchesformat', - 133 => 'phpunit\\framework\\assertfilematchesformatfile', - 134 => 'phpunit\\framework\\assertstringmatchesformat', - 135 => 'phpunit\\framework\\assertstringnotmatchesformat', - 136 => 'phpunit\\framework\\assertstringmatchesformatfile', - 137 => 'phpunit\\framework\\assertstringnotmatchesformatfile', - 138 => 'phpunit\\framework\\assertstringstartswith', - 139 => 'phpunit\\framework\\assertstringstartsnotwith', - 140 => 'phpunit\\framework\\assertstringcontainsstring', - 141 => 'phpunit\\framework\\assertstringcontainsstringignoringcase', - 142 => 'phpunit\\framework\\assertstringnotcontainsstring', - 143 => 'phpunit\\framework\\assertstringnotcontainsstringignoringcase', - 144 => 'phpunit\\framework\\assertstringendswith', - 145 => 'phpunit\\framework\\assertstringendsnotwith', - 146 => 'phpunit\\framework\\assertxmlfileequalsxmlfile', - 147 => 'phpunit\\framework\\assertxmlfilenotequalsxmlfile', - 148 => 'phpunit\\framework\\assertxmlstringequalsxmlfile', - 149 => 'phpunit\\framework\\assertxmlstringnotequalsxmlfile', - 150 => 'phpunit\\framework\\assertxmlstringequalsxmlstring', - 151 => 'phpunit\\framework\\assertxmlstringnotequalsxmlstring', - 152 => 'phpunit\\framework\\assertthat', - 153 => 'phpunit\\framework\\assertjson', - 154 => 'phpunit\\framework\\assertjsonstringequalsjsonstring', - 155 => 'phpunit\\framework\\assertjsonstringnotequalsjsonstring', - 156 => 'phpunit\\framework\\assertjsonstringequalsjsonfile', - 157 => 'phpunit\\framework\\assertjsonstringnotequalsjsonfile', - 158 => 'phpunit\\framework\\assertjsonfileequalsjsonfile', - 159 => 'phpunit\\framework\\assertjsonfilenotequalsjsonfile', - 160 => 'phpunit\\framework\\logicaland', - 161 => 'phpunit\\framework\\logicalor', - 162 => 'phpunit\\framework\\logicalnot', - 163 => 'phpunit\\framework\\logicalxor', - 164 => 'phpunit\\framework\\anything', - 165 => 'phpunit\\framework\\istrue', - 166 => 'phpunit\\framework\\callback', - 167 => 'phpunit\\framework\\isfalse', - 168 => 'phpunit\\framework\\isjson', - 169 => 'phpunit\\framework\\isnull', - 170 => 'phpunit\\framework\\isfinite', - 171 => 'phpunit\\framework\\isinfinite', - 172 => 'phpunit\\framework\\isnan', - 173 => 'phpunit\\framework\\containsequal', - 174 => 'phpunit\\framework\\containsidentical', - 175 => 'phpunit\\framework\\containsonly', - 176 => 'phpunit\\framework\\containsonlyarray', - 177 => 'phpunit\\framework\\containsonlybool', - 178 => 'phpunit\\framework\\containsonlycallable', - 179 => 'phpunit\\framework\\containsonlyfloat', - 180 => 'phpunit\\framework\\containsonlyint', - 181 => 'phpunit\\framework\\containsonlyiterable', - 182 => 'phpunit\\framework\\containsonlynull', - 183 => 'phpunit\\framework\\containsonlynumeric', - 184 => 'phpunit\\framework\\containsonlyobject', - 185 => 'phpunit\\framework\\containsonlyresource', - 186 => 'phpunit\\framework\\containsonlyclosedresource', - 187 => 'phpunit\\framework\\containsonlyscalar', - 188 => 'phpunit\\framework\\containsonlystring', - 189 => 'phpunit\\framework\\containsonlyinstancesof', - 190 => 'phpunit\\framework\\arrayhaskey', - 191 => 'phpunit\\framework\\islist', - 192 => 'phpunit\\framework\\equalto', - 193 => 'phpunit\\framework\\equaltocanonicalizing', - 194 => 'phpunit\\framework\\equaltoignoringcase', - 195 => 'phpunit\\framework\\equaltowithdelta', - 196 => 'phpunit\\framework\\isempty', - 197 => 'phpunit\\framework\\iswritable', - 198 => 'phpunit\\framework\\isreadable', - 199 => 'phpunit\\framework\\directoryexists', - 200 => 'phpunit\\framework\\fileexists', - 201 => 'phpunit\\framework\\greaterthan', - 202 => 'phpunit\\framework\\greaterthanorequal', - 203 => 'phpunit\\framework\\identicalto', - 204 => 'phpunit\\framework\\isinstanceof', - 205 => 'phpunit\\framework\\isarray', - 206 => 'phpunit\\framework\\isbool', - 207 => 'phpunit\\framework\\iscallable', - 208 => 'phpunit\\framework\\isfloat', - 209 => 'phpunit\\framework\\isint', - 210 => 'phpunit\\framework\\isiterable', - 211 => 'phpunit\\framework\\isnumeric', - 212 => 'phpunit\\framework\\isobject', - 213 => 'phpunit\\framework\\isresource', - 214 => 'phpunit\\framework\\isclosedresource', - 215 => 'phpunit\\framework\\isscalar', - 216 => 'phpunit\\framework\\isstring', - 217 => 'phpunit\\framework\\istype', - 218 => 'phpunit\\framework\\lessthan', - 219 => 'phpunit\\framework\\lessthanorequal', - 220 => 'phpunit\\framework\\matchesregularexpression', - 221 => 'phpunit\\framework\\matches', - 222 => 'phpunit\\framework\\stringstartswith', - 223 => 'phpunit\\framework\\stringcontains', - 224 => 'phpunit\\framework\\stringendswith', - 225 => 'phpunit\\framework\\stringequalsstringignoringlineendings', - 226 => 'phpunit\\framework\\countof', - 227 => 'phpunit\\framework\\objectequals', - 228 => 'phpunit\\framework\\fail', - 229 => 'phpunit\\framework\\marktestincomplete', - 230 => 'phpunit\\framework\\marktestskipped', - 231 => 'phpunit\\framework\\getcount', - 232 => 'phpunit\\framework\\resetcount', - 233 => 'phpunit\\framework\\isnativetype', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/Before.php' => - array ( - 0 => '5bc63d71d169ca0ab31b6ef3c3631ffdac610ec0', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\before', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\priority', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RunClassInSeparateProcess.php' => - array ( - 0 => '9d01bc6faa257f4eb751501b7c53b5fec0709579', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\runclassinseparateprocess', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/CoversTrait.php' => - array ( - 0 => 'e86aa3add681184865a4ff20b4dc98468617343f', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\coverstrait', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\traitname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DependsUsingDeepClone.php' => - array ( - 0 => '71ececefaf59a866b0c403fea66993bf4bec17f8', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\dependsusingdeepclone', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\methodname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresPhp.php' => - array ( - 0 => '46b0d8787b4731994b3788eefbe80028d4e1272d', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\requiresphp', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\versionrequirement', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresOperatingSystemFamily.php' => - array ( - 0 => 'f91989c17beda35c69f14454463f743280888d48', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\requiresoperatingsystemfamily', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\operatingsystemfamily', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DependsExternalUsingShallowClone.php' => - array ( - 0 => '05c0bfb824152f4e4b6dd144cfe00dc2e4a064ba', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\dependsexternalusingshallowclone', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\classname', - 2 => 'phpunit\\framework\\attributes\\methodname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/Group.php' => - array ( - 0 => 'c20d26beb5f874445aed0ba9fbaa2adfbec73011', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\group', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\name', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/UsesTrait.php' => - array ( - 0 => 'fc74314a610f33c89a6592ba4378f9d63ad3e66c', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\usestrait', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\traitname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/CoversMethod.php' => - array ( - 0 => '9a008ac02e7e8df9ab89bead30d747112d32bb9a', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\coversmethod', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\classname', - 2 => 'phpunit\\framework\\attributes\\methodname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/After.php' => - array ( - 0 => '7ac4ce720ff6e86d7b01309ed292c1ee2b131917', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\after', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\priority', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/TestDox.php' => - array ( - 0 => '28b23c577d4170ac0be037dff3add76df8685935', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\testdox', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\text', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DataProviderExternal.php' => - array ( - 0 => 'e4ce059fc74ec9ce102f26acb46b35f8ebff399e', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\dataproviderexternal', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\classname', - 2 => 'phpunit\\framework\\attributes\\methodname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/Ticket.php' => - array ( - 0 => 'df6503397cab9342c1f2980e2e58c9a8cf02e40f', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\ticket', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\text', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresSetting.php' => - array ( - 0 => 'd1b7fe8c07f7485d4f83d49999b1355d83e3eb64', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\requiressetting', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\setting', - 2 => 'phpunit\\framework\\attributes\\value', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/TestWithJson.php' => - array ( - 0 => 'cb0f0591bde5bea3c1417d2fd86ff3912cd0a1f4', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\testwithjson', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\json', - 2 => 'phpunit\\framework\\attributes\\name', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DependsExternalUsingDeepClone.php' => - array ( - 0 => '5e78918ffc8f26c25f06583b76ed045a81743955', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\dependsexternalusingdeepclone', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\classname', - 2 => 'phpunit\\framework\\attributes\\methodname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DependsOnClass.php' => - array ( - 0 => '9df777251005056365b002c446978620f5996ab5', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\dependsonclass', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\classname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DataProvider.php' => - array ( - 0 => '68cd7521ca35dabeaac99ad5bf7b6aa61e4a3d26', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\dataprovider', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\methodname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RunInSeparateProcess.php' => - array ( - 0 => '4b1955a7d7db12f9d259c19f7a5ac4ac58c3aa83', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\runinseparateprocess', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/UsesFunction.php' => - array ( - 0 => '17f644a28f78d3235fc6f3bb8cf79ef6458ae70a', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\usesfunction', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\functionname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/UsesMethod.php' => - array ( - 0 => '93ae4aac7a3c1d36018f55ad31292e41072ab09a', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\usesmethod', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\classname', - 2 => 'phpunit\\framework\\attributes\\methodname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DependsOnClassUsingDeepClone.php' => - array ( - 0 => 'f06963e9ddc284eff33e586ff39597d516b11410', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\dependsonclassusingdeepclone', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\classname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/AfterClass.php' => - array ( - 0 => '5539f5654b3b4ea9db0fefabc0236b6e253dbed1', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\afterclass', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\priority', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/Medium.php' => - array ( - 0 => 'a1ce64fb64ffae458088e143fb9bd01301b8bd5f', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\medium', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/Depends.php' => - array ( - 0 => '230dc93e44411538e2b4c801c51ad1949e4bcc74', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\depends', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\methodname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/PreserveGlobalState.php' => - array ( - 0 => 'e4c837328af38adeaa04964b357e91f425f7c585', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\preserveglobalstate', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\enabled', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresPhpunitExtension.php' => - array ( - 0 => 'e79c035373406503e08192d48185f1dd73fc8117', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\requiresphpunitextension', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\extensionclass', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DependsUsingShallowClone.php' => - array ( - 0 => 'f35acc6ef331726d69d97639c9755825aad2f5f4', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\dependsusingshallowclone', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\methodname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresMethod.php' => - array ( - 0 => 'ca08751352c79530d54164d5262c966f1c37ccec', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\requiresmethod', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\classname', - 2 => 'phpunit\\framework\\attributes\\methodname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/Test.php' => - array ( - 0 => '430efd626ebd013247ad12ed501a88d1614f3dc1', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\test', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresPhpunit.php' => - array ( - 0 => 'e8725ca048d1aae2d76dd97ad016295d80fe837b', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\requiresphpunit', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\versionrequirement', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DisableReturnValueGenerationForTestDoubles.php' => - array ( - 0 => '2cacb06449a3df931ef9ed3237d7d98457057b20', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\disablereturnvaluegenerationfortestdoubles', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/ExcludeGlobalVariableFromBackup.php' => - array ( - 0 => 'eed42ec3a78f5b7c32c6f555aab550fcf1454466', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\excludeglobalvariablefrombackup', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\globalvariablename', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/IgnorePhpunitDeprecations.php' => - array ( - 0 => '8ea249504ed038902e3aaa55758e4bcb8176560e', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\ignorephpunitdeprecations', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/WithoutErrorHandler.php' => - array ( - 0 => '9083323862ba6151ac7f680df00c80d0854319bd', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\withouterrorhandler', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresFunction.php' => - array ( - 0 => '1c92946d2ff3962d7a4e213ea44158d1c9120ea1', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\requiresfunction', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\functionname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DependsOnClassUsingShallowClone.php' => - array ( - 0 => 'e45d527a5712aa477c5d43b3f684e2255b4b9e5a', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\dependsonclassusingshallowclone', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\classname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/ExcludeStaticPropertyFromBackup.php' => - array ( - 0 => '7e7bb415616ad9d390945d4b5e516ea918193f15', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\excludestaticpropertyfrombackup', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\classname', - 2 => 'phpunit\\framework\\attributes\\propertyname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresPhpExtension.php' => - array ( - 0 => '753a8cf29330770a242abc4fe82a8086cb97e532', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\requiresphpextension', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\extension', - 2 => 'phpunit\\framework\\attributes\\versionrequirement', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DoesNotPerformAssertions.php' => - array ( - 0 => 'e0a933ec0aa4d8513252d8b8adb9016b9fafee41', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\doesnotperformassertions', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/PreCondition.php' => - array ( - 0 => 'c19c836f6ac268a21a9b426eaf1b8573c459bf69', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\precondition', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\priority', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresOperatingSystem.php' => - array ( - 0 => '32643e38fa7881eb4a8eff19a3bf76274845bd9d', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\requiresoperatingsystem', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\regularexpression', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/BackupStaticProperties.php' => - array ( - 0 => '987a7b33bcfc59d716dd000b160b444c805cd4eb', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\backupstaticproperties', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\enabled', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/TestWith.php' => - array ( - 0 => '3b25b86a4eaf1ab005ec699758c827fbf58e673e', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\testwith', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\data', - 2 => 'phpunit\\framework\\attributes\\name', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/CoversNothing.php' => - array ( - 0 => '8fba204cca606dc1f5233274102837e3a24bbfeb', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\coversnothing', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/CoversFunction.php' => - array ( - 0 => 'cd3e819221550cba3c8e0f2792166238f3a81990', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\coversfunction', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\functionname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/UsesClass.php' => - array ( - 0 => '519569e85058df0679bcd63e85dea1c2d2240e8d', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\usesclass', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\classname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/Large.php' => - array ( - 0 => '8729d2b9e26febac2e7b4975d45edb68717354c3', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\large', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/IgnoreDeprecations.php' => - array ( - 0 => '4c22e865137e5c0c5903395510dd6dbd2411f449', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\ignoredeprecations', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/PostCondition.php' => - array ( - 0 => 'e03757a37e19ab58f16efc9e3163ef09de5e8c21', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\postcondition', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\priority', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/BeforeClass.php' => - array ( - 0 => '235dcc7406e2e44ca142e301ef2b3111a28b648e', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\beforeclass', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\priority', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/CoversClass.php' => - array ( - 0 => '1a89834614f5b7b2cbd655c757f18d6f200227eb', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\coversclass', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\classname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/RunTestsInSeparateProcesses.php' => - array ( - 0 => 'f7ccc03b0367c9c5436acf402c789c600a699d5c', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\runtestsinseparateprocesses', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/Small.php' => - array ( - 0 => 'e955e58c028ed65c1e6201bc4fc6d24bc3d22dce', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\small', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/BackupGlobals.php' => - array ( - 0 => '80746b41dceec877881e96482cea67cb2ae038bb', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\backupglobals', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\enabled', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Attributes/DependsExternal.php' => - array ( - 0 => '458e4f31c55533fb7c80596ccb2ef11f83b76e3d', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\dependsexternal', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\classname', - 2 => 'phpunit\\framework\\attributes\\methodname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Test.php' => - array ( - 0 => '68d23894ee4cf065d533408bb2c346218ba06757', - 1 => - array ( - 0 => 'phpunit\\framework\\test', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\run', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/MockBuilder.php' => - array ( - 0 => 'd7c4f505574bb7d1d14b282e940cf64ed11a7af5', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\mockbuilder', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - 1 => 'phpunit\\framework\\mockobject\\getmock', - 2 => 'phpunit\\framework\\mockobject\\getmockforabstractclass', - 3 => 'phpunit\\framework\\mockobject\\getmockfortrait', - 4 => 'phpunit\\framework\\mockobject\\onlymethods', - 5 => 'phpunit\\framework\\mockobject\\addmethods', - 6 => 'phpunit\\framework\\mockobject\\setconstructorargs', - 7 => 'phpunit\\framework\\mockobject\\setmockclassname', - 8 => 'phpunit\\framework\\mockobject\\disableoriginalconstructor', - 9 => 'phpunit\\framework\\mockobject\\enableoriginalconstructor', - 10 => 'phpunit\\framework\\mockobject\\disableoriginalclone', - 11 => 'phpunit\\framework\\mockobject\\enableoriginalclone', - 12 => 'phpunit\\framework\\mockobject\\disableautoload', - 13 => 'phpunit\\framework\\mockobject\\enableautoload', - 14 => 'phpunit\\framework\\mockobject\\disableargumentcloning', - 15 => 'phpunit\\framework\\mockobject\\enableargumentcloning', - 16 => 'phpunit\\framework\\mockobject\\enableproxyingtooriginalmethods', - 17 => 'phpunit\\framework\\mockobject\\disableproxyingtooriginalmethods', - 18 => 'phpunit\\framework\\mockobject\\setproxytarget', - 19 => 'phpunit\\framework\\mockobject\\allowmockingunknowntypes', - 20 => 'phpunit\\framework\\mockobject\\disallowmockingunknowntypes', - 21 => 'phpunit\\framework\\mockobject\\enableautoreturnvaluegeneration', - 22 => 'phpunit\\framework\\mockobject\\disableautoreturnvaluegeneration', - 23 => 'phpunit\\framework\\mockobject\\calledfromtestcase', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Interface/MockObject.php' => - array ( - 0 => '5bbacec47074a2f072afed324615af8f1f2316ea', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\mockobject', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\expects', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Interface/StubInternal.php' => - array ( - 0 => '9f7df146bf6a80a9a260959a37b7f9771a0cc75d', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stubinternal', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__phpunit_state', - 1 => 'phpunit\\framework\\mockobject\\__phpunit_getinvocationhandler', - 2 => 'phpunit\\framework\\mockobject\\__phpunit_unsetinvocationmocker', - 3 => 'phpunit\\framework\\mockobject\\__phpunit_wasgeneratedasmockobject', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Interface/Stub.php' => - array ( - 0 => '8d760e369fad7f4727ed775346384a9b7be3a7ac', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Interface/MockObjectInternal.php' => - array ( - 0 => '52d69488318386b3f809564270ef968152dddfb5', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\mockobjectinternal', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__phpunit_hasmatchers', - 1 => 'phpunit\\framework\\mockobject\\__phpunit_verify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/MethodNameConstraint.php' => - array ( - 0 => '33a51e74579eecb0eed23eca25bb2b1a21284832', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\methodnameconstraint', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - 1 => 'phpunit\\framework\\mockobject\\tostring', - 2 => 'phpunit\\framework\\mockobject\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/PropertyHook/PropertyHook.php' => - array ( - 0 => 'b18dc0760289e02a2a6bebc31a96e99c5e0530d7', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\runtime\\propertyhook', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\runtime\\get', - 1 => 'phpunit\\framework\\mockobject\\runtime\\set', - 2 => 'phpunit\\framework\\mockobject\\runtime\\__construct', - 3 => 'phpunit\\framework\\mockobject\\runtime\\propertyname', - 4 => 'phpunit\\framework\\mockobject\\runtime\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/PropertyHook/PropertySetHook.php' => - array ( - 0 => '27a6575cc1fcaf471f230a3eb6c80e3160f634e1', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\runtime\\propertysethook', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\runtime\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/PropertyHook/PropertyGetHook.php' => - array ( - 0 => 'f9c52319cb71954e368eb18ca897bbea1fa5b369', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\runtime\\propertygethook', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\runtime\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Invocation.php' => - array ( - 0 => '1d6ccc6c9750e009e150a9d39b5931d527d93e17', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\invocation', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - 1 => 'phpunit\\framework\\mockobject\\classname', - 2 => 'phpunit\\framework\\mockobject\\methodname', - 3 => 'phpunit\\framework\\mockobject\\parameters', - 4 => 'phpunit\\framework\\mockobject\\generatereturnvalue', - 5 => 'phpunit\\framework\\mockobject\\tostring', - 6 => 'phpunit\\framework\\mockobject\\object', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/MethodName.php' => - array ( - 0 => 'c92df69a7a5f95e04eaa28f573338225cc7214f0', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\methodname', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\__construct', - 1 => 'phpunit\\framework\\mockobject\\rule\\tostring', - 2 => 'phpunit\\framework\\mockobject\\rule\\matches', - 3 => 'phpunit\\framework\\mockobject\\rule\\matchesname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/ParametersRule.php' => - array ( - 0 => '343f04fc1139c510b69fc5c40684e5a403207f40', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\parametersrule', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\apply', - 1 => 'phpunit\\framework\\mockobject\\rule\\verify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/InvocationOrder.php' => - array ( - 0 => 'a8b769456b3ecd3daf93b6e5de483be41b23965c', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\invocationorder', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\numberofinvocations', - 1 => 'phpunit\\framework\\mockobject\\rule\\hasbeeninvoked', - 2 => 'phpunit\\framework\\mockobject\\rule\\invoked', - 3 => 'phpunit\\framework\\mockobject\\rule\\matches', - 4 => 'phpunit\\framework\\mockobject\\rule\\verify', - 5 => 'phpunit\\framework\\mockobject\\rule\\invokeddo', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/AnyInvokedCount.php' => - array ( - 0 => '176ed06230b73abc72aa5210afcff5c5c9fe057f', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\anyinvokedcount', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\tostring', - 1 => 'phpunit\\framework\\mockobject\\rule\\verify', - 2 => 'phpunit\\framework\\mockobject\\rule\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/InvokedAtLeastOnce.php' => - array ( - 0 => '6edd904a7e53f4c906c84b12659206e83a27ca44', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\invokedatleastonce', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\tostring', - 1 => 'phpunit\\framework\\mockobject\\rule\\verify', - 2 => 'phpunit\\framework\\mockobject\\rule\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/AnyParameters.php' => - array ( - 0 => 'f9fcd708f700bfb44184c827e13e1ad0a476ca8b', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\anyparameters', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\apply', - 1 => 'phpunit\\framework\\mockobject\\rule\\verify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/InvokedAtMostCount.php' => - array ( - 0 => '06202d256f0bee082d1bfdd0cfaf68533b41ea08', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\invokedatmostcount', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\__construct', - 1 => 'phpunit\\framework\\mockobject\\rule\\tostring', - 2 => 'phpunit\\framework\\mockobject\\rule\\verify', - 3 => 'phpunit\\framework\\mockobject\\rule\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/InvokedAtLeastCount.php' => - array ( - 0 => 'f161a5c30158a5472aab7ddb643b6daa7828ad8b', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\invokedatleastcount', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\__construct', - 1 => 'phpunit\\framework\\mockobject\\rule\\tostring', - 2 => 'phpunit\\framework\\mockobject\\rule\\verify', - 3 => 'phpunit\\framework\\mockobject\\rule\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/Parameters.php' => - array ( - 0 => '4bb631b3a709cd32383f99cd05795593e1b06e5c', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\parameters', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\__construct', - 1 => 'phpunit\\framework\\mockobject\\rule\\apply', - 2 => 'phpunit\\framework\\mockobject\\rule\\verify', - 3 => 'phpunit\\framework\\mockobject\\rule\\doverify', - 4 => 'phpunit\\framework\\mockobject\\rule\\guardagainstduplicateevaluationofparameterconstraints', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/InvokedCount.php' => - array ( - 0 => '02eb5dcd4a605068c07fc2f432b3959b7601a53d', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\invokedcount', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\__construct', - 1 => 'phpunit\\framework\\mockobject\\rule\\isnever', - 2 => 'phpunit\\framework\\mockobject\\rule\\tostring', - 3 => 'phpunit\\framework\\mockobject\\rule\\matches', - 4 => 'phpunit\\framework\\mockobject\\rule\\verify', - 5 => 'phpunit\\framework\\mockobject\\rule\\invokeddo', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Matcher.php' => - array ( - 0 => 'dd83dad7aa15b85b8ac4e9b251313f7ed794b5ea', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\matcher', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - 1 => 'phpunit\\framework\\mockobject\\hasmatchers', - 2 => 'phpunit\\framework\\mockobject\\hasmethodnamerule', - 3 => 'phpunit\\framework\\mockobject\\methodnamerule', - 4 => 'phpunit\\framework\\mockobject\\setmethodnamerule', - 5 => 'phpunit\\framework\\mockobject\\hasparametersrule', - 6 => 'phpunit\\framework\\mockobject\\setparametersrule', - 7 => 'phpunit\\framework\\mockobject\\setstub', - 8 => 'phpunit\\framework\\mockobject\\setaftermatchbuilderid', - 9 => 'phpunit\\framework\\mockobject\\invoked', - 10 => 'phpunit\\framework\\mockobject\\matches', - 11 => 'phpunit\\framework\\mockobject\\verify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/ReturnStub.php' => - array ( - 0 => '66a119f1cdd91214109057f61687d1ccaa80a0de', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\returnstub', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\__construct', - 1 => 'phpunit\\framework\\mockobject\\stub\\invoke', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/ConsecutiveCalls.php' => - array ( - 0 => '0ec0f81e7cf36a604c26868f7f09df4e7f980af2', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\consecutivecalls', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\__construct', - 1 => 'phpunit\\framework\\mockobject\\stub\\invoke', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/ReturnArgument.php' => - array ( - 0 => 'f3ebd6bbd2b76c20aad59b1946808a2ce884078e', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\returnargument', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\__construct', - 1 => 'phpunit\\framework\\mockobject\\stub\\invoke', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/ReturnReference.php' => - array ( - 0 => '73acc6e158842eda82be76c758b9bb0a641392ec', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\returnreference', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\__construct', - 1 => 'phpunit\\framework\\mockobject\\stub\\invoke', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/ReturnValueMap.php' => - array ( - 0 => 'f5b9f8b0501f712aa0d69886a361f7380fae24e3', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\returnvaluemap', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\__construct', - 1 => 'phpunit\\framework\\mockobject\\stub\\invoke', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/ReturnCallback.php' => - array ( - 0 => 'b3a047018020373718d44c9798a502ff7ca59778', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\returncallback', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\__construct', - 1 => 'phpunit\\framework\\mockobject\\stub\\invoke', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/ReturnSelf.php' => - array ( - 0 => '1449e9241bec06fc05944f751db728cbcc5c1377', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\returnself', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\invoke', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/Stub.php' => - array ( - 0 => '24cacef1d565400b9200e544fa6470474ec09dec', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\stub', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\invoke', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/Exception.php' => - array ( - 0 => '8b6875b67a40d28af0423a4d42da449825fc7dec', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\exception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\__construct', - 1 => 'phpunit\\framework\\mockobject\\stub\\invoke', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/StubApi.php' => - array ( - 0 => 'b963204cc9e85ceb2aee946af19041c0a68a1ecd', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stubapi', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__phpunit_state', - 1 => 'phpunit\\framework\\mockobject\\__phpunit_getinvocationhandler', - 2 => 'phpunit\\framework\\mockobject\\__phpunit_unsetinvocationmocker', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/MockObjectApi.php' => - array ( - 0 => '7960eea2952c7a826985cda9dfea3efc4b0c89ae', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\mockobjectapi', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__phpunit_hasmatchers', - 1 => 'phpunit\\framework\\mockobject\\__phpunit_verify', - 2 => 'phpunit\\framework\\mockobject\\__phpunit_state', - 3 => 'phpunit\\framework\\mockobject\\__phpunit_getinvocationhandler', - 4 => 'phpunit\\framework\\mockobject\\__phpunit_unsetinvocationmocker', - 5 => 'phpunit\\framework\\mockobject\\expects', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/DoubledCloneMethod.php' => - array ( - 0 => '231ffc6816a2d31f36ce8a580d9d86078df3fde4', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\doubledclonemethod', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__clone', - 1 => 'phpunit\\framework\\mockobject\\__phpunit_state', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/Method.php' => - array ( - 0 => '82b048a7bf08b9a7edd17efbcd983f4c8ba977c4', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\method', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__phpunit_getinvocationhandler', - 1 => 'phpunit\\framework\\mockobject\\method', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/ProxiedCloneMethod.php' => - array ( - 0 => '6eee76a79be129ef6665a2273f9ecd906b734e64', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\proxiedclonemethod', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__clone', - 1 => 'phpunit\\framework\\mockobject\\__phpunit_state', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/GeneratedAsTestStub.php' => - array ( - 0 => '9706b1593ca7e925fca8cc815eb2756ee48b16dd', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generatedasteststub', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__phpunit_wasgeneratedasmockobject', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/MutableStubApi.php' => - array ( - 0 => 'bba8fb7ceb9c2abc4b5120aa43c4b538ab12eaba', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\mutablestubapi', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__phpunit_state', - 1 => 'phpunit\\framework\\mockobject\\__phpunit_getinvocationhandler', - 2 => 'phpunit\\framework\\mockobject\\__phpunit_unsetinvocationmocker', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/GeneratedAsMockObject.php' => - array ( - 0 => '3498549c8e6a9b1975f1c0834554c8c740cb70d5', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generatedasmockobject', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__phpunit_wasgeneratedasmockobject', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/TestDoubleState.php' => - array ( - 0 => '03d1dd314f47e17e0c37cd32c5609addb7708c0c', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\testdoublestate', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - 1 => 'phpunit\\framework\\mockobject\\invocationhandler', - 2 => 'phpunit\\framework\\mockobject\\cloneinvocationhandler', - 3 => 'phpunit\\framework\\mockobject\\unsetinvocationhandler', - 4 => 'phpunit\\framework\\mockobject\\setproxytarget', - 5 => 'phpunit\\framework\\mockobject\\proxytarget', - 6 => 'phpunit\\framework\\mockobject\\deprecationwasemittedfor', - 7 => 'phpunit\\framework\\mockobject\\wasdeprecationalreadyemittedfor', - 8 => 'phpunit\\framework\\mockobject\\configurablemethods', - 9 => 'phpunit\\framework\\mockobject\\generatereturnvalues', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/ErrorCloneMethod.php' => - array ( - 0 => 'd4149824fb3d982ea7bba1ef1e4200c3d3ded918', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\errorclonemethod', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__clone', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/InvocationHandler.php' => - array ( - 0 => '282d51f031fd9239788b8e8faf0331e122fee9dd', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\invocationhandler', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - 1 => 'phpunit\\framework\\mockobject\\hasmatchers', - 2 => 'phpunit\\framework\\mockobject\\lookupmatcher', - 3 => 'phpunit\\framework\\mockobject\\registermatcher', - 4 => 'phpunit\\framework\\mockobject\\expects', - 5 => 'phpunit\\framework\\mockobject\\invoke', - 6 => 'phpunit\\framework\\mockobject\\verify', - 7 => 'phpunit\\framework\\mockobject\\addmatcher', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Builder/InvocationStubber.php' => - array ( - 0 => 'c7b43d5366c4323f2cbb9c221201f117c132a3ef', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\builder\\invocationstubber', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\builder\\will', - 1 => 'phpunit\\framework\\mockobject\\builder\\willreturn', - 2 => 'phpunit\\framework\\mockobject\\builder\\willreturnreference', - 3 => 'phpunit\\framework\\mockobject\\builder\\willreturnmap', - 4 => 'phpunit\\framework\\mockobject\\builder\\willreturnargument', - 5 => 'phpunit\\framework\\mockobject\\builder\\willreturncallback', - 6 => 'phpunit\\framework\\mockobject\\builder\\willreturnself', - 7 => 'phpunit\\framework\\mockobject\\builder\\willreturnonconsecutivecalls', - 8 => 'phpunit\\framework\\mockobject\\builder\\willthrowexception', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Builder/InvocationMocker.php' => - array ( - 0 => 'c6c67ea06663493d7d213593dbb7bd92182c8786', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\builder\\invocationmocker', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\builder\\__construct', - 1 => 'phpunit\\framework\\mockobject\\builder\\id', - 2 => 'phpunit\\framework\\mockobject\\builder\\will', - 3 => 'phpunit\\framework\\mockobject\\builder\\willreturn', - 4 => 'phpunit\\framework\\mockobject\\builder\\willreturnreference', - 5 => 'phpunit\\framework\\mockobject\\builder\\willreturnmap', - 6 => 'phpunit\\framework\\mockobject\\builder\\willreturnargument', - 7 => 'phpunit\\framework\\mockobject\\builder\\willreturncallback', - 8 => 'phpunit\\framework\\mockobject\\builder\\willreturnself', - 9 => 'phpunit\\framework\\mockobject\\builder\\willreturnonconsecutivecalls', - 10 => 'phpunit\\framework\\mockobject\\builder\\willthrowexception', - 11 => 'phpunit\\framework\\mockobject\\builder\\after', - 12 => 'phpunit\\framework\\mockobject\\builder\\with', - 13 => 'phpunit\\framework\\mockobject\\builder\\withanyparameters', - 14 => 'phpunit\\framework\\mockobject\\builder\\method', - 15 => 'phpunit\\framework\\mockobject\\builder\\ensureparameterscanbeconfigured', - 16 => 'phpunit\\framework\\mockobject\\builder\\configuredmethod', - 17 => 'phpunit\\framework\\mockobject\\builder\\ensuretypeofreturnvalues', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Builder/ParametersMatch.php' => - array ( - 0 => '49a3d4c0e5b8181db134e2f8885d9967b6a6f5e2', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\builder\\parametersmatch', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\builder\\after', - 1 => 'phpunit\\framework\\mockobject\\builder\\with', - 2 => 'phpunit\\framework\\mockobject\\builder\\withanyparameters', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Builder/Identity.php' => - array ( - 0 => '37a919f8f626ac6dfa14357af528b3b275f9bb90', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\builder\\identity', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\builder\\id', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Builder/Stub.php' => - array ( - 0 => 'bff5abab8272dd90ad3a5ccc20b7a7815f8e346c', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\builder\\stub', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\builder\\will', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Builder/MethodNameMatch.php' => - array ( - 0 => 'f7ccd17693b6947e7ab9004d6cc442392d49d43b', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\builder\\methodnamematch', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\builder\\method', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/ReturnValueGenerator.php' => - array ( - 0 => 'b2e3986a1d0bc0c2f9ec03275b4c9e17d803fe48', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\returnvaluegenerator', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generate', - 1 => 'phpunit\\framework\\mockobject\\onlyinterfaces', - 2 => 'phpunit\\framework\\mockobject\\newinstanceof', - 3 => 'phpunit\\framework\\mockobject\\testdoublefor', - 4 => 'phpunit\\framework\\mockobject\\testdoubleforintersectionofinterfaces', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/MockClass.php' => - array ( - 0 => 'f7c42cb9a0f8ef8b8f35aeb26dabedcac3c82402', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\mockclass', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', - 1 => 'phpunit\\framework\\mockobject\\generator\\generate', - 2 => 'phpunit\\framework\\mockobject\\generator\\classcode', - 3 => 'phpunit\\framework\\mockobject\\generator\\configurablemethods', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/TemplateLoader.php' => - array ( - 0 => 'bab1c703cd12e0c79cae17272336a58ba05f00c1', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\templateloader', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\loadtemplate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/MockType.php' => - array ( - 0 => '409cad0cf747ccaf74bfcb6f9039902907dfe95d', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\mocktype', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\generate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/MockMethodSet.php' => - array ( - 0 => '2121c4b467fdb15f24bc03e9e13065c2200262b4', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\mockmethodset', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\addmethods', - 1 => 'phpunit\\framework\\mockobject\\generator\\asarray', - 2 => 'phpunit\\framework\\mockobject\\generator\\hasmethod', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/MockMethod.php' => - array ( - 0 => 'cb1d721bbc5ef1c8981ae16110d1bf449264fcb4', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\mockmethod', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\fromreflection', - 1 => 'phpunit\\framework\\mockobject\\generator\\fromname', - 2 => 'phpunit\\framework\\mockobject\\generator\\__construct', - 3 => 'phpunit\\framework\\mockobject\\generator\\methodname', - 4 => 'phpunit\\framework\\mockobject\\generator\\generatecode', - 5 => 'phpunit\\framework\\mockobject\\generator\\returntype', - 6 => 'phpunit\\framework\\mockobject\\generator\\defaultparametervalues', - 7 => 'phpunit\\framework\\mockobject\\generator\\numberofparameters', - 8 => 'phpunit\\framework\\mockobject\\generator\\methodparametersfordeclaration', - 9 => 'phpunit\\framework\\mockobject\\generator\\methodparametersforcall', - 10 => 'phpunit\\framework\\mockobject\\generator\\exportdefaultvalue', - 11 => 'phpunit\\framework\\mockobject\\generator\\methodparametersdefaultvalues', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/HookedProperty.php' => - array ( - 0 => '4272e0fb5c56c52ae39ba5c170c2143f6121c67c', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\hookedproperty', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', - 1 => 'phpunit\\framework\\mockobject\\generator\\name', - 2 => 'phpunit\\framework\\mockobject\\generator\\type', - 3 => 'phpunit\\framework\\mockobject\\generator\\hasgethook', - 4 => 'phpunit\\framework\\mockobject\\generator\\hassethook', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Generator.php' => - array ( - 0 => 'a66da62d4c8e98c6a225b4b4cb9c543093e576c1', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\generator', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\testdouble', - 1 => 'phpunit\\framework\\mockobject\\generator\\testdoubleforinterfaceintersection', - 2 => 'phpunit\\framework\\mockobject\\generator\\mockobjectforabstractclass', - 3 => 'phpunit\\framework\\mockobject\\generator\\mockobjectfortrait', - 4 => 'phpunit\\framework\\mockobject\\generator\\objectfortrait', - 5 => 'phpunit\\framework\\mockobject\\generator\\generate', - 6 => 'phpunit\\framework\\mockobject\\generator\\generateclassfromwsdl', - 7 => 'phpunit\\framework\\mockobject\\generator\\mockclassmethods', - 8 => 'phpunit\\framework\\mockobject\\generator\\userdefinedinterfacemethods', - 9 => 'phpunit\\framework\\mockobject\\generator\\getobject', - 10 => 'phpunit\\framework\\mockobject\\generator\\generatecodefortestdoubleclass', - 11 => 'phpunit\\framework\\mockobject\\generator\\generateclassname', - 12 => 'phpunit\\framework\\mockobject\\generator\\generatetestdoubleclassdeclaration', - 13 => 'phpunit\\framework\\mockobject\\generator\\canmethodbedoubled', - 14 => 'phpunit\\framework\\mockobject\\generator\\ismethodnameexcluded', - 15 => 'phpunit\\framework\\mockobject\\generator\\ensureknowntype', - 16 => 'phpunit\\framework\\mockobject\\generator\\ensurevalidmethods', - 17 => 'phpunit\\framework\\mockobject\\generator\\ensurenamefortestdoubleclassisavailable', - 18 => 'phpunit\\framework\\mockobject\\generator\\instantiateproxytarget', - 19 => 'phpunit\\framework\\mockobject\\generator\\reflectclass', - 20 => 'phpunit\\framework\\mockobject\\generator\\namesofmethodsin', - 21 => 'phpunit\\framework\\mockobject\\generator\\interfacemethods', - 22 => 'phpunit\\framework\\mockobject\\generator\\configurablemethods', - 23 => 'phpunit\\framework\\mockobject\\generator\\properties', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/CannotUseAddMethodsException.php' => - array ( - 0 => '50caf5674173dbaa306ca08bb334c7b21f793437', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\cannotuseaddmethodsexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/ReflectionException.php' => - array ( - 0 => 'f7507aee856f0b3f79e18ac857198f02e764ec53', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\reflectionexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/DuplicateMethodException.php' => - array ( - 0 => '9af0509f0ed99543372f398833882cefcd9f4fff', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\duplicatemethodexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/UnknownClassException.php' => - array ( - 0 => '60fb085895755264f58d44600490e4a9b42761bb', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\unknownclassexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/RuntimeException.php' => - array ( - 0 => '14c97f63549c02f10328745925d3621372619efb', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/InvalidMethodNameException.php' => - array ( - 0 => '0b3beac89b708a51a995dfe4cd90ccfe8be5f1ce', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\invalidmethodnameexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/NameAlreadyInUseException.php' => - array ( - 0 => '0af1e9616b529985ef0744f4532a4454fc867e3c', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\namealreadyinuseexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/UnknownTypeException.php' => - array ( - 0 => '8a670a602076be1e399badec48091c808c6cb167', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\unknowntypeexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/OriginalConstructorInvocationRequiredException.php' => - array ( - 0 => '4db75942f291c1bb06c317e985b7af7eeff4f476', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\originalconstructorinvocationrequiredexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/UnknownTraitException.php' => - array ( - 0 => '244f6afbac309e051bec2df8d6983af70cb32828', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\unknowntraitexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/ClassIsFinalException.php' => - array ( - 0 => '7391db6b04cbdc11ea1750c2ea1da82fce113eaa', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\classisfinalexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/ClassIsEnumerationException.php' => - array ( - 0 => 'adcb952110836a5984f457ebe518680a27ed8bd0', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\classisenumerationexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/SoapExtensionNotAvailableException.php' => - array ( - 0 => '3a3c6ad7180d19cb2d425fe0db29c726de3e531d', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\soapextensionnotavailableexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/Exception.php' => - array ( - 0 => '65d402b96493b02b46718665324381383ca973ad', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/MockTrait.php' => - array ( - 0 => 'f53be0468270a8a92ef26f0dd0d3c95041850bb0', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\mocktrait', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', - 1 => 'phpunit\\framework\\mockobject\\generator\\generate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/HookedPropertyGenerator.php' => - array ( - 0 => '8e24951753db0191b4e42bb22b72f1989e8e4af9', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\hookedpropertygenerator', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\generate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/ConfigurableMethod.php' => - array ( - 0 => '555722224843c17d0d66df63a931d49c913460fb', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\configurablemethod', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - 1 => 'phpunit\\framework\\mockobject\\name', - 2 => 'phpunit\\framework\\mockobject\\defaultparametervalues', - 3 => 'phpunit\\framework\\mockobject\\numberofparameters', - 4 => 'phpunit\\framework\\mockobject\\mayreturn', - 5 => 'phpunit\\framework\\mockobject\\returntypedeclaration', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MatchBuilderNotFoundException.php' => - array ( - 0 => '1077a5346b06efc45c83085035564407953ac990', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\matchbuildernotfoundexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MatcherAlreadyRegisteredException.php' => - array ( - 0 => '911ed6ffc58e249c83b0d201dbd5ddea8e8a8246', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\matcheralreadyregisteredexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MethodParametersAlreadyConfiguredException.php' => - array ( - 0 => 'a01ad3dcd108d4386a8dca5ebf7c1037f5b7ca1e', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\methodparametersalreadyconfiguredexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MethodNameAlreadyConfiguredException.php' => - array ( - 0 => '5481b8c2e75d608a187c10a8b935aeba205b8def', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\methodnamealreadyconfiguredexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/RuntimeException.php' => - array ( - 0 => '40426ba89925a9f772518a71bf9dcdd9eaa01667', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/IncompatibleReturnValueException.php' => - array ( - 0 => '1d65a08f989564443c0116ee1591544f8163a5c7', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\incompatiblereturnvalueexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/BadMethodCallException.php' => - array ( - 0 => 'd4d0114c53959b9ced2e74f56d919e9219356520', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\badmethodcallexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/CannotCloneTestDoubleForReadonlyClassException.php' => - array ( - 0 => '6d51846811f0778bfe75e17d6a1411835cbe67c3', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\cannotclonetestdoubleforreadonlyclassexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MethodCannotBeConfiguredException.php' => - array ( - 0 => '367172916ba998aeb51b6cbff7545ee144aff3be', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\methodcannotbeconfiguredexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/NeverReturningMethodException.php' => - array ( - 0 => '8c3d79f322cccbbaa70c206f71640b249cb20b40', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\neverreturningmethodexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/CannotUseOnlyMethodsException.php' => - array ( - 0 => '25bd6ca77375abe42ee5b5df5ca88c4edc3bf6f2', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\cannotuseonlymethodsexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/MethodNameNotConfiguredException.php' => - array ( - 0 => '1a999d030a6e43008f562d20a29ae350abe0e20f', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\methodnamenotconfiguredexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/ReturnValueNotConfiguredException.php' => - array ( - 0 => '43ea4e8e47d10c04d4239b349958cde1ca4ac619', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\returnvaluenotconfiguredexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/Exception.php' => - array ( - 0 => 'ea9895c1456e8a3064faad04784fe2f0d944e6b9', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/NoMoreReturnValuesConfiguredException.php' => - array ( - 0 => 'e476dd8b25d1587e407a182f42e8aa99764ce44d', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\nomorereturnvaluesconfiguredexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/NativeType.php' => - array ( - 0 => '0963042f0849353e7d574165a68632416fe47831', - 1 => - array ( - 0 => 'phpunit\\framework\\nativetype', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/TestCase.php' => - array ( - 0 => 'a25c2f2eab315a4b63073af46da4a95dd491663f', - 1 => - array ( - 0 => 'phpunit\\framework\\testcase', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - 1 => 'phpunit\\framework\\setupbeforeclass', - 2 => 'phpunit\\framework\\teardownafterclass', - 3 => 'phpunit\\framework\\setup', - 4 => 'phpunit\\framework\\assertpreconditions', - 5 => 'phpunit\\framework\\assertpostconditions', - 6 => 'phpunit\\framework\\teardown', - 7 => 'phpunit\\framework\\tostring', - 8 => 'phpunit\\framework\\count', - 9 => 'phpunit\\framework\\status', - 10 => 'phpunit\\framework\\run', - 11 => 'phpunit\\framework\\groups', - 12 => 'phpunit\\framework\\setgroups', - 13 => 'phpunit\\framework\\namewithdataset', - 14 => 'phpunit\\framework\\name', - 15 => 'phpunit\\framework\\size', - 16 => 'phpunit\\framework\\hasunexpectedoutput', - 17 => 'phpunit\\framework\\output', - 18 => 'phpunit\\framework\\doesnotperformassertions', - 19 => 'phpunit\\framework\\expectsoutput', - 20 => 'phpunit\\framework\\runbare', - 21 => 'phpunit\\framework\\setdependencies', - 22 => 'phpunit\\framework\\setdependencyinput', - 23 => 'phpunit\\framework\\dependencyinput', - 24 => 'phpunit\\framework\\hasdependencyinput', - 25 => 'phpunit\\framework\\setbackupglobals', - 26 => 'phpunit\\framework\\setbackupglobalsexcludelist', - 27 => 'phpunit\\framework\\setbackupstaticproperties', - 28 => 'phpunit\\framework\\setbackupstaticpropertiesexcludelist', - 29 => 'phpunit\\framework\\setruntestinseparateprocess', - 30 => 'phpunit\\framework\\setrunclassinseparateprocess', - 31 => 'phpunit\\framework\\setpreserveglobalstate', - 32 => 'phpunit\\framework\\setinisolation', - 33 => 'phpunit\\framework\\result', - 34 => 'phpunit\\framework\\setresult', - 35 => 'phpunit\\framework\\registermockobject', - 36 => 'phpunit\\framework\\addtoassertioncount', - 37 => 'phpunit\\framework\\numberofassertionsperformed', - 38 => 'phpunit\\framework\\usesdataprovider', - 39 => 'phpunit\\framework\\dataname', - 40 => 'phpunit\\framework\\datasetasstring', - 41 => 'phpunit\\framework\\datasetasstringwithdata', - 42 => 'phpunit\\framework\\provideddata', - 43 => 'phpunit\\framework\\sortid', - 44 => 'phpunit\\framework\\provides', - 45 => 'phpunit\\framework\\requires', - 46 => 'phpunit\\framework\\setdata', - 47 => 'phpunit\\framework\\valueobjectforevents', - 48 => 'phpunit\\framework\\wasprepared', - 49 => 'phpunit\\framework\\any', - 50 => 'phpunit\\framework\\never', - 51 => 'phpunit\\framework\\atleast', - 52 => 'phpunit\\framework\\atleastonce', - 53 => 'phpunit\\framework\\once', - 54 => 'phpunit\\framework\\exactly', - 55 => 'phpunit\\framework\\atmost', - 56 => 'phpunit\\framework\\returnvalue', - 57 => 'phpunit\\framework\\returnvaluemap', - 58 => 'phpunit\\framework\\returnargument', - 59 => 'phpunit\\framework\\returncallback', - 60 => 'phpunit\\framework\\returnself', - 61 => 'phpunit\\framework\\throwexception', - 62 => 'phpunit\\framework\\onconsecutivecalls', - 63 => 'phpunit\\framework\\getactualoutputforassertion', - 64 => 'phpunit\\framework\\expectoutputregex', - 65 => 'phpunit\\framework\\expectoutputstring', - 66 => 'phpunit\\framework\\expectexception', - 67 => 'phpunit\\framework\\expectexceptioncode', - 68 => 'phpunit\\framework\\expectexceptionmessage', - 69 => 'phpunit\\framework\\expectexceptionmessagematches', - 70 => 'phpunit\\framework\\expectexceptionobject', - 71 => 'phpunit\\framework\\expectnottoperformassertions', - 72 => 'phpunit\\framework\\expectuserdeprecationmessage', - 73 => 'phpunit\\framework\\expectuserdeprecationmessagematches', - 74 => 'phpunit\\framework\\getmockbuilder', - 75 => 'phpunit\\framework\\registercomparator', - 76 => 'phpunit\\framework\\registerfailuretype', - 77 => 'phpunit\\framework\\runtest', - 78 => 'phpunit\\framework\\iniset', - 79 => 'phpunit\\framework\\setlocale', - 80 => 'phpunit\\framework\\createmock', - 81 => 'phpunit\\framework\\createmockforintersectionofinterfaces', - 82 => 'phpunit\\framework\\createconfiguredmock', - 83 => 'phpunit\\framework\\createpartialmock', - 84 => 'phpunit\\framework\\createtestproxy', - 85 => 'phpunit\\framework\\getmockforabstractclass', - 86 => 'phpunit\\framework\\getmockfromwsdl', - 87 => 'phpunit\\framework\\getmockfortrait', - 88 => 'phpunit\\framework\\getobjectfortrait', - 89 => 'phpunit\\framework\\transformexception', - 90 => 'phpunit\\framework\\onnotsuccessfultest', - 91 => 'phpunit\\framework\\verifydeprecationexpectations', - 92 => 'phpunit\\framework\\verifymockobjects', - 93 => 'phpunit\\framework\\checkrequirements', - 94 => 'phpunit\\framework\\handledependencies', - 95 => 'phpunit\\framework\\markerrorforinvaliddependency', - 96 => 'phpunit\\framework\\markskippedformissingdependency', - 97 => 'phpunit\\framework\\startoutputbuffering', - 98 => 'phpunit\\framework\\stopoutputbuffering', - 99 => 'phpunit\\framework\\snapshotglobalerrorexceptionhandlers', - 100 => 'phpunit\\framework\\restoreglobalerrorexceptionhandlers', - 101 => 'phpunit\\framework\\getactiveerrorhandlers', - 102 => 'phpunit\\framework\\getactiveexceptionhandlers', - 103 => 'phpunit\\framework\\snapshotglobalstate', - 104 => 'phpunit\\framework\\restoreglobalstate', - 105 => 'phpunit\\framework\\createglobalstatesnapshot', - 106 => 'phpunit\\framework\\compareglobalstatesnapshots', - 107 => 'phpunit\\framework\\compareglobalstatesnapshotpart', - 108 => 'phpunit\\framework\\shouldinvocationmockerbereset', - 109 => 'phpunit\\framework\\unregistercustomcomparators', - 110 => 'phpunit\\framework\\cleanupinisettings', - 111 => 'phpunit\\framework\\cleanuplocalesettings', - 112 => 'phpunit\\framework\\shouldexceptionexpectationsbeverified', - 113 => 'phpunit\\framework\\shouldruninseparateprocess', - 114 => 'phpunit\\framework\\iscallabletestmethod', - 115 => 'phpunit\\framework\\performassertionsonoutput', - 116 => 'phpunit\\framework\\invokebeforeclasshookmethods', - 117 => 'phpunit\\framework\\invokebeforetesthookmethods', - 118 => 'phpunit\\framework\\invokepreconditionhookmethods', - 119 => 'phpunit\\framework\\invokepostconditionhookmethods', - 120 => 'phpunit\\framework\\invokeaftertesthookmethods', - 121 => 'phpunit\\framework\\invokeafterclasshookmethods', - 122 => 'phpunit\\framework\\invokehookmethods', - 123 => 'phpunit\\framework\\methoddoesnotexistorisdeclaredintestcase', - 124 => 'phpunit\\framework\\verifyexceptionexpectations', - 125 => 'phpunit\\framework\\expectedexceptionwasnotraised', - 126 => 'phpunit\\framework\\isregisteredfailure', - 127 => 'phpunit\\framework\\hasexpectationonoutput', - 128 => 'phpunit\\framework\\requirementsnotsatisfied', - 129 => 'phpunit\\framework\\handleexceptionfrominvokedcountmockobjectrule', - 130 => 'phpunit\\framework\\createstub', - 131 => 'phpunit\\framework\\createstubforintersectionofinterfaces', - 132 => 'phpunit\\framework\\createconfiguredstub', - 133 => 'phpunit\\framework\\generatereturnvaluesfortestdoubles', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/ExpectationFailedException.php' => - array ( - 0 => 'f9fc37f45187041b7439f4828481c47226ab70a5', - 1 => - array ( - 0 => 'phpunit\\framework\\expectationfailedexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - 1 => 'phpunit\\framework\\getcomparisonfailure', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/EmptyStringException.php' => - array ( - 0 => 'ca289d0ac3097433e411e80e715a892fcc4b1e97', - 1 => - array ( - 0 => 'phpunit\\framework\\emptystringexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/ObjectEquals/ComparisonMethodDoesNotAcceptParameterTypeException.php' => - array ( - 0 => '72406aeb9502e7b8b60f9f4b299db323eeba26ff', - 1 => - array ( - 0 => 'phpunit\\framework\\comparisonmethoddoesnotacceptparametertypeexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/ObjectEquals/ComparisonMethodDoesNotDeclareBoolReturnTypeException.php' => - array ( - 0 => '99a64a5bc5aeb9d73256122c1162cc61d027b985', - 1 => - array ( - 0 => 'phpunit\\framework\\comparisonmethoddoesnotdeclareboolreturntypeexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/ObjectEquals/ComparisonMethodDoesNotDeclareExactlyOneParameterException.php' => - array ( - 0 => '562ec7f68eb514ffb22aa19c580ebdb84c94783a', - 1 => - array ( - 0 => 'phpunit\\framework\\comparisonmethoddoesnotdeclareexactlyoneparameterexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/ObjectEquals/ActualValueIsNotAnObjectException.php' => - array ( - 0 => 'e2d3a1b363898bb8bc1ef4e626a6bb7972b93b23', - 1 => - array ( - 0 => 'phpunit\\framework\\actualvalueisnotanobjectexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/ObjectEquals/ComparisonMethodDoesNotDeclareParameterTypeException.php' => - array ( - 0 => '83504311c97091ebfdfa9618bd2449a2364df82c', - 1 => - array ( - 0 => 'phpunit\\framework\\comparisonmethoddoesnotdeclareparametertypeexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/ObjectEquals/ComparisonMethodDoesNotExistException.php' => - array ( - 0 => '5dc514b17750a2bd40d8257db7fe318d8f166c6d', - 1 => - array ( - 0 => 'phpunit\\framework\\comparisonmethoddoesnotexistexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/Incomplete/IncompleteTestError.php' => - array ( - 0 => 'b644c946464ea8283bef8d594cf4d6db489125e8', - 1 => - array ( - 0 => 'phpunit\\framework\\incompletetesterror', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/Incomplete/IncompleteTest.php' => - array ( - 0 => 'c220c51bd981e4abd29b108606f31526d69f7ace', - 1 => - array ( - 0 => 'phpunit\\framework\\incompletetest', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/UnknownTypeException.php' => - array ( - 0 => 'd6ecd5ef5a34665a5dbf73d518b56cd9d7b9d262', - 1 => - array ( - 0 => 'phpunit\\framework\\unknowntypeexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/Skipped/SkippedWithMessageException.php' => - array ( - 0 => 'af7880f45f8c6c6f4ef7f91c10977a352611a7bc', - 1 => - array ( - 0 => 'phpunit\\framework\\skippedwithmessageexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/Skipped/SkippedTestSuiteError.php' => - array ( - 0 => 'fbb03614636926749fd67e077474a97ad1184a95', - 1 => - array ( - 0 => 'phpunit\\framework\\skippedtestsuiteerror', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/Skipped/SkippedTest.php' => - array ( - 0 => '06bb37358da789e04b50abb97c90b4005e026e9a', - 1 => - array ( - 0 => 'phpunit\\framework\\skippedtest', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/PhptAssertionFailedError.php' => - array ( - 0 => 'eba23dcdcee6636d8866fd9360469e4ded822870', - 1 => - array ( - 0 => 'phpunit\\framework\\phptassertionfailederror', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - 1 => 'phpunit\\framework\\syntheticfile', - 2 => 'phpunit\\framework\\syntheticline', - 3 => 'phpunit\\framework\\synthetictrace', - 4 => 'phpunit\\framework\\diff', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/CodeCoverageException.php' => - array ( - 0 => '09582caf85e52a236c2591ca5bf17146e505801a', - 1 => - array ( - 0 => 'phpunit\\framework\\codecoverageexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/InvalidArgumentException.php' => - array ( - 0 => 'f30742c86d7b9262b9c46eecb02f5d5b51498637', - 1 => - array ( - 0 => 'phpunit\\framework\\invalidargumentexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/NoChildTestSuiteException.php' => - array ( - 0 => '06c318ea408ae9e30d844ce56e2e37b7a10504bf', - 1 => - array ( - 0 => 'phpunit\\framework\\nochildtestsuiteexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/GeneratorNotSupportedException.php' => - array ( - 0 => '5d9762f0437dc731f34e7e15f3815d2e7717d9cf', - 1 => - array ( - 0 => 'phpunit\\framework\\generatornotsupportedexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\fromparametername', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/InvalidDataProviderException.php' => - array ( - 0 => '8aa8825086e63ba54b7017af71cf7c64a77b1cd5', - 1 => - array ( - 0 => 'phpunit\\framework\\invaliddataproviderexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/InvalidCoversTargetException.php' => - array ( - 0 => 'c9250a55334106c03503b04e1a8d90aef36c575c', - 1 => - array ( - 0 => 'phpunit\\framework\\invalidcoverstargetexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/UnknownClassOrInterfaceException.php' => - array ( - 0 => '4483a99c3a127169d010cb812962cce7c5f117b0', - 1 => - array ( - 0 => 'phpunit\\framework\\unknownclassorinterfaceexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/Exception.php' => - array ( - 0 => '84411550abc0d62da4cc98e665ed0dd8533ce9c7', - 1 => - array ( - 0 => 'phpunit\\framework\\exception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - 1 => 'phpunit\\framework\\__sleep', - 2 => 'phpunit\\framework\\getserializabletrace', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/InvalidDependencyException.php' => - array ( - 0 => '0de35a4c59855d2ab16dfc566455c47753f81437', - 1 => - array ( - 0 => 'phpunit\\framework\\invaliddependencyexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/ProcessIsolationException.php' => - array ( - 0 => '99f310d0a06a7703162a1dbab2bedb9f0709ad3a', - 1 => - array ( - 0 => 'phpunit\\framework\\processisolationexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Exception/AssertionFailedError.php' => - array ( - 0 => 'd1b43ddd230ab20138e373a401fad4fb96a63bb3', - 1 => - array ( - 0 => 'phpunit\\framework\\assertionfailederror', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\tostring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/LessThan.php' => - array ( - 0 => '4988d89cd3d016fa9461ed8f2fe64ceaa4198b7f', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\lessthan', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/IsEmpty.php' => - array ( - 0 => 'ebe3294c71d7933b99a55195b3611cc56b9ae999', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\isempty', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\tostring', - 1 => 'phpunit\\framework\\constraint\\matches', - 2 => 'phpunit\\framework\\constraint\\failuredescription', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/Count.php' => - array ( - 0 => 'e183f948bc630566b19f2cdedb1c6341508ac844', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\count', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\matches', - 3 => 'phpunit\\framework\\constraint\\getcountof', - 4 => 'phpunit\\framework\\constraint\\failuredescription', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/SameSize.php' => - array ( - 0 => 'd40cd9e8432cf9c8f6a40b04b52fec6e8e34092d', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\samesize', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/GreaterThan.php' => - array ( - 0 => '250dd9d7523475ac7f8ace2381c4b8e0e7c95b01', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\greaterthan', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/IsAnything.php' => - array ( - 0 => '6dd899d0fe65f3efaa36273588aca7f2dc4c251d', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\isanything', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\evaluate', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\count', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsIdentical.php' => - array ( - 0 => 'e2823d22154331378ab1dd10db3afe4939eacb2c', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\traversablecontainsidentical', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/IsList.php' => - array ( - 0 => '7d826cb3554c8bc3a398225ef52646ca550c4340', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\islist', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\tostring', - 1 => 'phpunit\\framework\\constraint\\matches', - 2 => 'phpunit\\framework\\constraint\\failuredescription', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsOnly.php' => - array ( - 0 => '7e5dc91f2b12d775a96c6eea23a29daceea20085', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\traversablecontainsonly', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\evaluate', - 2 => 'phpunit\\framework\\constraint\\tostring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/ArrayHasKey.php' => - array ( - 0 => 'b55eb50e86261a9a97b6f52d67eb502f9ccaeca4', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\arrayhaskey', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\matches', - 3 => 'phpunit\\framework\\constraint\\failuredescription', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContains.php' => - array ( - 0 => '331b8fa2ba0eba85aed2ce78a6f48f203aaea45f', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\traversablecontains', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\failuredescription', - 3 => 'phpunit\\framework\\constraint\\value', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsEqual.php' => - array ( - 0 => 'bd4af4a31456c28ba0647e3febb9376799e13ca7', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\traversablecontainsequal', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php' => - array ( - 0 => '6f0491f41439897c1467bf13e32a1beb459f6a4f', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\jsonmatches', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\matches', - 3 => 'phpunit\\framework\\constraint\\fail', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Filesystem/IsReadable.php' => - array ( - 0 => 'f53734a10d97742003fc956e0739609b38569484', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\isreadable', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\tostring', - 1 => 'phpunit\\framework\\constraint\\matches', - 2 => 'phpunit\\framework\\constraint\\failuredescription', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Filesystem/DirectoryExists.php' => - array ( - 0 => '995ba23050a79b37358a2aaa1eec146608014e6e', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\directoryexists', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\tostring', - 1 => 'phpunit\\framework\\constraint\\matches', - 2 => 'phpunit\\framework\\constraint\\failuredescription', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Filesystem/IsWritable.php' => - array ( - 0 => 'a023338e1d7f8bdcd27866bfde3bcd036f23d42d', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\iswritable', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\tostring', - 1 => 'phpunit\\framework\\constraint\\matches', - 2 => 'phpunit\\framework\\constraint\\failuredescription', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Filesystem/FileExists.php' => - array ( - 0 => 'c51e62e59d0309e70e9307a971628119e3efb3c4', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\fileexists', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\tostring', - 1 => 'phpunit\\framework\\constraint\\matches', - 2 => 'phpunit\\framework\\constraint\\failuredescription', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Math/IsNan.php' => - array ( - 0 => 'd2b67a9303c07c81bd1673f43be0cf0e20459caa', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\isnan', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\tostring', - 1 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Math/IsInfinite.php' => - array ( - 0 => '9ca80839e05c34e2b2c3293c2196dc3239f4e9d0', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\isinfinite', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\tostring', - 1 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Math/IsFinite.php' => - array ( - 0 => '40aed8164fd66fd4cf92895ac13847cea0e5fb18', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\isfinite', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\tostring', - 1 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualIgnoringCase.php' => - array ( - 0 => '577a1075743b9f3058c267a522b13075f096f5ab', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\isequalignoringcase', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\evaluate', - 2 => 'phpunit\\framework\\constraint\\tostring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualWithDelta.php' => - array ( - 0 => '0819f0848badd91dbdd658096b9caf4109cdf396', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\isequalwithdelta', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\evaluate', - 2 => 'phpunit\\framework\\constraint\\tostring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqualCanonicalizing.php' => - array ( - 0 => '5613f94d296ebe82e0e76a662eaa68b0c2c78774', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\isequalcanonicalizing', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\evaluate', - 2 => 'phpunit\\framework\\constraint\\tostring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Equality/IsEqual.php' => - array ( - 0 => '3c75abedd1f63e3c2173d5c8b0dffb08f4f94dcb', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\isequal', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\evaluate', - 2 => 'phpunit\\framework\\constraint\\tostring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Type/IsInstanceOf.php' => - array ( - 0 => 'd6e33e425c6e9ec848053b41aacfea188f9152c9', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\isinstanceof', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\matches', - 3 => 'phpunit\\framework\\constraint\\failuredescription', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Type/IsType.php' => - array ( - 0 => 'cfce2cd0550bfdf98a3e7129e048786eeb42e0ed', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\istype', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Type/IsNull.php' => - array ( - 0 => '4599659c28661d8f764f5765a08bf034cb2d3900', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\isnull', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\tostring', - 1 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Object/ObjectEquals.php' => - array ( - 0 => 'ddf1d3722d4b156d34ac1a0ba43d3882e7c27d9d', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\objectequals', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\matches', - 3 => 'phpunit\\framework\\constraint\\failuredescription', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Object/ObjectHasProperty.php' => - array ( - 0 => '7831a52c99cf0b89f62d8aba13be5e1cfa6275e8', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\objecthasproperty', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\matches', - 3 => 'phpunit\\framework\\constraint\\failuredescription', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Constraint.php' => - array ( - 0 => '3b15eebef187215a7e44869aa1ad4d1609b6987f', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\constraint', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\evaluate', - 1 => 'phpunit\\framework\\constraint\\count', - 2 => 'phpunit\\framework\\constraint\\matches', - 3 => 'phpunit\\framework\\constraint\\fail', - 4 => 'phpunit\\framework\\constraint\\additionalfailuredescription', - 5 => 'phpunit\\framework\\constraint\\failuredescription', - 6 => 'phpunit\\framework\\constraint\\tostringincontext', - 7 => 'phpunit\\framework\\constraint\\failuredescriptionincontext', - 8 => 'phpunit\\framework\\constraint\\reduce', - 9 => 'phpunit\\framework\\constraint\\valuetotypestringfragment', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Boolean/IsFalse.php' => - array ( - 0 => '9afcd809037dc601f789c8f2a5d8cab1de76247b', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\isfalse', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\tostring', - 1 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Boolean/IsTrue.php' => - array ( - 0 => 'a2a6ec5122e071282f748b1019d8e32e5d536ce1', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\istrue', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\tostring', - 1 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/IsIdentical.php' => - array ( - 0 => 'c1a76a5e85e4b2b1ea9c297e36c43601a69afd8b', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\isidentical', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\evaluate', - 2 => 'phpunit\\framework\\constraint\\tostring', - 3 => 'phpunit\\framework\\constraint\\failuredescription', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/String/RegularExpression.php' => - array ( - 0 => '54c81243e6a9e2e997b476108919216001442aa9', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\regularexpression', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringEqualsStringIgnoringLineEndings.php' => - array ( - 0 => 'fc22c0fd6f94b910ec8a7f978f0a423fa06f5751', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\stringequalsstringignoringlineendings', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\matches', - 3 => 'phpunit\\framework\\constraint\\normalizelineendings', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringStartsWith.php' => - array ( - 0 => 'ef34fecf343687c0296b7f4a370aacd97892f7e5', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\stringstartswith', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/String/IsJson.php' => - array ( - 0 => '582323dc6d4a96589eb2fd8a64c275a5fca7e946', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\isjson', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\tostring', - 1 => 'phpunit\\framework\\constraint\\matches', - 2 => 'phpunit\\framework\\constraint\\failuredescription', - 3 => 'phpunit\\framework\\constraint\\determinejsonerror', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringMatchesFormatDescription.php' => - array ( - 0 => 'a52417ca5a531186ac369a1aa89ac28a3dbb341b', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\stringmatchesformatdescription', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\matches', - 3 => 'phpunit\\framework\\constraint\\failuredescription', - 4 => 'phpunit\\framework\\constraint\\additionalfailuredescription', - 5 => 'phpunit\\framework\\constraint\\regularexpressionforformatdescription', - 6 => 'phpunit\\framework\\constraint\\convertnewlines', - 7 => 'phpunit\\framework\\constraint\\differ', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringContains.php' => - array ( - 0 => '37fb984abc9a5b399c7bf5fcb88a00366db190a2', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\stringcontains', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\failuredescription', - 3 => 'phpunit\\framework\\constraint\\matches', - 4 => 'phpunit\\framework\\constraint\\getdetectedencoding', - 5 => 'phpunit\\framework\\constraint\\gethaystacklength', - 6 => 'phpunit\\framework\\constraint\\normalizelineendings', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringEndsWith.php' => - array ( - 0 => '0c51317a7d4429c4764ac531f880235a78eb5358', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\stringendswith', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionMessageIsOrContains.php' => - array ( - 0 => 'f4ed11a8a590468ae07ca6d95bf5406bd24be98a', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\exceptionmessageisorcontains', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\matches', - 3 => 'phpunit\\framework\\constraint\\failuredescription', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionMessageMatchesRegularExpression.php' => - array ( - 0 => 'f5e85f4179c13b1592195692d3472e1e265dd44b', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\exceptionmessagematchesregularexpression', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\matches', - 3 => 'phpunit\\framework\\constraint\\failuredescription', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Exception/Exception.php' => - array ( - 0 => 'f9725eec1c770c58b8b194a8809144ef003d32d8', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\exception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\matches', - 3 => 'phpunit\\framework\\constraint\\failuredescription', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Exception/ExceptionCode.php' => - array ( - 0 => 'e3673a5d7d980deeeb5c9a725681ab031b3d5b04', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\exceptioncode', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\matches', - 3 => 'phpunit\\framework\\constraint\\failuredescription', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Callback.php' => - array ( - 0 => 'ee3082c9d00b981b130dfc436689190165800811', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\callback', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\tostring', - 2 => 'phpunit\\framework\\constraint\\isvariadic', - 3 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalOr.php' => - array ( - 0 => '45dff4897570d72641495eea3baa77dd2f4519cd', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\logicalor', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\fromconstraints', - 1 => 'phpunit\\framework\\constraint\\operator', - 2 => 'phpunit\\framework\\constraint\\precedence', - 3 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalAnd.php' => - array ( - 0 => '981695e1566cf79bbbd8e309bb1da0f07f980e9a', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\logicaland', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\fromconstraints', - 1 => 'phpunit\\framework\\constraint\\operator', - 2 => 'phpunit\\framework\\constraint\\precedence', - 3 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalXor.php' => - array ( - 0 => '3fbd28a4d4fdf8280b141521fb2ad106cbc4c9c4', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\logicalxor', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\fromconstraints', - 1 => 'phpunit\\framework\\constraint\\operator', - 2 => 'phpunit\\framework\\constraint\\precedence', - 3 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/Operator.php' => - array ( - 0 => '4f55f903d95b9b531d039490564c0dc00087b840', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\operator', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\operator', - 1 => 'phpunit\\framework\\constraint\\precedence', - 2 => 'phpunit\\framework\\constraint\\arity', - 3 => 'phpunit\\framework\\constraint\\checkconstraint', - 4 => 'phpunit\\framework\\constraint\\constraintneedsparentheses', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/BinaryOperator.php' => - array ( - 0 => '5ff114906e227049477e129fcddeccf53133f474', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\binaryoperator', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\arity', - 2 => 'phpunit\\framework\\constraint\\tostring', - 3 => 'phpunit\\framework\\constraint\\count', - 4 => 'phpunit\\framework\\constraint\\constraints', - 5 => 'phpunit\\framework\\constraint\\constraintneedsparentheses', - 6 => 'phpunit\\framework\\constraint\\reduce', - 7 => 'phpunit\\framework\\constraint\\constrainttostring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalNot.php' => - array ( - 0 => 'a05860521554b048cae57e3dce6325cc4c2ad0dc', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\logicalnot', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\negate', - 1 => 'phpunit\\framework\\constraint\\operator', - 2 => 'phpunit\\framework\\constraint\\precedence', - 3 => 'phpunit\\framework\\constraint\\matches', - 4 => 'phpunit\\framework\\constraint\\transformstring', - 5 => 'phpunit\\framework\\constraint\\reduce', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/UnaryOperator.php' => - array ( - 0 => '4faeafb047c1e29c5e71978a44c4e40727251ffc', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\unaryoperator', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__construct', - 1 => 'phpunit\\framework\\constraint\\arity', - 2 => 'phpunit\\framework\\constraint\\tostring', - 3 => 'phpunit\\framework\\constraint\\count', - 4 => 'phpunit\\framework\\constraint\\failuredescription', - 5 => 'phpunit\\framework\\constraint\\transformstring', - 6 => 'phpunit\\framework\\constraint\\constraint', - 7 => 'phpunit\\framework\\constraint\\constraintneedsparentheses', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/CodeCoverage.php' => - array ( - 0 => '42e1a3d8360af53c61e5d7d88ff1f176c54481d4', - 1 => - array ( - 0 => 'phpunit\\runner\\codecoverage', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\instance', - 1 => 'phpunit\\runner\\init', - 2 => 'phpunit\\runner\\isactive', - 3 => 'phpunit\\runner\\codecoverage', - 4 => 'phpunit\\runner\\driver', - 5 => 'phpunit\\runner\\start', - 6 => 'phpunit\\runner\\stop', - 7 => 'phpunit\\runner\\deactivate', - 8 => 'phpunit\\runner\\generatereports', - 9 => 'phpunit\\runner\\activate', - 10 => 'phpunit\\runner\\codecoveragegenerationstart', - 11 => 'phpunit\\runner\\codecoveragegenerationsucceeded', - 12 => 'phpunit\\runner\\codecoveragegenerationfailed', - 13 => 'phpunit\\runner\\timer', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/GarbageCollection/GarbageCollectionHandler.php' => - array ( - 0 => '2d39e8e06d9d31e04b920d534a65029c6c192fdc', - 1 => - array ( - 0 => 'phpunit\\runner\\garbagecollection\\garbagecollectionhandler', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\garbagecollection\\__construct', - 1 => 'phpunit\\runner\\garbagecollection\\executionstarted', - 2 => 'phpunit\\runner\\garbagecollection\\executionfinished', - 3 => 'phpunit\\runner\\garbagecollection\\testfinished', - 4 => 'phpunit\\runner\\garbagecollection\\registersubscribers', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/GarbageCollection/Subscriber/ExecutionStartedSubscriber.php' => - array ( - 0 => '747bfdde70f2a05aaffdc255d738370807f15993', - 1 => - array ( - 0 => 'phpunit\\runner\\garbagecollection\\executionstartedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\garbagecollection\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/GarbageCollection/Subscriber/ExecutionFinishedSubscriber.php' => - array ( - 0 => 'bf07931c4e20deb1f2632b8f1c501c7a52af45b5', - 1 => - array ( - 0 => 'phpunit\\runner\\garbagecollection\\executionfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\garbagecollection\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/GarbageCollection/Subscriber/Subscriber.php' => - array ( - 0 => '62ef70d249d113f98df9022d20a313ee9641609f', - 1 => - array ( - 0 => 'phpunit\\runner\\garbagecollection\\subscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\garbagecollection\\__construct', - 1 => 'phpunit\\runner\\garbagecollection\\handler', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/GarbageCollection/Subscriber/TestFinishedSubscriber.php' => - array ( - 0 => '6d4ef5a25714e32f8705b760787da3dddd74e0f5', - 1 => - array ( - 0 => 'phpunit\\runner\\garbagecollection\\testfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\garbagecollection\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Extension/ExtensionBootstrapper.php' => - array ( - 0 => '3984e78877408e818d70ce669cb9ab3a59605efc', - 1 => - array ( - 0 => 'phpunit\\runner\\extension\\extensionbootstrapper', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\extension\\__construct', - 1 => 'phpunit\\runner\\extension\\bootstrap', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Extension/PharLoader.php' => - array ( - 0 => '26ea05d2b686e69ccf75cca884348aac86ce76ec', - 1 => - array ( - 0 => 'phpunit\\runner\\extension\\pharloader', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\extension\\loadpharextensionsindirectory', - 1 => 'phpunit\\runner\\extension\\phpunitversion', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Extension/ParameterCollection.php' => - array ( - 0 => '1d4c1a2162168f187807ccb1714716a8a661af89', - 1 => - array ( - 0 => 'phpunit\\runner\\extension\\parametercollection', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\extension\\fromarray', - 1 => 'phpunit\\runner\\extension\\__construct', - 2 => 'phpunit\\runner\\extension\\has', - 3 => 'phpunit\\runner\\extension\\get', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Extension/Extension.php' => - array ( - 0 => 'ef3bbf58892806f549f9dbbaea4f985bae44d54b', - 1 => - array ( - 0 => 'phpunit\\runner\\extension\\extension', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\extension\\bootstrap', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Extension/Facade.php' => - array ( - 0 => '20c5f0c5f2718e48745477d2a71aeccd30e394d8', - 1 => - array ( - 0 => 'phpunit\\runner\\extension\\facade', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\extension\\registersubscribers', - 1 => 'phpunit\\runner\\extension\\registersubscriber', - 2 => 'phpunit\\runner\\extension\\registertracer', - 3 => 'phpunit\\runner\\extension\\replaceoutput', - 4 => 'phpunit\\runner\\extension\\replacesoutput', - 5 => 'phpunit\\runner\\extension\\replaceprogressoutput', - 6 => 'phpunit\\runner\\extension\\replacesprogressoutput', - 7 => 'phpunit\\runner\\extension\\replaceresultoutput', - 8 => 'phpunit\\runner\\extension\\replacesresultoutput', - 9 => 'phpunit\\runner\\extension\\requirecodecoveragecollection', - 10 => 'phpunit\\runner\\extension\\requirescodecoveragecollection', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/HookMethod/HookMethodCollection.php' => - array ( - 0 => 'da6d25ec844f9be74cf89c2998c491193395d1a1', - 1 => - array ( - 0 => 'phpunit\\runner\\hookmethodcollection', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\defaultbeforeclass', - 1 => 'phpunit\\runner\\defaultbefore', - 2 => 'phpunit\\runner\\defaultprecondition', - 3 => 'phpunit\\runner\\defaultpostcondition', - 4 => 'phpunit\\runner\\defaultafter', - 5 => 'phpunit\\runner\\defaultafterclass', - 6 => 'phpunit\\runner\\__construct', - 7 => 'phpunit\\runner\\add', - 8 => 'phpunit\\runner\\methodnamessortedbypriority', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/HookMethod/HookMethod.php' => - array ( - 0 => 'e50648610e6b9647b7dc8745730a277e79f50a8f', - 1 => - array ( - 0 => 'phpunit\\runner\\hookmethod', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\__construct', - 1 => 'phpunit\\runner\\methodname', - 2 => 'phpunit\\runner\\priority', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/DeprecationCollector/Collector.php' => - array ( - 0 => '1239a4a4158a4b68efce3d1f16686c0ecc024555', - 1 => - array ( - 0 => 'phpunit\\runner\\deprecationcollector\\collector', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\deprecationcollector\\__construct', - 1 => 'phpunit\\runner\\deprecationcollector\\deprecations', - 2 => 'phpunit\\runner\\deprecationcollector\\filtereddeprecations', - 3 => 'phpunit\\runner\\deprecationcollector\\testprepared', - 4 => 'phpunit\\runner\\deprecationcollector\\testtriggereddeprecation', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/DeprecationCollector/Subscriber/TestTriggeredDeprecationSubscriber.php' => - array ( - 0 => 'c876302174cdd4975a13bd589509e279d75496b0', - 1 => - array ( - 0 => 'phpunit\\runner\\deprecationcollector\\testtriggereddeprecationsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\deprecationcollector\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/DeprecationCollector/Subscriber/TestPreparedSubscriber.php' => - array ( - 0 => 'd796c2ebaab424117de996542a08ed9fdc66ceef', - 1 => - array ( - 0 => 'phpunit\\runner\\deprecationcollector\\testpreparedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\deprecationcollector\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/DeprecationCollector/Subscriber/Subscriber.php' => - array ( - 0 => 'c9a5f0e04e15c99e68f8372202f771df0c8f30e8', - 1 => - array ( - 0 => 'phpunit\\runner\\deprecationcollector\\subscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\deprecationcollector\\__construct', - 1 => 'phpunit\\runner\\deprecationcollector\\collector', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/DeprecationCollector/Facade.php' => - array ( - 0 => '756e395a07d5c48022c27f945c311f1b81ec6ebd', - 1 => - array ( - 0 => 'phpunit\\runner\\deprecationcollector\\facade', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\deprecationcollector\\init', - 1 => 'phpunit\\runner\\deprecationcollector\\deprecations', - 2 => 'phpunit\\runner\\deprecationcollector\\filtereddeprecations', - 3 => 'phpunit\\runner\\deprecationcollector\\collector', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/PHPT/PhptTestCase.php' => - array ( - 0 => '88e8a00098977f977bff8ece722c71cba94d0796', - 1 => - array ( - 0 => 'phpunit\\runner\\phpttestcase', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\__construct', - 1 => 'phpunit\\runner\\count', - 2 => 'phpunit\\runner\\run', - 3 => 'phpunit\\runner\\getname', - 4 => 'phpunit\\runner\\tostring', - 5 => 'phpunit\\runner\\usesdataprovider', - 6 => 'phpunit\\runner\\numberofassertionsperformed', - 7 => 'phpunit\\runner\\output', - 8 => 'phpunit\\runner\\hasoutput', - 9 => 'phpunit\\runner\\sortid', - 10 => 'phpunit\\runner\\provides', - 11 => 'phpunit\\runner\\requires', - 12 => 'phpunit\\runner\\valueobjectforevents', - 13 => 'phpunit\\runner\\parseinisection', - 14 => 'phpunit\\runner\\parseenvsection', - 15 => 'phpunit\\runner\\assertphptexpectation', - 16 => 'phpunit\\runner\\shouldtestbeskipped', - 17 => 'phpunit\\runner\\shouldruninsubprocess', - 18 => 'phpunit\\runner\\runcodeinlocalsandbox', - 19 => 'phpunit\\runner\\runclean', - 20 => 'phpunit\\runner\\parse', - 21 => 'phpunit\\runner\\parseexternal', - 22 => 'phpunit\\runner\\validate', - 23 => 'phpunit\\runner\\render', - 24 => 'phpunit\\runner\\getcoveragefiles', - 25 => 'phpunit\\runner\\renderforcoverage', - 26 => 'phpunit\\runner\\cleanupforcoverage', - 27 => 'phpunit\\runner\\stringifyini', - 28 => 'phpunit\\runner\\getlocationhintfromdiff', - 29 => 'phpunit\\runner\\getcleandiffline', - 30 => 'phpunit\\runner\\getlocationhint', - 31 => 'phpunit\\runner\\settings', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Writer.php' => - array ( - 0 => 'ab4cd7e9909cf22f722a46aaa34b91bd167587bc', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\writer', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\baseline\\write', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Baseline.php' => - array ( - 0 => '56f74c1e3cc16aff409a3114760a8acb033547b9', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\baseline', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\baseline\\add', - 1 => 'phpunit\\runner\\baseline\\has', - 2 => 'phpunit\\runner\\baseline\\groupedbyfileandline', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Issue.php' => - array ( - 0 => '231c1e113695c340eb6cb1ef3a4fb5b2b01c59a3', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\issue', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\baseline\\from', - 1 => 'phpunit\\runner\\baseline\\__construct', - 2 => 'phpunit\\runner\\baseline\\file', - 3 => 'phpunit\\runner\\baseline\\line', - 4 => 'phpunit\\runner\\baseline\\hash', - 5 => 'phpunit\\runner\\baseline\\description', - 6 => 'phpunit\\runner\\baseline\\equals', - 7 => 'phpunit\\runner\\baseline\\calculatehash', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Reader.php' => - array ( - 0 => '5bf30b2f38f3a3660cd5e8b728671352c9139d99', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\reader', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\baseline\\read', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Subscriber/TestTriggeredNoticeSubscriber.php' => - array ( - 0 => '4235df1ec535696e9525caa7736e793610cc8b5e', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\testtriggerednoticesubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\baseline\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Subscriber/TestTriggeredWarningSubscriber.php' => - array ( - 0 => '34f2ae3c51397c3bcde8d2a91629e7ad19af5e43', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\testtriggeredwarningsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\baseline\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Subscriber/TestTriggeredDeprecationSubscriber.php' => - array ( - 0 => '5f753ee25774e397b8e9ce1ed948fc1ebbcfe1e6', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\testtriggereddeprecationsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\baseline\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Subscriber/TestTriggeredPhpDeprecationSubscriber.php' => - array ( - 0 => '64edaf67a744ff11fdba3a592c6e3cbded9e1fb4', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\testtriggeredphpdeprecationsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\baseline\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Subscriber/TestTriggeredPhpWarningSubscriber.php' => - array ( - 0 => '97a44ea024b2f415a790e1fe6145b73e1306673b', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\testtriggeredphpwarningsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\baseline\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Subscriber/Subscriber.php' => - array ( - 0 => '0b619539f3c34c4adc5db08303bb75ff62f2432b', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\subscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\baseline\\__construct', - 1 => 'phpunit\\runner\\baseline\\generator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Subscriber/TestTriggeredPhpNoticeSubscriber.php' => - array ( - 0 => '52ac4e04306292ed7b35a7662fe06abd0a6b9d0a', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\testtriggeredphpnoticesubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\baseline\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Generator.php' => - array ( - 0 => 'd32d2a7d03a4d74da3cf00e2e4dbd89981d03a4c', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\generator', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\baseline\\__construct', - 1 => 'phpunit\\runner\\baseline\\baseline', - 2 => 'phpunit\\runner\\baseline\\testtriggeredissue', - 3 => 'phpunit\\runner\\baseline\\restrict', - 4 => 'phpunit\\runner\\baseline\\issuppressionignored', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Exception/FileDoesNotHaveLineException.php' => - array ( - 0 => 'eb6103b85c93cfecd16be8b17cc4b798721fa14c', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\filedoesnothavelineexception', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\baseline\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/Exception/CannotLoadBaselineException.php' => - array ( - 0 => 'd7152a793344d1c8ab56069395b40bffd9337c92', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\cannotloadbaselineexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Baseline/RelativePathCalculator.php' => - array ( - 0 => '17a196e5ec5fdd8945ac6deaf89ecab8d56a79c5', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\relativepathcalculator', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\baseline\\__construct', - 1 => 'phpunit\\runner\\baseline\\calculate', - 2 => 'phpunit\\runner\\baseline\\parts', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/TestResult.php' => - array ( - 0 => '54da13dfbe848516d08fe9439a930e1efef9553d', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testresult', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\__construct', - 1 => 'phpunit\\testrunner\\testresult\\numberoftestsrun', - 2 => 'phpunit\\testrunner\\testresult\\numberofassertions', - 3 => 'phpunit\\testrunner\\testresult\\testerroredevents', - 4 => 'phpunit\\testrunner\\testresult\\numberoftesterroredevents', - 5 => 'phpunit\\testrunner\\testresult\\hastesterroredevents', - 6 => 'phpunit\\testrunner\\testresult\\testfailedevents', - 7 => 'phpunit\\testrunner\\testresult\\numberoftestfailedevents', - 8 => 'phpunit\\testrunner\\testresult\\hastestfailedevents', - 9 => 'phpunit\\testrunner\\testresult\\testconsideredriskyevents', - 10 => 'phpunit\\testrunner\\testresult\\numberoftestswithtestconsideredriskyevents', - 11 => 'phpunit\\testrunner\\testresult\\hastestconsideredriskyevents', - 12 => 'phpunit\\testrunner\\testresult\\testsuiteskippedevents', - 13 => 'phpunit\\testrunner\\testresult\\numberoftestsuiteskippedevents', - 14 => 'phpunit\\testrunner\\testresult\\hastestsuiteskippedevents', - 15 => 'phpunit\\testrunner\\testresult\\testskippedevents', - 16 => 'phpunit\\testrunner\\testresult\\numberoftestskippedevents', - 17 => 'phpunit\\testrunner\\testresult\\hastestskippedevents', - 18 => 'phpunit\\testrunner\\testresult\\testmarkedincompleteevents', - 19 => 'phpunit\\testrunner\\testresult\\numberoftestmarkedincompleteevents', - 20 => 'phpunit\\testrunner\\testresult\\hastestmarkedincompleteevents', - 21 => 'phpunit\\testrunner\\testresult\\testtriggeredphpunitdeprecationevents', - 22 => 'phpunit\\testrunner\\testresult\\numberoftestswithtesttriggeredphpunitdeprecationevents', - 23 => 'phpunit\\testrunner\\testresult\\hastesttriggeredphpunitdeprecationevents', - 24 => 'phpunit\\testrunner\\testresult\\testtriggeredphpuniterrorevents', - 25 => 'phpunit\\testrunner\\testresult\\numberoftestswithtesttriggeredphpuniterrorevents', - 26 => 'phpunit\\testrunner\\testresult\\hastesttriggeredphpuniterrorevents', - 27 => 'phpunit\\testrunner\\testresult\\testtriggeredphpunitwarningevents', - 28 => 'phpunit\\testrunner\\testresult\\numberoftestswithtesttriggeredphpunitwarningevents', - 29 => 'phpunit\\testrunner\\testresult\\hastesttriggeredphpunitwarningevents', - 30 => 'phpunit\\testrunner\\testresult\\testrunnertriggereddeprecationevents', - 31 => 'phpunit\\testrunner\\testresult\\numberoftestrunnertriggereddeprecationevents', - 32 => 'phpunit\\testrunner\\testresult\\hastestrunnertriggereddeprecationevents', - 33 => 'phpunit\\testrunner\\testresult\\testrunnertriggeredwarningevents', - 34 => 'phpunit\\testrunner\\testresult\\numberoftestrunnertriggeredwarningevents', - 35 => 'phpunit\\testrunner\\testresult\\hastestrunnertriggeredwarningevents', - 36 => 'phpunit\\testrunner\\testresult\\wassuccessful', - 37 => 'phpunit\\testrunner\\testresult\\wassuccessfulignoringphpunitwarnings', - 38 => 'phpunit\\testrunner\\testresult\\wassuccessfulandnotesthasissues', - 39 => 'phpunit\\testrunner\\testresult\\hastestswithissues', - 40 => 'phpunit\\testrunner\\testresult\\errors', - 41 => 'phpunit\\testrunner\\testresult\\deprecations', - 42 => 'phpunit\\testrunner\\testresult\\notices', - 43 => 'phpunit\\testrunner\\testresult\\warnings', - 44 => 'phpunit\\testrunner\\testresult\\phpdeprecations', - 45 => 'phpunit\\testrunner\\testresult\\phpnotices', - 46 => 'phpunit\\testrunner\\testresult\\phpwarnings', - 47 => 'phpunit\\testrunner\\testresult\\hastests', - 48 => 'phpunit\\testrunner\\testresult\\haserrors', - 49 => 'phpunit\\testrunner\\testresult\\numberoferrors', - 50 => 'phpunit\\testrunner\\testresult\\hasdeprecations', - 51 => 'phpunit\\testrunner\\testresult\\hasphporuserdeprecations', - 52 => 'phpunit\\testrunner\\testresult\\numberofphporuserdeprecations', - 53 => 'phpunit\\testrunner\\testresult\\hasphpunitdeprecations', - 54 => 'phpunit\\testrunner\\testresult\\numberofphpunitdeprecations', - 55 => 'phpunit\\testrunner\\testresult\\numberofdeprecations', - 56 => 'phpunit\\testrunner\\testresult\\hasnotices', - 57 => 'phpunit\\testrunner\\testresult\\numberofnotices', - 58 => 'phpunit\\testrunner\\testresult\\haswarnings', - 59 => 'phpunit\\testrunner\\testresult\\numberofwarnings', - 60 => 'phpunit\\testrunner\\testresult\\hasincompletetests', - 61 => 'phpunit\\testrunner\\testresult\\hasriskytests', - 62 => 'phpunit\\testrunner\\testresult\\hasskippedtests', - 63 => 'phpunit\\testrunner\\testresult\\hasissuesignoredbybaseline', - 64 => 'phpunit\\testrunner\\testresult\\numberofissuesignoredbybaseline', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Collector.php' => - array ( - 0 => 'f03ca6e4a370c3fef6a606ff7cb5bf215179f995', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\collector', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\__construct', - 1 => 'phpunit\\testrunner\\testresult\\result', - 2 => 'phpunit\\testrunner\\testresult\\executionstarted', - 3 => 'phpunit\\testrunner\\testresult\\testsuiteskipped', - 4 => 'phpunit\\testrunner\\testresult\\testsuitestarted', - 5 => 'phpunit\\testrunner\\testresult\\testsuitefinished', - 6 => 'phpunit\\testrunner\\testresult\\testprepared', - 7 => 'phpunit\\testrunner\\testresult\\testfinished', - 8 => 'phpunit\\testrunner\\testresult\\beforetestclassmethoderrored', - 9 => 'phpunit\\testrunner\\testresult\\aftertestclassmethoderrored', - 10 => 'phpunit\\testrunner\\testresult\\testerrored', - 11 => 'phpunit\\testrunner\\testresult\\testfailed', - 12 => 'phpunit\\testrunner\\testresult\\testmarkedincomplete', - 13 => 'phpunit\\testrunner\\testresult\\testskipped', - 14 => 'phpunit\\testrunner\\testresult\\testconsideredrisky', - 15 => 'phpunit\\testrunner\\testresult\\testtriggereddeprecation', - 16 => 'phpunit\\testrunner\\testresult\\testtriggeredphpdeprecation', - 17 => 'phpunit\\testrunner\\testresult\\testtriggeredphpunitdeprecation', - 18 => 'phpunit\\testrunner\\testresult\\testtriggerederror', - 19 => 'phpunit\\testrunner\\testresult\\testtriggerednotice', - 20 => 'phpunit\\testrunner\\testresult\\testtriggeredphpnotice', - 21 => 'phpunit\\testrunner\\testresult\\testtriggeredwarning', - 22 => 'phpunit\\testrunner\\testresult\\testtriggeredphpwarning', - 23 => 'phpunit\\testrunner\\testresult\\testtriggeredphpuniterror', - 24 => 'phpunit\\testrunner\\testresult\\testtriggeredphpunitwarning', - 25 => 'phpunit\\testrunner\\testresult\\testrunnertriggereddeprecation', - 26 => 'phpunit\\testrunner\\testresult\\testrunnertriggeredwarning', - 27 => 'phpunit\\testrunner\\testresult\\haserroredtests', - 28 => 'phpunit\\testrunner\\testresult\\hasfailedtests', - 29 => 'phpunit\\testrunner\\testresult\\hasriskytests', - 30 => 'phpunit\\testrunner\\testresult\\hasskippedtests', - 31 => 'phpunit\\testrunner\\testresult\\hasincompletetests', - 32 => 'phpunit\\testrunner\\testresult\\hasdeprecations', - 33 => 'phpunit\\testrunner\\testresult\\hasnotices', - 34 => 'phpunit\\testrunner\\testresult\\haswarnings', - 35 => 'phpunit\\testrunner\\testresult\\issueid', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Issue.php' => - array ( - 0 => '4781650e42c426b2b92d922992fa1db12504c127', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\issues\\issue', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\issues\\from', - 1 => 'phpunit\\testrunner\\testresult\\issues\\__construct', - 2 => 'phpunit\\testrunner\\testresult\\issues\\triggeredby', - 3 => 'phpunit\\testrunner\\testresult\\issues\\file', - 4 => 'phpunit\\testrunner\\testresult\\issues\\line', - 5 => 'phpunit\\testrunner\\testresult\\issues\\description', - 6 => 'phpunit\\testrunner\\testresult\\issues\\triggeringtests', - 7 => 'phpunit\\testrunner\\testresult\\issues\\hasstacktrace', - 8 => 'phpunit\\testrunner\\testresult\\issues\\stacktrace', - 9 => 'phpunit\\testrunner\\testresult\\issues\\triggeredintest', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestErroredSubscriber.php' => - array ( - 0 => 'a0df996e06e5382ee46739ff209536afab4a9ce6', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testerroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestConsideredRiskySubscriber.php' => - array ( - 0 => 'a9a1699cfbcebdf7fb9e9aa9c3a34c36b7f9afd6', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testconsideredriskysubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredNoticeSubscriber.php' => - array ( - 0 => 'ad80437d8bd8ea1420240a2e5218af6875641560', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testtriggerednoticesubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredPhpunitWarningSubscriber.php' => - array ( - 0 => '5a926bac9238018ce9deb92c155c1cedf87ce8d8', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testtriggeredphpunitwarningsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestFailedSubscriber.php' => - array ( - 0 => 'f962d0234cd132891bd077532fd5779bbcfad8f9', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredPhpunitErrorSubscriber.php' => - array ( - 0 => '04a31c20384cf26aa4ba1ea9be0876ffa007df96', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testtriggeredphpuniterrorsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestSuiteSkippedSubscriber.php' => - array ( - 0 => '978bf7a5921ee34dfb16d6489d24483edee9a64a', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testsuiteskippedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredWarningSubscriber.php' => - array ( - 0 => 'a676c034367fb1891216b2256677238b1ffabd45', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testtriggeredwarningsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/ExecutionStartedSubscriber.php' => - array ( - 0 => 'd5aca45e296d4a03c197b583710a4f4c263bce45', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\executionstartedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/BeforeTestClassMethodErroredSubscriber.php' => - array ( - 0 => 'a0dfeac2b6cc57c51e6f0ae154f3c0418f9c8013', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\beforetestclassmethoderroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestSuiteFinishedSubscriber.php' => - array ( - 0 => '3e5b95caee7d0a758f945443192eac12e915a09e', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testsuitefinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredDeprecationSubscriber.php' => - array ( - 0 => '1722f99e90fe9ca8a8a313c7bab246e74c225ae2', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testtriggereddeprecationsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredPhpDeprecationSubscriber.php' => - array ( - 0 => '508c0379fd534dd67e19657e13c4db7842192e86', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testtriggeredphpdeprecationsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestMarkedIncompleteSubscriber.php' => - array ( - 0 => '4a3d93ef7d5bab2880eb809bf6a865facdfbf5e6', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testmarkedincompletesubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestPreparedSubscriber.php' => - array ( - 0 => '3d5ae8f53e63f967c41cc51db1f18db2bf6c0f44', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testpreparedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestSuiteStartedSubscriber.php' => - array ( - 0 => '2bf565bd6f3fa5cb4c4bcc9aebca199379b5b623', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testsuitestartedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredPhpWarningSubscriber.php' => - array ( - 0 => '77b16e60978efbbdd0a09ad49204ccbc7a1dddcf', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testtriggeredphpwarningsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/AfterTestClassMethodErroredSubscriber.php' => - array ( - 0 => 'cd8e69ea7e7ab8c44d4132ccdfae594102bda2a2', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\aftertestclassmethoderroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/Subscriber.php' => - array ( - 0 => '72c70fa5ca76d2946c9786c0f8d8016d286cb687', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\subscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\__construct', - 1 => 'phpunit\\testrunner\\testresult\\collector', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestSkippedSubscriber.php' => - array ( - 0 => 'a74c445c3865a4a5fe037b6a6ef3d2c49e96b530', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testskippedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestFinishedSubscriber.php' => - array ( - 0 => '36b4da980af2fd24ae9daee61f5691f0300806e3', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredErrorSubscriber.php' => - array ( - 0 => '9a6959ddd650af06a886625e366e23024c398059', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testtriggerederrorsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredPhpunitDeprecationSubscriber.php' => - array ( - 0 => 'ef09a510226b097b804cf7cde0e87b7e95337b84', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testtriggeredphpunitdeprecationsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestRunnerTriggeredDeprecationSubscriber.php' => - array ( - 0 => 'bc4aaf7788186335820e06108d1859cc577b841b', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testrunnertriggereddeprecationsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestRunnerTriggeredWarningSubscriber.php' => - array ( - 0 => 'd24b8fb5a1514774e7029357253df473c2fee926', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testrunnertriggeredwarningsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredPhpNoticeSubscriber.php' => - array ( - 0 => '9fea2e1469fdc56815948f165ff0bd165fcd040c', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testtriggeredphpnoticesubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/PassedTests.php' => - array ( - 0 => '8ab13036866b58448baa6ea7b9813c06caff5b2d', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\passedtests', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\instance', - 1 => 'phpunit\\testrunner\\testresult\\testclasspassed', - 2 => 'phpunit\\testrunner\\testresult\\testmethodpassed', - 3 => 'phpunit\\testrunner\\testresult\\import', - 4 => 'phpunit\\testrunner\\testresult\\hastestclasspassed', - 5 => 'phpunit\\testrunner\\testresult\\hastestmethodpassed', - 6 => 'phpunit\\testrunner\\testresult\\isgreaterthan', - 7 => 'phpunit\\testrunner\\testresult\\returnvalue', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestResult/Facade.php' => - array ( - 0 => '8bd536dc20d1f336aa09cddf78fae8e03dfab777', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\facade', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\init', - 1 => 'phpunit\\testrunner\\testresult\\result', - 2 => 'phpunit\\testrunner\\testresult\\shouldstop', - 3 => 'phpunit\\testrunner\\testresult\\collector', - 4 => 'phpunit\\testrunner\\testresult\\stopondeprecation', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/IssueFilter.php' => - array ( - 0 => '4f3d8abe60453f250d22a4ba2e79754dc3cc05ed', - 1 => - array ( - 0 => 'phpunit\\testrunner\\issuefilter', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\__construct', - 1 => 'phpunit\\testrunner\\shouldbeprocessed', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Version.php' => - array ( - 0 => '8b36b6ab3acbb5db056cac55acf845ee1625fa29', - 1 => - array ( - 0 => 'phpunit\\runner\\version', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\id', - 1 => 'phpunit\\runner\\series', - 2 => 'phpunit\\runner\\majorversionnumber', - 3 => 'phpunit\\runner\\getversionstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestSuiteLoader.php' => - array ( - 0 => 'efe5814deb6b004bfb74b8c910aa9ceb70369694', - 1 => - array ( - 0 => 'phpunit\\runner\\testsuiteloader', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\load', - 1 => 'phpunit\\runner\\classnamefromfilename', - 2 => 'phpunit\\runner\\loadsuiteclassfile', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ErrorHandler.php' => - array ( - 0 => 'ec31dccf80bcd09221af713d853822b812856616', - 1 => - array ( - 0 => 'phpunit\\runner\\errorhandler', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\instance', - 1 => 'phpunit\\runner\\__construct', - 2 => 'phpunit\\runner\\__invoke', - 3 => 'phpunit\\runner\\enable', - 4 => 'phpunit\\runner\\disable', - 5 => 'phpunit\\runner\\usebaseline', - 6 => 'phpunit\\runner\\usedeprecationtriggers', - 7 => 'phpunit\\runner\\ignoredbybaseline', - 8 => 'phpunit\\runner\\trigger', - 9 => 'phpunit\\runner\\filteredstacktrace', - 10 => 'phpunit\\runner\\guessdeprecationframe', - 11 => 'phpunit\\runner\\errorstacktrace', - 12 => 'phpunit\\runner\\frameisfunction', - 13 => 'phpunit\\runner\\frameismethod', - 14 => 'phpunit\\runner\\stacktrace', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/TestSuiteSorter.php' => - array ( - 0 => '08bc237662d814bacb6c8ad6657e3dd37b842527', - 1 => - array ( - 0 => 'phpunit\\runner\\testsuitesorter', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\__construct', - 1 => 'phpunit\\runner\\reordertestsinsuite', - 2 => 'phpunit\\runner\\getoriginalexecutionorder', - 3 => 'phpunit\\runner\\getexecutionorder', - 4 => 'phpunit\\runner\\sort', - 5 => 'phpunit\\runner\\addsuitetodefectsortorder', - 6 => 'phpunit\\runner\\reverse', - 7 => 'phpunit\\runner\\randomize', - 8 => 'phpunit\\runner\\sortdefectsfirst', - 9 => 'phpunit\\runner\\sortbyduration', - 10 => 'phpunit\\runner\\sortbysize', - 11 => 'phpunit\\runner\\cmpdefectpriorityandtime', - 12 => 'phpunit\\runner\\cmpduration', - 13 => 'phpunit\\runner\\cmpsize', - 14 => 'phpunit\\runner\\resolvedependencies', - 15 => 'phpunit\\runner\\calculatetestexecutionorder', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Filter/Factory.php' => - array ( - 0 => 'd885ffa6990e862af0b1babb9d1bab0c5899fb65', - 1 => - array ( - 0 => 'phpunit\\runner\\filter\\factory', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\filter\\addtestidfilter', - 1 => 'phpunit\\runner\\filter\\addincludegroupfilter', - 2 => 'phpunit\\runner\\filter\\addexcludegroupfilter', - 3 => 'phpunit\\runner\\filter\\addincludenamefilter', - 4 => 'phpunit\\runner\\filter\\addexcludenamefilter', - 5 => 'phpunit\\runner\\filter\\factory', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Filter/IncludeGroupFilterIterator.php' => - array ( - 0 => 'b6f00ae478f2fb2e4f84947a01506612cbbb47fc', - 1 => - array ( - 0 => 'phpunit\\runner\\filter\\includegroupfilteriterator', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\filter\\doaccept', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Filter/GroupFilterIterator.php' => - array ( - 0 => '5c6189301c72cdddf9e56480ca0886457ea05615', - 1 => - array ( - 0 => 'phpunit\\runner\\filter\\groupfilteriterator', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\filter\\__construct', - 1 => 'phpunit\\runner\\filter\\accept', - 2 => 'phpunit\\runner\\filter\\doaccept', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Filter/IncludeNameFilterIterator.php' => - array ( - 0 => '0f6793f63a72575e560accd57bef8570c23181e7', - 1 => - array ( - 0 => 'phpunit\\runner\\filter\\includenamefilteriterator', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\filter\\doaccept', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Filter/NameFilterIterator.php' => - array ( - 0 => '627288ea754610018eef1b64ac8736a482ba4264', - 1 => - array ( - 0 => 'phpunit\\runner\\filter\\namefilteriterator', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\filter\\__construct', - 1 => 'phpunit\\runner\\filter\\accept', - 2 => 'phpunit\\runner\\filter\\doaccept', - 3 => 'phpunit\\runner\\filter\\preparefilter', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Filter/ExcludeNameFilterIterator.php' => - array ( - 0 => '62c18ae639d7fc364fa9fcd1e33d0afe9142219e', - 1 => - array ( - 0 => 'phpunit\\runner\\filter\\excludenamefilteriterator', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\filter\\doaccept', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Filter/ExcludeGroupFilterIterator.php' => - array ( - 0 => '5beca3fe195a7b21d3b9f3ef40b0272ecfd9e5d2', - 1 => - array ( - 0 => 'phpunit\\runner\\filter\\excludegroupfilteriterator', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\filter\\doaccept', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Filter/TestIdFilterIterator.php' => - array ( - 0 => '5db2e5487f7839ed2ee44867aab8fb7ae5b29ef6', - 1 => - array ( - 0 => 'phpunit\\runner\\filter\\testidfilteriterator', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\filter\\__construct', - 1 => 'phpunit\\runner\\filter\\accept', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/ErrorException.php' => - array ( - 0 => 'dd6f4873fb85566825400dd5649b21e1a0dee0d1', - 1 => - array ( - 0 => 'phpunit\\runner\\errorexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/UnsupportedPhptSectionException.php' => - array ( - 0 => '577dae245db27001e38e4a43917ae59543c1ffe2', - 1 => - array ( - 0 => 'phpunit\\runner\\unsupportedphptsectionexception', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/ClassDoesNotExtendTestCaseException.php' => - array ( - 0 => 'c02a73890af68f7c47bb06e95e12a42e7fe04570', - 1 => - array ( - 0 => 'phpunit\\runner\\classdoesnotextendtestcaseexception', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/ClassIsAbstractException.php' => - array ( - 0 => 'e24d4942908ffaed1af7769eae709049bb5059e6', - 1 => - array ( - 0 => 'phpunit\\runner\\classisabstractexception', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/FileDoesNotExistException.php' => - array ( - 0 => '12dba348025b49ab3155851d61df9b67e71493b8', - 1 => - array ( - 0 => 'phpunit\\runner\\filedoesnotexistexception', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/PhptExternalFileCannotBeLoadedException.php' => - array ( - 0 => 'd2b906a77ff3445e874e697cbf29926af641037c', - 1 => - array ( - 0 => 'phpunit\\runner\\phptexternalfilecannotbeloadedexception', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/InvalidPhptFileException.php' => - array ( - 0 => '90c666e76524a90dacfeb1f18261bbb4ef84dd6a', - 1 => - array ( - 0 => 'phpunit\\runner\\invalidphptfileexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/DirectoryDoesNotExistException.php' => - array ( - 0 => '754a25423f4c786cef50ba21f9f14dac7b4123bf', - 1 => - array ( - 0 => 'phpunit\\runner\\directorydoesnotexistexception', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/ParameterDoesNotExistException.php' => - array ( - 0 => '9246d8b3f311a5e71393f649ac695693e72725e7', - 1 => - array ( - 0 => 'phpunit\\runner\\parameterdoesnotexistexception', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/ClassCannotBeFoundException.php' => - array ( - 0 => '61c2de0a4b85168ebdf9bce84fd2e1b697a6ec9b', - 1 => - array ( - 0 => 'phpunit\\runner\\classcannotbefoundexception', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/Exception.php' => - array ( - 0 => '7054bf0ecb6a86f8168dc75c6f4bd08fcdbb71df', - 1 => - array ( - 0 => 'phpunit\\runner\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/Exception/InvalidOrderException.php' => - array ( - 0 => '56a5bde3a8b085da5fa8d7984fd56cf2ddbd9459', - 1 => - array ( - 0 => 'phpunit\\runner\\invalidorderexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/ResultCache.php' => - array ( - 0 => '3996b78a4f441ae7508b3632069bda66bba1e595', - 1 => - array ( - 0 => 'phpunit\\runner\\resultcache\\resultcache', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\resultcache\\setstatus', - 1 => 'phpunit\\runner\\resultcache\\status', - 2 => 'phpunit\\runner\\resultcache\\settime', - 3 => 'phpunit\\runner\\resultcache\\time', - 4 => 'phpunit\\runner\\resultcache\\load', - 5 => 'phpunit\\runner\\resultcache\\persist', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/NullResultCache.php' => - array ( - 0 => '852c36e0ef2992e7d3535a612db5bc505e5c3a3b', - 1 => - array ( - 0 => 'phpunit\\runner\\resultcache\\nullresultcache', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\resultcache\\setstatus', - 1 => 'phpunit\\runner\\resultcache\\status', - 2 => 'phpunit\\runner\\resultcache\\settime', - 3 => 'phpunit\\runner\\resultcache\\time', - 4 => 'phpunit\\runner\\resultcache\\load', - 5 => 'phpunit\\runner\\resultcache\\persist', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/DefaultResultCache.php' => - array ( - 0 => '8ab06d8f0b3dd9fb0eb884e854b9a4bfdcf2c99b', - 1 => - array ( - 0 => 'phpunit\\runner\\resultcache\\defaultresultcache', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\resultcache\\__construct', - 1 => 'phpunit\\runner\\resultcache\\setstatus', - 2 => 'phpunit\\runner\\resultcache\\status', - 3 => 'phpunit\\runner\\resultcache\\settime', - 4 => 'phpunit\\runner\\resultcache\\time', - 5 => 'phpunit\\runner\\resultcache\\mergewith', - 6 => 'phpunit\\runner\\resultcache\\load', - 7 => 'phpunit\\runner\\resultcache\\persist', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestErroredSubscriber.php' => - array ( - 0 => '19ead95535e9657070ec8e12ffa8db900b8773a4', - 1 => - array ( - 0 => 'phpunit\\runner\\resultcache\\testerroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\resultcache\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestConsideredRiskySubscriber.php' => - array ( - 0 => '077f3e2d7c36fe8dcdf8c49c6298c90e9942a832', - 1 => - array ( - 0 => 'phpunit\\runner\\resultcache\\testconsideredriskysubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\resultcache\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestFailedSubscriber.php' => - array ( - 0 => '3473b244a1dbf52787414e9b87cd424eeb3e9c37', - 1 => - array ( - 0 => 'phpunit\\runner\\resultcache\\testfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\resultcache\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestSuiteFinishedSubscriber.php' => - array ( - 0 => 'cd9fccd76386c14dff8bac0550e81f294a0702ff', - 1 => - array ( - 0 => 'phpunit\\runner\\resultcache\\testsuitefinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\resultcache\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestMarkedIncompleteSubscriber.php' => - array ( - 0 => 'be30729f47277c8207fed059086304744011ac9f', - 1 => - array ( - 0 => 'phpunit\\runner\\resultcache\\testmarkedincompletesubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\resultcache\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestPreparedSubscriber.php' => - array ( - 0 => 'c7842b40a264b07507ca0f474bb5e56382c072d9', - 1 => - array ( - 0 => 'phpunit\\runner\\resultcache\\testpreparedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\resultcache\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestSuiteStartedSubscriber.php' => - array ( - 0 => '4eb159369d392dd4540ce42ced5f265c834e653e', - 1 => - array ( - 0 => 'phpunit\\runner\\resultcache\\testsuitestartedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\resultcache\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/Subscriber.php' => - array ( - 0 => '5f668d4651205fbee1ca0e6be339a2624d2f2ccb', - 1 => - array ( - 0 => 'phpunit\\runner\\resultcache\\subscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\resultcache\\__construct', - 1 => 'phpunit\\runner\\resultcache\\handler', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestSkippedSubscriber.php' => - array ( - 0 => 'e35fe6320131f842be8874d7eebde33e48b9ad0d', - 1 => - array ( - 0 => 'phpunit\\runner\\resultcache\\testskippedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\resultcache\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/Subscriber/TestFinishedSubscriber.php' => - array ( - 0 => 'd3988c5d0dcf9486a859fdcb5cdf94490c34a1d6', - 1 => - array ( - 0 => 'phpunit\\runner\\resultcache\\testfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\resultcache\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Runner/ResultCache/ResultCacheHandler.php' => - array ( - 0 => 'ef1e42c6cd8556a02132b39bbb56f776b92910fd', - 1 => - array ( - 0 => 'phpunit\\runner\\resultcache\\resultcachehandler', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\resultcache\\__construct', - 1 => 'phpunit\\runner\\resultcache\\testsuitestarted', - 2 => 'phpunit\\runner\\resultcache\\testsuitefinished', - 3 => 'phpunit\\runner\\resultcache\\testprepared', - 4 => 'phpunit\\runner\\resultcache\\testmarkedincomplete', - 5 => 'phpunit\\runner\\resultcache\\testconsideredrisky', - 6 => 'phpunit\\runner\\resultcache\\testerrored', - 7 => 'phpunit\\runner\\resultcache\\testfailed', - 8 => 'phpunit\\runner\\resultcache\\testskipped', - 9 => 'phpunit\\runner\\resultcache\\testfinished', - 10 => 'phpunit\\runner\\resultcache\\duration', - 11 => 'phpunit\\runner\\resultcache\\registersubscribers', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Exception.php' => - array ( - 0 => 'e5000e38bae56fc2720fc6fef23404d4c205ae17', - 1 => - array ( - 0 => 'phpunit\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Tracer.php' => - array ( - 0 => 'f4a6fe8b355b5d22e07ccfe36f22ae461c38742c', - 1 => - array ( - 0 => 'phpunit\\event\\tracer\\tracer', - ), - 2 => - array ( - 0 => 'phpunit\\event\\tracer\\trace', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Emitter/DispatchingEmitter.php' => - array ( - 0 => 'ec01a0acadd9306c56e6ba1daf76a3b0875ec68a', - 1 => - array ( - 0 => 'phpunit\\event\\dispatchingemitter', - ), - 2 => - array ( - 0 => 'phpunit\\event\\__construct', - 1 => 'phpunit\\event\\applicationstarted', - 2 => 'phpunit\\event\\testrunnerstarted', - 3 => 'phpunit\\event\\testrunnerconfigured', - 4 => 'phpunit\\event\\testrunnerbootstrapfinished', - 5 => 'phpunit\\event\\testrunnerloadedextensionfromphar', - 6 => 'phpunit\\event\\testrunnerbootstrappedextension', - 7 => 'phpunit\\event\\dataprovidermethodcalled', - 8 => 'phpunit\\event\\dataprovidermethodfinished', - 9 => 'phpunit\\event\\testsuiteloaded', - 10 => 'phpunit\\event\\testsuitefiltered', - 11 => 'phpunit\\event\\testsuitesorted', - 12 => 'phpunit\\event\\testrunnereventfacadesealed', - 13 => 'phpunit\\event\\testrunnerexecutionstarted', - 14 => 'phpunit\\event\\testrunnerdisabledgarbagecollection', - 15 => 'phpunit\\event\\testrunnertriggeredgarbagecollection', - 16 => 'phpunit\\event\\testrunnerstartedchildprocess', - 17 => 'phpunit\\event\\testrunnerfinishedchildprocess', - 18 => 'phpunit\\event\\testsuiteskipped', - 19 => 'phpunit\\event\\testsuitestarted', - 20 => 'phpunit\\event\\testpreparationstarted', - 21 => 'phpunit\\event\\testpreparationfailed', - 22 => 'phpunit\\event\\testbeforefirsttestmethodcalled', - 23 => 'phpunit\\event\\testbeforefirsttestmethoderrored', - 24 => 'phpunit\\event\\testbeforefirsttestmethodfinished', - 25 => 'phpunit\\event\\testbeforetestmethodcalled', - 26 => 'phpunit\\event\\testbeforetestmethoderrored', - 27 => 'phpunit\\event\\testbeforetestmethodfinished', - 28 => 'phpunit\\event\\testpreconditioncalled', - 29 => 'phpunit\\event\\testpreconditionerrored', - 30 => 'phpunit\\event\\testpreconditionfinished', - 31 => 'phpunit\\event\\testprepared', - 32 => 'phpunit\\event\\testregisteredcomparator', - 33 => 'phpunit\\event\\testcreatedmockobject', - 34 => 'phpunit\\event\\testcreatedmockobjectforintersectionofinterfaces', - 35 => 'phpunit\\event\\testcreatedmockobjectfortrait', - 36 => 'phpunit\\event\\testcreatedmockobjectforabstractclass', - 37 => 'phpunit\\event\\testcreatedmockobjectfromwsdl', - 38 => 'phpunit\\event\\testcreatedpartialmockobject', - 39 => 'phpunit\\event\\testcreatedtestproxy', - 40 => 'phpunit\\event\\testcreatedstub', - 41 => 'phpunit\\event\\testcreatedstubforintersectionofinterfaces', - 42 => 'phpunit\\event\\testerrored', - 43 => 'phpunit\\event\\testfailed', - 44 => 'phpunit\\event\\testpassed', - 45 => 'phpunit\\event\\testconsideredrisky', - 46 => 'phpunit\\event\\testmarkedasincomplete', - 47 => 'phpunit\\event\\testskipped', - 48 => 'phpunit\\event\\testtriggeredphpunitdeprecation', - 49 => 'phpunit\\event\\testtriggeredphpdeprecation', - 50 => 'phpunit\\event\\testtriggereddeprecation', - 51 => 'phpunit\\event\\testtriggerederror', - 52 => 'phpunit\\event\\testtriggerednotice', - 53 => 'phpunit\\event\\testtriggeredphpnotice', - 54 => 'phpunit\\event\\testtriggeredwarning', - 55 => 'phpunit\\event\\testtriggeredphpwarning', - 56 => 'phpunit\\event\\testtriggeredphpuniterror', - 57 => 'phpunit\\event\\testtriggeredphpunitwarning', - 58 => 'phpunit\\event\\testprintedunexpectedoutput', - 59 => 'phpunit\\event\\testfinished', - 60 => 'phpunit\\event\\testpostconditioncalled', - 61 => 'phpunit\\event\\testpostconditionerrored', - 62 => 'phpunit\\event\\testpostconditionfinished', - 63 => 'phpunit\\event\\testaftertestmethodcalled', - 64 => 'phpunit\\event\\testaftertestmethoderrored', - 65 => 'phpunit\\event\\testaftertestmethodfinished', - 66 => 'phpunit\\event\\testafterlasttestmethodcalled', - 67 => 'phpunit\\event\\testafterlasttestmethoderrored', - 68 => 'phpunit\\event\\testafterlasttestmethodfinished', - 69 => 'phpunit\\event\\testsuitefinished', - 70 => 'phpunit\\event\\testrunnertriggereddeprecation', - 71 => 'phpunit\\event\\testrunnertriggeredwarning', - 72 => 'phpunit\\event\\testrunnerenabledgarbagecollection', - 73 => 'phpunit\\event\\testrunnerexecutionaborted', - 74 => 'phpunit\\event\\testrunnerexecutionfinished', - 75 => 'phpunit\\event\\testrunnerfinished', - 76 => 'phpunit\\event\\applicationfinished', - 77 => 'phpunit\\event\\telemetryinfo', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Emitter/Emitter.php' => - array ( - 0 => 'a9f352e97e73a32587eebcd6e2d67befac63e85c', - 1 => - array ( - 0 => 'phpunit\\event\\emitter', - ), - 2 => - array ( - 0 => 'phpunit\\event\\applicationstarted', - 1 => 'phpunit\\event\\testrunnerstarted', - 2 => 'phpunit\\event\\testrunnerconfigured', - 3 => 'phpunit\\event\\testrunnerbootstrapfinished', - 4 => 'phpunit\\event\\testrunnerloadedextensionfromphar', - 5 => 'phpunit\\event\\testrunnerbootstrappedextension', - 6 => 'phpunit\\event\\dataprovidermethodcalled', - 7 => 'phpunit\\event\\dataprovidermethodfinished', - 8 => 'phpunit\\event\\testsuiteloaded', - 9 => 'phpunit\\event\\testsuitefiltered', - 10 => 'phpunit\\event\\testsuitesorted', - 11 => 'phpunit\\event\\testrunnereventfacadesealed', - 12 => 'phpunit\\event\\testrunnerexecutionstarted', - 13 => 'phpunit\\event\\testrunnerdisabledgarbagecollection', - 14 => 'phpunit\\event\\testrunnertriggeredgarbagecollection', - 15 => 'phpunit\\event\\testsuiteskipped', - 16 => 'phpunit\\event\\testsuitestarted', - 17 => 'phpunit\\event\\testpreparationstarted', - 18 => 'phpunit\\event\\testpreparationfailed', - 19 => 'phpunit\\event\\testbeforefirsttestmethodcalled', - 20 => 'phpunit\\event\\testbeforefirsttestmethoderrored', - 21 => 'phpunit\\event\\testbeforefirsttestmethodfinished', - 22 => 'phpunit\\event\\testbeforetestmethodcalled', - 23 => 'phpunit\\event\\testbeforetestmethoderrored', - 24 => 'phpunit\\event\\testbeforetestmethodfinished', - 25 => 'phpunit\\event\\testpreconditioncalled', - 26 => 'phpunit\\event\\testpreconditionerrored', - 27 => 'phpunit\\event\\testpreconditionfinished', - 28 => 'phpunit\\event\\testprepared', - 29 => 'phpunit\\event\\testregisteredcomparator', - 30 => 'phpunit\\event\\testcreatedmockobject', - 31 => 'phpunit\\event\\testcreatedmockobjectforintersectionofinterfaces', - 32 => 'phpunit\\event\\testcreatedmockobjectfortrait', - 33 => 'phpunit\\event\\testcreatedmockobjectforabstractclass', - 34 => 'phpunit\\event\\testcreatedmockobjectfromwsdl', - 35 => 'phpunit\\event\\testcreatedpartialmockobject', - 36 => 'phpunit\\event\\testcreatedtestproxy', - 37 => 'phpunit\\event\\testcreatedstub', - 38 => 'phpunit\\event\\testcreatedstubforintersectionofinterfaces', - 39 => 'phpunit\\event\\testerrored', - 40 => 'phpunit\\event\\testfailed', - 41 => 'phpunit\\event\\testpassed', - 42 => 'phpunit\\event\\testconsideredrisky', - 43 => 'phpunit\\event\\testmarkedasincomplete', - 44 => 'phpunit\\event\\testskipped', - 45 => 'phpunit\\event\\testtriggeredphpunitdeprecation', - 46 => 'phpunit\\event\\testtriggeredphpdeprecation', - 47 => 'phpunit\\event\\testtriggereddeprecation', - 48 => 'phpunit\\event\\testtriggerederror', - 49 => 'phpunit\\event\\testtriggerednotice', - 50 => 'phpunit\\event\\testtriggeredphpnotice', - 51 => 'phpunit\\event\\testtriggeredwarning', - 52 => 'phpunit\\event\\testtriggeredphpwarning', - 53 => 'phpunit\\event\\testtriggeredphpuniterror', - 54 => 'phpunit\\event\\testtriggeredphpunitwarning', - 55 => 'phpunit\\event\\testprintedunexpectedoutput', - 56 => 'phpunit\\event\\testfinished', - 57 => 'phpunit\\event\\testpostconditioncalled', - 58 => 'phpunit\\event\\testpostconditionerrored', - 59 => 'phpunit\\event\\testpostconditionfinished', - 60 => 'phpunit\\event\\testaftertestmethodcalled', - 61 => 'phpunit\\event\\testaftertestmethoderrored', - 62 => 'phpunit\\event\\testaftertestmethodfinished', - 63 => 'phpunit\\event\\testafterlasttestmethodcalled', - 64 => 'phpunit\\event\\testafterlasttestmethoderrored', - 65 => 'phpunit\\event\\testafterlasttestmethodfinished', - 66 => 'phpunit\\event\\testsuitefinished', - 67 => 'phpunit\\event\\testrunnerstartedchildprocess', - 68 => 'phpunit\\event\\testrunnerfinishedchildprocess', - 69 => 'phpunit\\event\\testrunnertriggereddeprecation', - 70 => 'phpunit\\event\\testrunnertriggeredwarning', - 71 => 'phpunit\\event\\testrunnerenabledgarbagecollection', - 72 => 'phpunit\\event\\testrunnerexecutionaborted', - 73 => 'phpunit\\event\\testrunnerexecutionfinished', - 74 => 'phpunit\\event\\testrunnerfinished', - 75 => 'phpunit\\event\\applicationfinished', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Dispatcher/CollectingDispatcher.php' => - array ( - 0 => '6279ec088efc0e8b75ebe1cb2033d43655c22864', - 1 => - array ( - 0 => 'phpunit\\event\\collectingdispatcher', - ), - 2 => - array ( - 0 => 'phpunit\\event\\__construct', - 1 => 'phpunit\\event\\dispatch', - 2 => 'phpunit\\event\\flush', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Dispatcher/Dispatcher.php' => - array ( - 0 => '07297689376316d826b926d9ea8193865cc3b680', - 1 => - array ( - 0 => 'phpunit\\event\\dispatcher', - ), - 2 => - array ( - 0 => 'phpunit\\event\\dispatch', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Dispatcher/DeferringDispatcher.php' => - array ( - 0 => 'e55191b2209ecb9374d7b9a1f25ee75b70d35b3e', - 1 => - array ( - 0 => 'phpunit\\event\\deferringdispatcher', - ), - 2 => - array ( - 0 => 'phpunit\\event\\__construct', - 1 => 'phpunit\\event\\registertracer', - 2 => 'phpunit\\event\\registersubscriber', - 3 => 'phpunit\\event\\dispatch', - 4 => 'phpunit\\event\\flush', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Dispatcher/SubscribableDispatcher.php' => - array ( - 0 => 'd6d572d61a928b5fa0c4c82727d143748b7ec557', - 1 => - array ( - 0 => 'phpunit\\event\\subscribabledispatcher', - ), - 2 => - array ( - 0 => 'phpunit\\event\\registersubscriber', - 1 => 'phpunit\\event\\registertracer', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Dispatcher/DirectDispatcher.php' => - array ( - 0 => '1466a378735a040da975f47d31b2a13d087efea3', - 1 => - array ( - 0 => 'phpunit\\event\\directdispatcher', - ), - 2 => - array ( - 0 => 'phpunit\\event\\__construct', - 1 => 'phpunit\\event\\registertracer', - 2 => 'phpunit\\event\\registersubscriber', - 3 => 'phpunit\\event\\dispatch', - 4 => 'phpunit\\event\\handlethrowable', - 5 => 'phpunit\\event\\isthrowablefromthirdpartysubscriber', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestData/DataFromDataProvider.php' => - array ( - 0 => '533b3be9024a8f178cb746dd9a3c7b631475e923', - 1 => - array ( - 0 => 'phpunit\\event\\testdata\\datafromdataprovider', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testdata\\from', - 1 => 'phpunit\\event\\testdata\\__construct', - 2 => 'phpunit\\event\\testdata\\datasetname', - 3 => 'phpunit\\event\\testdata\\dataasstringforresultoutput', - 4 => 'phpunit\\event\\testdata\\isfromdataprovider', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestData/TestDataCollectionIterator.php' => - array ( - 0 => 'f2d6fb89c814d410455fa0505a815fbbead473ce', - 1 => - array ( - 0 => 'phpunit\\event\\testdata\\testdatacollectioniterator', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testdata\\__construct', - 1 => 'phpunit\\event\\testdata\\rewind', - 2 => 'phpunit\\event\\testdata\\valid', - 3 => 'phpunit\\event\\testdata\\key', - 4 => 'phpunit\\event\\testdata\\current', - 5 => 'phpunit\\event\\testdata\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestData/TestDataCollection.php' => - array ( - 0 => '6a6479c8cca6d2c2d5ff02b532b85b4a94fb6ef2', - 1 => - array ( - 0 => 'phpunit\\event\\testdata\\testdatacollection', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testdata\\fromarray', - 1 => 'phpunit\\event\\testdata\\__construct', - 2 => 'phpunit\\event\\testdata\\asarray', - 3 => 'phpunit\\event\\testdata\\count', - 4 => 'phpunit\\event\\testdata\\hasdatafromdataprovider', - 5 => 'phpunit\\event\\testdata\\datafromdataprovider', - 6 => 'phpunit\\event\\testdata\\getiterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestData/TestData.php' => - array ( - 0 => 'b6508816c59d373d756baaa76ec43c22a9fddee7', - 1 => - array ( - 0 => 'phpunit\\event\\testdata\\testdata', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testdata\\__construct', - 1 => 'phpunit\\event\\testdata\\data', - 2 => 'phpunit\\event\\testdata\\isfromdataprovider', - 3 => 'phpunit\\event\\testdata\\isfromtestdependency', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestData/DataFromTestDependency.php' => - array ( - 0 => '8f4c2f91fed3d5a363c7b68cc82aee60b67d92ba', - 1 => - array ( - 0 => 'phpunit\\event\\testdata\\datafromtestdependency', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testdata\\from', - 1 => 'phpunit\\event\\testdata\\isfromtestdependency', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestMethod.php' => - array ( - 0 => '30c6cdd7f491c7f82e8eb9e7e888286cf37978fa', - 1 => - array ( - 0 => 'phpunit\\event\\code\\testmethod', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\__construct', - 1 => 'phpunit\\event\\code\\classname', - 2 => 'phpunit\\event\\code\\methodname', - 3 => 'phpunit\\event\\code\\line', - 4 => 'phpunit\\event\\code\\testdox', - 5 => 'phpunit\\event\\code\\metadata', - 6 => 'phpunit\\event\\code\\testdata', - 7 => 'phpunit\\event\\code\\istestmethod', - 8 => 'phpunit\\event\\code\\id', - 9 => 'phpunit\\event\\code\\namewithclass', - 10 => 'phpunit\\event\\code\\name', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestDox.php' => - array ( - 0 => '6e4658da08c4b0d68ccb304c7e2ab6514b122bb3', - 1 => - array ( - 0 => 'phpunit\\event\\code\\testdox', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\__construct', - 1 => 'phpunit\\event\\code\\prettifiedclassname', - 2 => 'phpunit\\event\\code\\prettifiedmethodname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestDoxBuilder.php' => - array ( - 0 => 'a55917f182bd014d13d66f6bf842e6aaf07cef19', - 1 => - array ( - 0 => 'phpunit\\event\\code\\testdoxbuilder', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\fromtestcase', - 1 => 'phpunit\\event\\code\\fromclassnameandmethodname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestCollection.php' => - array ( - 0 => 'e831b9c0a0aec1695f8877b7153f55bb4d4275de', - 1 => - array ( - 0 => 'phpunit\\event\\code\\testcollection', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\fromarray', - 1 => 'phpunit\\event\\code\\__construct', - 2 => 'phpunit\\event\\code\\asarray', - 3 => 'phpunit\\event\\code\\count', - 4 => 'phpunit\\event\\code\\getiterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/Test.php' => - array ( - 0 => '72c759792bc90a2efda2b04c86eb614868f168ee', - 1 => - array ( - 0 => 'phpunit\\event\\code\\test', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\__construct', - 1 => 'phpunit\\event\\code\\file', - 2 => 'phpunit\\event\\code\\istestmethod', - 3 => 'phpunit\\event\\code\\isphpt', - 4 => 'phpunit\\event\\code\\id', - 5 => 'phpunit\\event\\code\\name', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/Issue/UnknownTrigger.php' => - array ( - 0 => '0a279b28b6a84add321a73fc2404175ed0a9a1f7', - 1 => - array ( - 0 => 'phpunit\\event\\code\\issuetrigger\\unknowntrigger', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\issuetrigger\\isunknown', - 1 => 'phpunit\\event\\code\\issuetrigger\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/Issue/TestTrigger.php' => - array ( - 0 => '9485f03d0b0bb8071ba7f6a8ff349680a075e02f', - 1 => - array ( - 0 => 'phpunit\\event\\code\\issuetrigger\\testtrigger', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\issuetrigger\\istest', - 1 => 'phpunit\\event\\code\\issuetrigger\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/Issue/DirectTrigger.php' => - array ( - 0 => 'ca9a2c26cf901c08669c01650a01e424d3ce6b14', - 1 => - array ( - 0 => 'phpunit\\event\\code\\issuetrigger\\directtrigger', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\issuetrigger\\isdirect', - 1 => 'phpunit\\event\\code\\issuetrigger\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/Issue/IssueTrigger.php' => - array ( - 0 => '294963f207b4c801eb7e8b8512589138ac1c9313', - 1 => - array ( - 0 => 'phpunit\\event\\code\\issuetrigger\\issuetrigger', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\issuetrigger\\test', - 1 => 'phpunit\\event\\code\\issuetrigger\\self', - 2 => 'phpunit\\event\\code\\issuetrigger\\direct', - 3 => 'phpunit\\event\\code\\issuetrigger\\indirect', - 4 => 'phpunit\\event\\code\\issuetrigger\\unknown', - 5 => 'phpunit\\event\\code\\issuetrigger\\__construct', - 6 => 'phpunit\\event\\code\\issuetrigger\\istest', - 7 => 'phpunit\\event\\code\\issuetrigger\\isself', - 8 => 'phpunit\\event\\code\\issuetrigger\\isdirect', - 9 => 'phpunit\\event\\code\\issuetrigger\\isindirect', - 10 => 'phpunit\\event\\code\\issuetrigger\\isunknown', - 11 => 'phpunit\\event\\code\\issuetrigger\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/Issue/SelfTrigger.php' => - array ( - 0 => 'ec7b8378e1a02891da32cc087032d7b8ac68708e', - 1 => - array ( - 0 => 'phpunit\\event\\code\\issuetrigger\\selftrigger', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\issuetrigger\\isself', - 1 => 'phpunit\\event\\code\\issuetrigger\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/Issue/IndirectTrigger.php' => - array ( - 0 => '2f389deaeacb1501a678026b50e1463b586f6b54', - 1 => - array ( - 0 => 'phpunit\\event\\code\\issuetrigger\\indirecttrigger', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\issuetrigger\\isindirect', - 1 => 'phpunit\\event\\code\\issuetrigger\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/Phpt.php' => - array ( - 0 => '2dc3bacb1cffaea704db86d7baf0633336bac4bb', - 1 => - array ( - 0 => 'phpunit\\event\\code\\phpt', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\isphpt', - 1 => 'phpunit\\event\\code\\id', - 2 => 'phpunit\\event\\code\\name', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestCollectionIterator.php' => - array ( - 0 => '766a4ec81c68c4fd11afeeb89384f27845a9d704', - 1 => - array ( - 0 => 'phpunit\\event\\code\\testcollectioniterator', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\__construct', - 1 => 'phpunit\\event\\code\\rewind', - 2 => 'phpunit\\event\\code\\valid', - 3 => 'phpunit\\event\\code\\key', - 4 => 'phpunit\\event\\code\\current', - 5 => 'phpunit\\event\\code\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Test/TestMethodBuilder.php' => - array ( - 0 => '7fbb9aa559d2736bc328a0b2627a634fc15b7670', - 1 => - array ( - 0 => 'phpunit\\event\\code\\testmethodbuilder', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\fromtestcase', - 1 => 'phpunit\\event\\code\\fromcallstack', - 2 => 'phpunit\\event\\code\\datafor', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/TestSuite/TestSuiteWithName.php' => - array ( - 0 => '675816e23db87f3070960e2e0887bc7524e614dd', - 1 => - array ( - 0 => 'phpunit\\event\\testsuite\\testsuitewithname', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testsuite\\iswithname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/TestSuite/TestSuite.php' => - array ( - 0 => 'fa8924dd235ad544dc4abe4054d9010749851d00', - 1 => - array ( - 0 => 'phpunit\\event\\testsuite\\testsuite', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testsuite\\__construct', - 1 => 'phpunit\\event\\testsuite\\name', - 2 => 'phpunit\\event\\testsuite\\count', - 3 => 'phpunit\\event\\testsuite\\tests', - 4 => 'phpunit\\event\\testsuite\\iswithname', - 5 => 'phpunit\\event\\testsuite\\isfortestclass', - 6 => 'phpunit\\event\\testsuite\\isfortestmethodwithdataprovider', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/TestSuite/TestSuiteForTestMethodWithDataProvider.php' => - array ( - 0 => 'a78f06db904da311c949555c9af2523d8a991339', - 1 => - array ( - 0 => 'phpunit\\event\\testsuite\\testsuitefortestmethodwithdataprovider', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testsuite\\__construct', - 1 => 'phpunit\\event\\testsuite\\classname', - 2 => 'phpunit\\event\\testsuite\\methodname', - 3 => 'phpunit\\event\\testsuite\\file', - 4 => 'phpunit\\event\\testsuite\\line', - 5 => 'phpunit\\event\\testsuite\\isfortestmethodwithdataprovider', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/TestSuite/TestSuiteForTestClass.php' => - array ( - 0 => 'e51dacaf43c6a9e4bcfbb8724ceae1ad8c37c7c5', - 1 => - array ( - 0 => 'phpunit\\event\\testsuite\\testsuitefortestclass', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testsuite\\__construct', - 1 => 'phpunit\\event\\testsuite\\classname', - 2 => 'phpunit\\event\\testsuite\\file', - 3 => 'phpunit\\event\\testsuite\\line', - 4 => 'phpunit\\event\\testsuite\\isfortestclass', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/TestSuite/TestSuiteBuilder.php' => - array ( - 0 => '7779b6c4671513324699b5b1b06180a47fbf0742', - 1 => - array ( - 0 => 'phpunit\\event\\testsuite\\testsuitebuilder', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testsuite\\from', - 1 => 'phpunit\\event\\testsuite\\process', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/ClassMethod.php' => - array ( - 0 => '28440ac523d3bcef7445519c84416cd2eaa13fa0', - 1 => - array ( - 0 => 'phpunit\\event\\code\\classmethod', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\__construct', - 1 => 'phpunit\\event\\code\\classname', - 2 => 'phpunit\\event\\code\\methodname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/ThrowableBuilder.php' => - array ( - 0 => 'c66224903361d90c5bdb49d882ba13a9d3a74dad', - 1 => - array ( - 0 => 'phpunit\\event\\code\\throwablebuilder', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\from', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Runtime/Runtime.php' => - array ( - 0 => '87d1a60c6ada4787a7283d1d815d579c9d896c52', - 1 => - array ( - 0 => 'phpunit\\event\\runtime\\runtime', - ), - 2 => - array ( - 0 => 'phpunit\\event\\runtime\\__construct', - 1 => 'phpunit\\event\\runtime\\asstring', - 2 => 'phpunit\\event\\runtime\\operatingsystem', - 3 => 'phpunit\\event\\runtime\\php', - 4 => 'phpunit\\event\\runtime\\phpunit', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Runtime/OperatingSystem.php' => - array ( - 0 => '500fe94b041ab861781c2a91786975a9286ed969', - 1 => - array ( - 0 => 'phpunit\\event\\runtime\\operatingsystem', - ), - 2 => - array ( - 0 => 'phpunit\\event\\runtime\\__construct', - 1 => 'phpunit\\event\\runtime\\operatingsystem', - 2 => 'phpunit\\event\\runtime\\operatingsystemfamily', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Runtime/PHPUnit.php' => - array ( - 0 => '44f1d5185f8ea3e681ef4a778d3484e5ea1c5d3c', - 1 => - array ( - 0 => 'phpunit\\event\\runtime\\phpunit', - ), - 2 => - array ( - 0 => 'phpunit\\event\\runtime\\__construct', - 1 => 'phpunit\\event\\runtime\\versionid', - 2 => 'phpunit\\event\\runtime\\releaseseries', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Runtime/PHP.php' => - array ( - 0 => 'd0b4a3711a376deae11cecd46a847de1327a084c', - 1 => - array ( - 0 => 'phpunit\\event\\runtime\\php', - ), - 2 => - array ( - 0 => 'phpunit\\event\\runtime\\__construct', - 1 => 'phpunit\\event\\runtime\\version', - 2 => 'phpunit\\event\\runtime\\sapi', - 3 => 'phpunit\\event\\runtime\\majorversion', - 4 => 'phpunit\\event\\runtime\\minorversion', - 5 => 'phpunit\\event\\runtime\\releaseversion', - 6 => 'phpunit\\event\\runtime\\extraversion', - 7 => 'phpunit\\event\\runtime\\versionid', - 8 => 'phpunit\\event\\runtime\\extensions', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/ComparisonFailureBuilder.php' => - array ( - 0 => '7f9b6614920755c4c5313059db9a3523b18aa2d7', - 1 => - array ( - 0 => 'phpunit\\event\\code\\comparisonfailurebuilder', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\from', - 1 => 'phpunit\\event\\code\\mapscalarvaluetostring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/Info.php' => - array ( - 0 => '6613b4330aab5c78848f9fb32bc1ec9f8d175d12', - 1 => - array ( - 0 => 'phpunit\\event\\telemetry\\info', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetry\\__construct', - 1 => 'phpunit\\event\\telemetry\\time', - 2 => 'phpunit\\event\\telemetry\\memoryusage', - 3 => 'phpunit\\event\\telemetry\\peakmemoryusage', - 4 => 'phpunit\\event\\telemetry\\durationsincestart', - 5 => 'phpunit\\event\\telemetry\\memoryusagesincestart', - 6 => 'phpunit\\event\\telemetry\\durationsinceprevious', - 7 => 'phpunit\\event\\telemetry\\memoryusagesinceprevious', - 8 => 'phpunit\\event\\telemetry\\garbagecollectorstatus', - 9 => 'phpunit\\event\\telemetry\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/GarbageCollectorStatus.php' => - array ( - 0 => '36044d867bc03c66adddeaa6e9da798088a5c24f', - 1 => - array ( - 0 => 'phpunit\\event\\telemetry\\garbagecollectorstatus', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetry\\__construct', - 1 => 'phpunit\\event\\telemetry\\runs', - 2 => 'phpunit\\event\\telemetry\\collected', - 3 => 'phpunit\\event\\telemetry\\threshold', - 4 => 'phpunit\\event\\telemetry\\roots', - 5 => 'phpunit\\event\\telemetry\\hasextendedinformation', - 6 => 'phpunit\\event\\telemetry\\applicationtime', - 7 => 'phpunit\\event\\telemetry\\collectortime', - 8 => 'phpunit\\event\\telemetry\\destructortime', - 9 => 'phpunit\\event\\telemetry\\freetime', - 10 => 'phpunit\\event\\telemetry\\isrunning', - 11 => 'phpunit\\event\\telemetry\\isprotected', - 12 => 'phpunit\\event\\telemetry\\isfull', - 13 => 'phpunit\\event\\telemetry\\buffersize', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/StopWatch.php' => - array ( - 0 => '24263b312210de2671bbc70a14c2ed9316278023', - 1 => - array ( - 0 => 'phpunit\\event\\telemetry\\stopwatch', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetry\\current', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/SystemStopWatch.php' => - array ( - 0 => '0ff2b19019c2aed3a3e5799096ea95207fb12be4', - 1 => - array ( - 0 => 'phpunit\\event\\telemetry\\systemstopwatch', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetry\\current', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/HRTime.php' => - array ( - 0 => 'c627e35eea9d280be979f61a9aab0f9e777e60fb', - 1 => - array ( - 0 => 'phpunit\\event\\telemetry\\hrtime', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetry\\fromsecondsandnanoseconds', - 1 => 'phpunit\\event\\telemetry\\__construct', - 2 => 'phpunit\\event\\telemetry\\seconds', - 3 => 'phpunit\\event\\telemetry\\nanoseconds', - 4 => 'phpunit\\event\\telemetry\\duration', - 5 => 'phpunit\\event\\telemetry\\ensurenotnegative', - 6 => 'phpunit\\event\\telemetry\\ensurenanosecondsinrange', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/Snapshot.php' => - array ( - 0 => '9f1fa2ca96cd86afd8f2a2315b43c16600aeb841', - 1 => - array ( - 0 => 'phpunit\\event\\telemetry\\snapshot', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetry\\__construct', - 1 => 'phpunit\\event\\telemetry\\time', - 2 => 'phpunit\\event\\telemetry\\memoryusage', - 3 => 'phpunit\\event\\telemetry\\peakmemoryusage', - 4 => 'phpunit\\event\\telemetry\\garbagecollectorstatus', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/SystemMemoryMeter.php' => - array ( - 0 => '41316410dac11b8092cc0258e23ccff73c915982', - 1 => - array ( - 0 => 'phpunit\\event\\telemetry\\systemmemorymeter', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetry\\memoryusage', - 1 => 'phpunit\\event\\telemetry\\peakmemoryusage', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/GarbageCollectorStatusProvider.php' => - array ( - 0 => '7089792fed3262169a6e4eae1130b355015eb817', - 1 => - array ( - 0 => 'phpunit\\event\\telemetry\\garbagecollectorstatusprovider', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetry\\status', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/System.php' => - array ( - 0 => '133c6033d3f2b22b01222d63b67bd44efa21646b', - 1 => - array ( - 0 => 'phpunit\\event\\telemetry\\system', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetry\\__construct', - 1 => 'phpunit\\event\\telemetry\\snapshot', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/MemoryMeter.php' => - array ( - 0 => '1834da0e1a0f2c324f74635013d0be3a0624d834', - 1 => - array ( - 0 => 'phpunit\\event\\telemetry\\memorymeter', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetry\\memoryusage', - 1 => 'phpunit\\event\\telemetry\\peakmemoryusage', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/Php81GarbageCollectorStatusProvider.php' => - array ( - 0 => 'dc341c569727529ce3a5c1fa3758ee47fcc4319d', - 1 => - array ( - 0 => 'phpunit\\event\\telemetry\\php81garbagecollectorstatusprovider', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetry\\status', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/MemoryUsage.php' => - array ( - 0 => 'ba040f908d2bbfc8bc7c272b598f9a69f99d82c8', - 1 => - array ( - 0 => 'phpunit\\event\\telemetry\\memoryusage', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetry\\frombytes', - 1 => 'phpunit\\event\\telemetry\\__construct', - 2 => 'phpunit\\event\\telemetry\\bytes', - 3 => 'phpunit\\event\\telemetry\\diff', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/Php83GarbageCollectorStatusProvider.php' => - array ( - 0 => 'a9156114c0f938d1c5d7ee9f096b1e138f4b9aba', - 1 => - array ( - 0 => 'phpunit\\event\\telemetry\\php83garbagecollectorstatusprovider', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetry\\status', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/SystemStopWatchWithOffset.php' => - array ( - 0 => 'c84e019b6ea5b63b5a6047978d0a2e4f4803437b', - 1 => - array ( - 0 => 'phpunit\\event\\telemetry\\systemstopwatchwithoffset', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetry\\__construct', - 1 => 'phpunit\\event\\telemetry\\current', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Telemetry/Duration.php' => - array ( - 0 => '6aa3f35ddf4dbde71249a5dd087a37ddfc67ac52', - 1 => - array ( - 0 => 'phpunit\\event\\telemetry\\duration', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetry\\fromsecondsandnanoseconds', - 1 => 'phpunit\\event\\telemetry\\__construct', - 2 => 'phpunit\\event\\telemetry\\seconds', - 3 => 'phpunit\\event\\telemetry\\nanoseconds', - 4 => 'phpunit\\event\\telemetry\\asfloat', - 5 => 'phpunit\\event\\telemetry\\asstring', - 6 => 'phpunit\\event\\telemetry\\equals', - 7 => 'phpunit\\event\\telemetry\\islessthan', - 8 => 'phpunit\\event\\telemetry\\isgreaterthan', - 9 => 'phpunit\\event\\telemetry\\ensurenotnegative', - 10 => 'phpunit\\event\\telemetry\\ensurenanosecondsinrange', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/ComparisonFailure.php' => - array ( - 0 => '5d2fd8cb193649f6a92bed08b609886e4d3f1141', - 1 => - array ( - 0 => 'phpunit\\event\\code\\comparisonfailure', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\__construct', - 1 => 'phpunit\\event\\code\\expected', - 2 => 'phpunit\\event\\code\\actual', - 3 => 'phpunit\\event\\code\\diff', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Value/Throwable.php' => - array ( - 0 => '002d4c234dbb8cddd22fd2f037bc16a25a919a01', - 1 => - array ( - 0 => 'phpunit\\event\\code\\throwable', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\__construct', - 1 => 'phpunit\\event\\code\\asstring', - 2 => 'phpunit\\event\\code\\classname', - 3 => 'phpunit\\event\\code\\message', - 4 => 'phpunit\\event\\code\\description', - 5 => 'phpunit\\event\\code\\stacktrace', - 6 => 'phpunit\\event\\code\\hasprevious', - 7 => 'phpunit\\event\\code\\previous', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Subscriber.php' => - array ( - 0 => '3755a0e75b5f94b3d6d93e7f122b4a63087305a6', - 1 => - array ( - 0 => 'phpunit\\event\\subscriber', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/EventCollectionIterator.php' => - array ( - 0 => 'fe6326da7b6b5b83b9477ed04be5e3c616cc8698', - 1 => - array ( - 0 => 'phpunit\\event\\eventcollectioniterator', - ), - 2 => - array ( - 0 => 'phpunit\\event\\__construct', - 1 => 'phpunit\\event\\rewind', - 2 => 'phpunit\\event\\valid', - 3 => 'phpunit\\event\\key', - 4 => 'phpunit\\event\\current', - 5 => 'phpunit\\event\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/Started.php' => - array ( - 0 => '6d6172802e8189c71edc9cb26a7207c749003cc2', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\started', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/GarbageCollectionEnabledSubscriber.php' => - array ( - 0 => '3e350eb0feba00deb98b73f4fbd1f065facf1630', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\garbagecollectionenabledsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExecutionAbortedSubscriber.php' => - array ( - 0 => '50d18825c4d4863a5e30eafcd3c25d3d104cf84d', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\executionabortedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ChildProcessFinished.php' => - array ( - 0 => '6f979cc15d9101931b38aa5989f73accbc5e4355', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\childprocessfinished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\stdout', - 3 => 'phpunit\\event\\testrunner\\stderr', - 4 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/EventFacadeSealed.php' => - array ( - 0 => '9278684da8f62262979da4cd58612516238416c2', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\eventfacadesealed', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExtensionBootstrapped.php' => - array ( - 0 => '05217669c440a22f2de44f5312834d6d191782f0', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\extensionbootstrapped', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\classname', - 3 => 'phpunit\\event\\testrunner\\parameters', - 4 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExecutionStarted.php' => - array ( - 0 => 'dbfe62d74bb4ed5324c723b7c17607d199fd832c', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\executionstarted', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\testsuite', - 3 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/Configured.php' => - array ( - 0 => '36810df8fa711500c8b326161378550930afe366', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\configured', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\configuration', - 3 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExecutionAborted.php' => - array ( - 0 => 'f8e822f94a998ea0061565bc9fb7d23ded8fe38e', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\executionaborted', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/DeprecationTriggeredSubscriber.php' => - array ( - 0 => 'd9304d17a33c5973de2760c94a1e504840503743', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\deprecationtriggeredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ChildProcessStarted.php' => - array ( - 0 => 'e3d018c1a524783b055ffdeb04dd928de53db09d', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\childprocessstarted', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExecutionStartedSubscriber.php' => - array ( - 0 => '565263ef9d2c365bb8d256e7f1daef2064189f99', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\executionstartedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/GarbageCollectionDisabled.php' => - array ( - 0 => 'e6b0ef5f1b2cd14801b68df2a449f6444953dd53', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\garbagecollectiondisabled', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/GarbageCollectionEnabled.php' => - array ( - 0 => 'fc8fb46f2049c695c6d2b2a4d414d5bc645b19d5', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\garbagecollectionenabled', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/BootstrapFinishedSubscriber.php' => - array ( - 0 => 'c311e93ecb80f95c26dc8f1db481058aca689805', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\bootstrapfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/EventFacadeSealedSubscriber.php' => - array ( - 0 => '2ff01ddd54f1e02b87a97d9216c03dcb081cd8e6', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\eventfacadesealedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/GarbageCollectionTriggeredSubscriber.php' => - array ( - 0 => '13a4fb1e51d5314c57408540e7ce8e8bccd737d0', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\garbagecollectiontriggeredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExecutionFinished.php' => - array ( - 0 => 'f7afed98e0182a5ecf48f7a3b693e89e0030ee97', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\executionfinished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExecutionFinishedSubscriber.php' => - array ( - 0 => 'a2c21c0a3c84162deb28672c92b35f97e6b45815', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\executionfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/Finished.php' => - array ( - 0 => 'e6fdacd1da8e434831a7a1edc25605375c76a8f7', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\finished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ConfiguredSubscriber.php' => - array ( - 0 => 'f9662faf434f3e805c5cfe84102d9014e1d1c1d2', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\configuredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/DeprecationTriggered.php' => - array ( - 0 => 'b835b2bcd1f103d5d107d9fcbff088e9a457dd32', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\deprecationtriggered', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\message', - 3 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/GarbageCollectionDisabledSubscriber.php' => - array ( - 0 => 'fc6234876e77715cdaa795aa9fbace888ad5f1f4', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\garbagecollectiondisabledsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ChildProcessStartedSubscriber.php' => - array ( - 0 => '733c9935d0e4fe81442c243db35beeba641f909b', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\childprocessstartedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/GarbageCollectionTriggered.php' => - array ( - 0 => 'fe1d74fa0fbd46312e4ddda181101b305d90fd60', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\garbagecollectiontriggered', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/WarningTriggeredSubscriber.php' => - array ( - 0 => '76b8e80b3876715cb986bf7fb4473d2bff7929d1', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\warningtriggeredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/BootstrapFinished.php' => - array ( - 0 => '1b603e04e1dfcbc72b6843cf884c8c35122ee778', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\bootstrapfinished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\filename', - 3 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/WarningTriggered.php' => - array ( - 0 => '11eed0ae2c05b4a1b7e8d277947a4ff476d1563b', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\warningtriggered', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\message', - 3 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExtensionBootstrappedSubscriber.php' => - array ( - 0 => 'd2e3c231fad908eb08eb1ab02f41f296eefc8e2a', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\extensionbootstrappedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExtensionLoadedFromPhar.php' => - array ( - 0 => 'a8b04615008ce8941dbebbd8990f241d4c9175d7', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\extensionloadedfromphar', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\filename', - 3 => 'phpunit\\event\\testrunner\\name', - 4 => 'phpunit\\event\\testrunner\\version', - 5 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExtensionLoadedFromPharSubscriber.php' => - array ( - 0 => '8e6080271186e83046c65f5136ad74a9f61d3421', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\extensionloadedfrompharsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/StartedSubscriber.php' => - array ( - 0 => 'a1cbb344bf6e5502947fd9bda914172057ea9d88', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\startedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ChildProcessFinishedSubscriber.php' => - array ( - 0 => 'adbaebb79a5dfeb847b372e6f47c0b0d1ed0087e', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\childprocessfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestRunner/FinishedSubscriber.php' => - array ( - 0 => '3d71bee2d7dc896ee1b1af190922ff3678c2ec6f', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\finishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Event.php' => - array ( - 0 => '11ef92f33839539412fc3945e422c6039c56a5ab', - 1 => - array ( - 0 => 'phpunit\\event\\event', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetryinfo', - 1 => 'phpunit\\event\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/PrintedUnexpectedOutputSubscriber.php' => - array ( - 0 => '84d8b60f058fd6fa5b2c68e64db7b0f4bae484f4', - 1 => - array ( - 0 => 'phpunit\\event\\test\\printedunexpectedoutputsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodCalledSubscriber.php' => - array ( - 0 => 'ccd688f5971fbbeb8ffe56ecf95260306da0560e', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforetestmethodcalledsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodErrored.php' => - array ( - 0 => 'e8c0e6e77275dcb6ef72d3d6cf69e0b6132f58e8', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforetestmethoderrored', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testclassname', - 3 => 'phpunit\\event\\test\\calledmethod', - 4 => 'phpunit\\event\\test\\throwable', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionErroredSubscriber.php' => - array ( - 0 => '9a55c0470576989bdff50075d40f077116f82f74', - 1 => - array ( - 0 => 'phpunit\\event\\test\\preconditionerroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionCalled.php' => - array ( - 0 => 'ed58965da4ced008a74fe87bfc5857f760e33bb1', - 1 => - array ( - 0 => 'phpunit\\event\\test\\preconditioncalled', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testclassname', - 3 => 'phpunit\\event\\test\\calledmethod', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionErrored.php' => - array ( - 0 => 'bbaa398c37f75a303593c68878d64ef59af2dc84', - 1 => - array ( - 0 => 'phpunit\\event\\test\\preconditionerrored', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testclassname', - 3 => 'phpunit\\event\\test\\calledmethod', - 4 => 'phpunit\\event\\test\\throwable', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodFinishedSubscriber.php' => - array ( - 0 => 'f7bed12371346805535a022b199c32258ca188dd', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforetestmethodfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionErrored.php' => - array ( - 0 => '03e6bb933ff4ce0f2d71c72e2095e689f90f11b9', - 1 => - array ( - 0 => 'phpunit\\event\\test\\postconditionerrored', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testclassname', - 3 => 'phpunit\\event\\test\\calledmethod', - 4 => 'phpunit\\event\\test\\throwable', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodFinished.php' => - array ( - 0 => 'b733e6e09ccbc608acb68d639b500bb3d04f6ef6', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforefirsttestmethodfinished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testclassname', - 3 => 'phpunit\\event\\test\\calledmethods', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionFinished.php' => - array ( - 0 => '94934c0761dec721b87cc15d0ff3c6b1b5c02483', - 1 => - array ( - 0 => 'phpunit\\event\\test\\preconditionfinished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testclassname', - 3 => 'phpunit\\event\\test\\calledmethods', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodCalled.php' => - array ( - 0 => '9e279d4d71573afcd402c8a0db2246daf14d49a4', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforetestmethodcalled', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testclassname', - 3 => 'phpunit\\event\\test\\calledmethod', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodErroredSubscriber.php' => - array ( - 0 => 'd06d71d0709cb91b117a63233dd8580dd65af6c8', - 1 => - array ( - 0 => 'phpunit\\event\\test\\afterlasttestmethoderroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodErroredSubscriber.php' => - array ( - 0 => '6f0a629fff8a3f5ba1eb6bf7e6b4fb98792e9e77', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforetestmethoderroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionFinished.php' => - array ( - 0 => 'a0588f2073dde238b3f93457d921c6db5a147380', - 1 => - array ( - 0 => 'phpunit\\event\\test\\postconditionfinished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testclassname', - 3 => 'phpunit\\event\\test\\calledmethods', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionCalledSubscriber.php' => - array ( - 0 => '8c7ba4aab6c94a385c08d1b85fd82bb193973d5e', - 1 => - array ( - 0 => 'phpunit\\event\\test\\postconditioncalledsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionFinishedSubscriber.php' => - array ( - 0 => '7ad5a7d119c5cb8a4b9fc135fbcaf46dbeca6c88', - 1 => - array ( - 0 => 'phpunit\\event\\test\\preconditionfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodFinished.php' => - array ( - 0 => 'ae6268e31620fbe8ddc7d5a98c37ecce35818e2d', - 1 => - array ( - 0 => 'phpunit\\event\\test\\aftertestmethodfinished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testclassname', - 3 => 'phpunit\\event\\test\\calledmethods', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodCalledSubscriber.php' => - array ( - 0 => '3e45ff5fe012f586911512375c45565e3afb2b0e', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforefirsttestmethodcalledsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodFinishedSubscriber.php' => - array ( - 0 => '840288cb405be123f16943f96ebcbbb25f525ab7', - 1 => - array ( - 0 => 'phpunit\\event\\test\\aftertestmethodfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodCalledSubscriber.php' => - array ( - 0 => '954bd4a4dc53df250bc2dc0452c3c407b0b50f73', - 1 => - array ( - 0 => 'phpunit\\event\\test\\aftertestmethodcalledsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodFinishedSubscriber.php' => - array ( - 0 => 'aea3a910bb0a52cd880ecf67178dfe07594e9613', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforefirsttestmethodfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodErrored.php' => - array ( - 0 => 'c5f9682b7db9eac6b35511c65ee4420e6c41e299', - 1 => - array ( - 0 => 'phpunit\\event\\test\\afterlasttestmethoderrored', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testclassname', - 3 => 'phpunit\\event\\test\\calledmethod', - 4 => 'phpunit\\event\\test\\throwable', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodErroredSubscriber.php' => - array ( - 0 => '6166a28d2f75436f32d58939731a9c9916894651', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforefirsttestmethoderroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodErrored.php' => - array ( - 0 => '7559bc205e020b4f4254732fbde4ee3f04c4fa2b', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforefirsttestmethoderrored', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testclassname', - 3 => 'phpunit\\event\\test\\calledmethod', - 4 => 'phpunit\\event\\test\\throwable', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodFinished.php' => - array ( - 0 => '5dc6ccdd02824d514bd1bd2a08382412a7560dec', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforetestmethodfinished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testclassname', - 3 => 'phpunit\\event\\test\\calledmethods', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodErroredSubscriber.php' => - array ( - 0 => '1cc609c3d58bfad41fc21c72e0bd488b91dc5f68', - 1 => - array ( - 0 => 'phpunit\\event\\test\\aftertestmethoderroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodCalledSubscriber.php' => - array ( - 0 => '36cf43768db15b1c0f39a4e5e0f6674a598ce019', - 1 => - array ( - 0 => 'phpunit\\event\\test\\afterlasttestmethodcalledsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionCalledSubscriber.php' => - array ( - 0 => 'ff765b294e9a74bbccce9ec942b6f4a92c35e7fc', - 1 => - array ( - 0 => 'phpunit\\event\\test\\preconditioncalledsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodFinishedSubscriber.php' => - array ( - 0 => '88b0667a5de9a547ffa96c57547f68b2b1d326b9', - 1 => - array ( - 0 => 'phpunit\\event\\test\\afterlasttestmethodfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionFinishedSubscriber.php' => - array ( - 0 => '49dbe74e6ad96d212afc262a3dc4bdd32b2090de', - 1 => - array ( - 0 => 'phpunit\\event\\test\\postconditionfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionCalled.php' => - array ( - 0 => '0a856d25546ec88cf5a6e75db3bc430d39e95a9f', - 1 => - array ( - 0 => 'phpunit\\event\\test\\postconditioncalled', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testclassname', - 3 => 'phpunit\\event\\test\\calledmethod', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodErrored.php' => - array ( - 0 => 'da4a2ca8233208cff4134b0d98147811adff1cfc', - 1 => - array ( - 0 => 'phpunit\\event\\test\\aftertestmethoderrored', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testclassname', - 3 => 'phpunit\\event\\test\\calledmethod', - 4 => 'phpunit\\event\\test\\throwable', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionErroredSubscriber.php' => - array ( - 0 => 'd97da07aa3e8f1347523b363a860e723225b1214', - 1 => - array ( - 0 => 'phpunit\\event\\test\\postconditionerroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodFinished.php' => - array ( - 0 => '9f2b69fd8e38a636c776ae4d715bc7b1a94a0599', - 1 => - array ( - 0 => 'phpunit\\event\\test\\afterlasttestmethodfinished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testclassname', - 3 => 'phpunit\\event\\test\\calledmethods', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodCalled.php' => - array ( - 0 => 'ae41278bad99d397968f98ead0a881cafb06ef4d', - 1 => - array ( - 0 => 'phpunit\\event\\test\\aftertestmethodcalled', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testclassname', - 3 => 'phpunit\\event\\test\\calledmethod', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodCalled.php' => - array ( - 0 => '0c08d5fe4faed77dbf8f2259c3aca922a3b7e8a3', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforefirsttestmethodcalled', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testclassname', - 3 => 'phpunit\\event\\test\\calledmethod', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodCalled.php' => - array ( - 0 => '017701d3a80dd4c387dcd043fa62bebe66e4db2d', - 1 => - array ( - 0 => 'phpunit\\event\\test\\afterlasttestmethodcalled', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testclassname', - 3 => 'phpunit\\event\\test\\calledmethod', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/PrintedUnexpectedOutput.php' => - array ( - 0 => 'c0b7aea6fb0c8c106cb63abd31054f58931c2d1c', - 1 => - array ( - 0 => 'phpunit\\event\\test\\printedunexpectedoutput', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\output', - 3 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/DataProviderMethodCalledSubscriber.php' => - array ( - 0 => 'f170cce661ff38d52de4f0351cbea26afe1cbd83', - 1 => - array ( - 0 => 'phpunit\\event\\test\\dataprovidermethodcalledsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparationStartedSubscriber.php' => - array ( - 0 => '047704f864defb25b439642b156cd578e41eec68', - 1 => - array ( - 0 => 'phpunit\\event\\test\\preparationstartedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparationStarted.php' => - array ( - 0 => '08d04f99c11cf449b8f22e2ef46814bdc75907c9', - 1 => - array ( - 0 => 'phpunit\\event\\test\\preparationstarted', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparationFailed.php' => - array ( - 0 => '5faaa89f01eac4e11e0ad4e6a63268b67b636bf2', - 1 => - array ( - 0 => 'phpunit\\event\\test\\preparationfailed', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/DataProviderMethodFinished.php' => - array ( - 0 => '6a95a4a6dfc7e2d1d17f36f5eb31a92f32c125c1', - 1 => - array ( - 0 => 'phpunit\\event\\test\\dataprovidermethodfinished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testmethod', - 3 => 'phpunit\\event\\test\\calledmethods', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/DataProviderMethodFinishedSubscriber.php' => - array ( - 0 => '2a67853b5b57a0c25468372d77e9986d5aeb9904', - 1 => - array ( - 0 => 'phpunit\\event\\test\\dataprovidermethodfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparedSubscriber.php' => - array ( - 0 => '2e932ebb4eef9ade9f7be59bba9afca080b8df30', - 1 => - array ( - 0 => 'phpunit\\event\\test\\preparedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/DataProviderMethodCalled.php' => - array ( - 0 => '03b042d0c41b2cfa5c3ea9e1d603bd1f4812db77', - 1 => - array ( - 0 => 'phpunit\\event\\test\\dataprovidermethodcalled', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\testmethod', - 3 => 'phpunit\\event\\test\\dataprovidermethod', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/Prepared.php' => - array ( - 0 => '053654e564967a7d37cf859dbe09a7770db1b335', - 1 => - array ( - 0 => 'phpunit\\event\\test\\prepared', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/Finished.php' => - array ( - 0 => 'ad7b787feed96db865da2e69dbbce74d38d73886', - 1 => - array ( - 0 => 'phpunit\\event\\test\\finished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\numberofassertionsperformed', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparationFailedSubscriber.php' => - array ( - 0 => '07d0c651f103a8bf402e422ce30d196e4ecfb6f3', - 1 => - array ( - 0 => 'phpunit\\event\\test\\preparationfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/FinishedSubscriber.php' => - array ( - 0 => '814bba5fb67dd3820fd6ffee79f3f919029b36e7', - 1 => - array ( - 0 => 'phpunit\\event\\test\\finishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/Skipped.php' => - array ( - 0 => 'ee85acbb10f0fa924dad6f81f6ad7e59a06adae0', - 1 => - array ( - 0 => 'phpunit\\event\\test\\skipped', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\message', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/MarkedIncomplete.php' => - array ( - 0 => '0383b034be345ea4fe75720f3d953194c40f8c46', - 1 => - array ( - 0 => 'phpunit\\event\\test\\markedincomplete', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\throwable', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/Failed.php' => - array ( - 0 => '6eed07f0316bf24c0b2cee0a77ca08096b185f1f', - 1 => - array ( - 0 => 'phpunit\\event\\test\\failed', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\throwable', - 4 => 'phpunit\\event\\test\\hascomparisonfailure', - 5 => 'phpunit\\event\\test\\comparisonfailure', - 6 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/SkippedSubscriber.php' => - array ( - 0 => '1de197cd52e8dec133906148b91b92b978013548', - 1 => - array ( - 0 => 'phpunit\\event\\test\\skippedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/MarkedIncompleteSubscriber.php' => - array ( - 0 => '7ce3b786bc152e819be4f1ec1004901edf67cd0a', - 1 => - array ( - 0 => 'phpunit\\event\\test\\markedincompletesubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/ErroredSubscriber.php' => - array ( - 0 => '6a4343fe5a1dcf5b079a93e4bd348da9635da7c3', - 1 => - array ( - 0 => 'phpunit\\event\\test\\erroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/Passed.php' => - array ( - 0 => '6b7c443038544a1c597fe5372b7a66fece620008', - 1 => - array ( - 0 => 'phpunit\\event\\test\\passed', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/FailedSubscriber.php' => - array ( - 0 => 'c194671227196809fbec1f105fda24864f9331a3', - 1 => - array ( - 0 => 'phpunit\\event\\test\\failedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/PassedSubscriber.php' => - array ( - 0 => '7b33ed749c9f985991f7de6c0f04c7bde7fbb0c7', - 1 => - array ( - 0 => 'phpunit\\event\\test\\passedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/Errored.php' => - array ( - 0 => '56b55ca862bb0bb3f0fc688922883822e5a3cd0f', - 1 => - array ( - 0 => 'phpunit\\event\\test\\errored', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\throwable', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/ComparatorRegistered.php' => - array ( - 0 => 'd7ab5f3b41d422ddd4a31830f60210404d2580c1', - 1 => - array ( - 0 => 'phpunit\\event\\test\\comparatorregistered', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\classname', - 3 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitWarningTriggered.php' => - array ( - 0 => 'eba9ce664edb71638b727873147a7015d83faf75', - 1 => - array ( - 0 => 'phpunit\\event\\test\\phpunitwarningtriggered', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\message', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpWarningTriggered.php' => - array ( - 0 => '35fce423bbfe81e99e1334ed398ba463ab1fc649', - 1 => - array ( - 0 => 'phpunit\\event\\test\\phpwarningtriggered', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\message', - 4 => 'phpunit\\event\\test\\file', - 5 => 'phpunit\\event\\test\\line', - 6 => 'phpunit\\event\\test\\wassuppressed', - 7 => 'phpunit\\event\\test\\ignoredbybaseline', - 8 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/ErrorTriggered.php' => - array ( - 0 => '868e6ed3412c76a51a32821dbb4176d17d215cce', - 1 => - array ( - 0 => 'phpunit\\event\\test\\errortriggered', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\message', - 4 => 'phpunit\\event\\test\\file', - 5 => 'phpunit\\event\\test\\line', - 6 => 'phpunit\\event\\test\\wassuppressed', - 7 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/DeprecationTriggeredSubscriber.php' => - array ( - 0 => '850cf7d9b9d40ec7a422b36b03d403b28d347901', - 1 => - array ( - 0 => 'phpunit\\event\\test\\deprecationtriggeredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpNoticeTriggered.php' => - array ( - 0 => 'cd46338af01948c20cc07f0265f159806a96a4e3', - 1 => - array ( - 0 => 'phpunit\\event\\test\\phpnoticetriggered', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\message', - 4 => 'phpunit\\event\\test\\file', - 5 => 'phpunit\\event\\test\\line', - 6 => 'phpunit\\event\\test\\wassuppressed', - 7 => 'phpunit\\event\\test\\ignoredbybaseline', - 8 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpDeprecationTriggered.php' => - array ( - 0 => '4c53d9e61c783e4d08e05b013ca82bc82b89abed', - 1 => - array ( - 0 => 'phpunit\\event\\test\\phpdeprecationtriggered', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\message', - 4 => 'phpunit\\event\\test\\file', - 5 => 'phpunit\\event\\test\\line', - 6 => 'phpunit\\event\\test\\wassuppressed', - 7 => 'phpunit\\event\\test\\ignoredbybaseline', - 8 => 'phpunit\\event\\test\\ignoredbytest', - 9 => 'phpunit\\event\\test\\trigger', - 10 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/NoticeTriggeredSubscriber.php' => - array ( - 0 => 'e63053401066843f21107fe937e61234ff8cbc18', - 1 => - array ( - 0 => 'phpunit\\event\\test\\noticetriggeredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitErrorTriggeredSubscriber.php' => - array ( - 0 => '720efe5cde28b26318fb5abdbea1492b65fa372f', - 1 => - array ( - 0 => 'phpunit\\event\\test\\phpuniterrortriggeredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpNoticeTriggeredSubscriber.php' => - array ( - 0 => 'c6745484a5ed9416eac3e88adaa5a7ec1abe8fc9', - 1 => - array ( - 0 => 'phpunit\\event\\test\\phpnoticetriggeredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/ErrorTriggeredSubscriber.php' => - array ( - 0 => '8a15d3eb426e6f4aeff01aeed98f259d50a1453b', - 1 => - array ( - 0 => 'phpunit\\event\\test\\errortriggeredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitDeprecationTriggered.php' => - array ( - 0 => '608fbb3e3d716bb9b90db826594d38e2a25a4f93', - 1 => - array ( - 0 => 'phpunit\\event\\test\\phpunitdeprecationtriggered', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\message', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitWarningTriggeredSubscriber.php' => - array ( - 0 => '5dc77a8ae93d86b6b77afc861a4200ddfb295de9', - 1 => - array ( - 0 => 'phpunit\\event\\test\\phpunitwarningtriggeredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitDeprecationTriggeredSubscriber.php' => - array ( - 0 => '79e2f4c3cbf21b7f36c14d0db32bd9b393d7a80e', - 1 => - array ( - 0 => 'phpunit\\event\\test\\phpunitdeprecationtriggeredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/DeprecationTriggered.php' => - array ( - 0 => '0d5cb36b194faa0a90a2efe3f5ca180ad4c10fcf', - 1 => - array ( - 0 => 'phpunit\\event\\test\\deprecationtriggered', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\message', - 4 => 'phpunit\\event\\test\\file', - 5 => 'phpunit\\event\\test\\line', - 6 => 'phpunit\\event\\test\\wassuppressed', - 7 => 'phpunit\\event\\test\\ignoredbybaseline', - 8 => 'phpunit\\event\\test\\ignoredbytest', - 9 => 'phpunit\\event\\test\\trigger', - 10 => 'phpunit\\event\\test\\stacktrace', - 11 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/WarningTriggeredSubscriber.php' => - array ( - 0 => '3648ee586c7f41306b13714994f85b19e0ddcbbd', - 1 => - array ( - 0 => 'phpunit\\event\\test\\warningtriggeredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpWarningTriggeredSubscriber.php' => - array ( - 0 => 'd8e961fc889e258eaa853bb290863cb1ec5cb8d4', - 1 => - array ( - 0 => 'phpunit\\event\\test\\phpwarningtriggeredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/ConsideredRiskySubscriber.php' => - array ( - 0 => 'bffdfb520ebd7d1f76eaf71e3a52c3d9f2bcbe1f', - 1 => - array ( - 0 => 'phpunit\\event\\test\\consideredriskysubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/WarningTriggered.php' => - array ( - 0 => '79fd6c2f123e163081846afcf0ca474c80423bd4', - 1 => - array ( - 0 => 'phpunit\\event\\test\\warningtriggered', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\message', - 4 => 'phpunit\\event\\test\\file', - 5 => 'phpunit\\event\\test\\line', - 6 => 'phpunit\\event\\test\\wassuppressed', - 7 => 'phpunit\\event\\test\\ignoredbybaseline', - 8 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitErrorTriggered.php' => - array ( - 0 => 'da55720018b849c3d38db70f24890d84355a046e', - 1 => - array ( - 0 => 'phpunit\\event\\test\\phpuniterrortriggered', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\message', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/ConsideredRisky.php' => - array ( - 0 => '10d5c04b0a22f9a40fea298402d4060eec24a663', - 1 => - array ( - 0 => 'phpunit\\event\\test\\consideredrisky', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\message', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/NoticeTriggered.php' => - array ( - 0 => '25cc3c098a7e48e12557e114dae226ea752133e5', - 1 => - array ( - 0 => 'phpunit\\event\\test\\noticetriggered', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\message', - 4 => 'phpunit\\event\\test\\file', - 5 => 'phpunit\\event\\test\\line', - 6 => 'phpunit\\event\\test\\wassuppressed', - 7 => 'phpunit\\event\\test\\ignoredbybaseline', - 8 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpDeprecationTriggeredSubscriber.php' => - array ( - 0 => '323f7f6e25be1a58b243641f2f042c3a5a958d5d', - 1 => - array ( - 0 => 'phpunit\\event\\test\\phpdeprecationtriggeredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/ComparatorRegisteredSubscriber.php' => - array ( - 0 => 'f833d57a285480fd0bfdfc8b44655ed0615a153a', - 1 => - array ( - 0 => 'phpunit\\event\\test\\comparatorregisteredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectForTraitCreated.php' => - array ( - 0 => '337026f095a3e423af6660689ab5a2c6a6db0dd9', - 1 => - array ( - 0 => 'phpunit\\event\\test\\mockobjectfortraitcreated', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\traitname', - 3 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/TestStubCreated.php' => - array ( - 0 => '1d395f46fc52b1e82465c88033c807d4b59003c5', - 1 => - array ( - 0 => 'phpunit\\event\\test\\teststubcreated', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\classname', - 3 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/TestStubForIntersectionOfInterfacesCreatedSubscriber.php' => - array ( - 0 => '01346a44307314e91818d93a94376b9ce56846ba', - 1 => - array ( - 0 => 'phpunit\\event\\test\\teststubforintersectionofinterfacescreatedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectFromWsdlCreatedSubscriber.php' => - array ( - 0 => '9a82444dabdf23d5942c9f92e3ec0dfc84510e98', - 1 => - array ( - 0 => 'phpunit\\event\\test\\mockobjectfromwsdlcreatedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/PartialMockObjectCreatedSubscriber.php' => - array ( - 0 => '009b9905a0f4e1f62fecfae9a3e058303febed8c', - 1 => - array ( - 0 => 'phpunit\\event\\test\\partialmockobjectcreatedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/TestProxyCreated.php' => - array ( - 0 => 'af63e5bd45acc72487940c7bf6f59cf5bb66f86a', - 1 => - array ( - 0 => 'phpunit\\event\\test\\testproxycreated', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\classname', - 3 => 'phpunit\\event\\test\\constructorarguments', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/TestProxyCreatedSubscriber.php' => - array ( - 0 => 'd532b47521a5d2d72584da875a0f2237c47ac8d0', - 1 => - array ( - 0 => 'phpunit\\event\\test\\testproxycreatedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectForAbstractClassCreated.php' => - array ( - 0 => '261acc731cbb02e36f23946ff3ca671fbefea3b1', - 1 => - array ( - 0 => 'phpunit\\event\\test\\mockobjectforabstractclasscreated', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\classname', - 3 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/TestStubForIntersectionOfInterfacesCreated.php' => - array ( - 0 => 'f782c3b13d7a1e7f9ebde76c363549c81084b0df', - 1 => - array ( - 0 => 'phpunit\\event\\test\\teststubforintersectionofinterfacescreated', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\interfaces', - 3 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectForTraitCreatedSubscriber.php' => - array ( - 0 => '17565d5acb031e9dc2508ab02f9d0c1fee7e2266', - 1 => - array ( - 0 => 'phpunit\\event\\test\\mockobjectfortraitcreatedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectForIntersectionOfInterfacesCreated.php' => - array ( - 0 => '831d71759a068234a81496a74f983ddba41375c8', - 1 => - array ( - 0 => 'phpunit\\event\\test\\mockobjectforintersectionofinterfacescreated', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\interfaces', - 3 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectCreated.php' => - array ( - 0 => '32041115bf22abdd203adea82bdca00a0d981aba', - 1 => - array ( - 0 => 'phpunit\\event\\test\\mockobjectcreated', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\classname', - 3 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectForAbstractClassCreatedSubscriber.php' => - array ( - 0 => 'd2b5f56864a320b073b902af64472640238a7bf0', - 1 => - array ( - 0 => 'phpunit\\event\\test\\mockobjectforabstractclasscreatedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectForIntersectionOfInterfacesCreatedSubscriber.php' => - array ( - 0 => '5d5fc6c79aba59e998d0df24a69ea1f8658a1223', - 1 => - array ( - 0 => 'phpunit\\event\\test\\mockobjectforintersectionofinterfacescreatedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/PartialMockObjectCreated.php' => - array ( - 0 => 'efeee405d4106d2a7aa4e5bd54168a59d29a6b33', - 1 => - array ( - 0 => 'phpunit\\event\\test\\partialmockobjectcreated', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\classname', - 3 => 'phpunit\\event\\test\\methodnames', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectCreatedSubscriber.php' => - array ( - 0 => 'd5976d06ddb2dd3aa46f52bf84a03458ebea2310', - 1 => - array ( - 0 => 'phpunit\\event\\test\\mockobjectcreatedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectFromWsdlCreated.php' => - array ( - 0 => 'bac3fc26e684d5e421776e30f62283c7c2218da3', - 1 => - array ( - 0 => 'phpunit\\event\\test\\mockobjectfromwsdlcreated', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\wsdlfile', - 3 => 'phpunit\\event\\test\\originalclassname', - 4 => 'phpunit\\event\\test\\mockclassname', - 5 => 'phpunit\\event\\test\\methods', - 6 => 'phpunit\\event\\test\\calloriginalconstructor', - 7 => 'phpunit\\event\\test\\options', - 8 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/TestStubCreatedSubscriber.php' => - array ( - 0 => '96512e7319afdf237276da314ead175ef51cbd51', - 1 => - array ( - 0 => 'phpunit\\event\\test\\teststubcreatedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/Started.php' => - array ( - 0 => '24d4e338d702886ef843a434fb3b7ff02847a2d9', - 1 => - array ( - 0 => 'phpunit\\event\\testsuite\\started', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testsuite\\__construct', - 1 => 'phpunit\\event\\testsuite\\telemetryinfo', - 2 => 'phpunit\\event\\testsuite\\testsuite', - 3 => 'phpunit\\event\\testsuite\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/Loaded.php' => - array ( - 0 => 'e4c8699aea3db102af0c007137ce61e9134170e7', - 1 => - array ( - 0 => 'phpunit\\event\\testsuite\\loaded', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testsuite\\__construct', - 1 => 'phpunit\\event\\testsuite\\telemetryinfo', - 2 => 'phpunit\\event\\testsuite\\testsuite', - 3 => 'phpunit\\event\\testsuite\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/Skipped.php' => - array ( - 0 => '5a31b35d5a241030df00c8e73d77ffcf227e0501', - 1 => - array ( - 0 => 'phpunit\\event\\testsuite\\skipped', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testsuite\\__construct', - 1 => 'phpunit\\event\\testsuite\\telemetryinfo', - 2 => 'phpunit\\event\\testsuite\\testsuite', - 3 => 'phpunit\\event\\testsuite\\message', - 4 => 'phpunit\\event\\testsuite\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/SortedSubscriber.php' => - array ( - 0 => '20d6d173def5f3ae0476c20bd9cc33988dbc3a1c', - 1 => - array ( - 0 => 'phpunit\\event\\testsuite\\sortedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testsuite\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/Filtered.php' => - array ( - 0 => 'd1b556e42101aa469732c5ca767ff6309d0ff516', - 1 => - array ( - 0 => 'phpunit\\event\\testsuite\\filtered', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testsuite\\__construct', - 1 => 'phpunit\\event\\testsuite\\telemetryinfo', - 2 => 'phpunit\\event\\testsuite\\testsuite', - 3 => 'phpunit\\event\\testsuite\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/SkippedSubscriber.php' => - array ( - 0 => 'be8612409db213bc5af8440d7b51b52488fa4394', - 1 => - array ( - 0 => 'phpunit\\event\\testsuite\\skippedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testsuite\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/LoadedSubscriber.php' => - array ( - 0 => '4544a5754b993bdd15b48b3b3169a21c7e49676f', - 1 => - array ( - 0 => 'phpunit\\event\\testsuite\\loadedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testsuite\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/Sorted.php' => - array ( - 0 => '6c2d2aac3263e552bff86f4d40040ef7566fadb9', - 1 => - array ( - 0 => 'phpunit\\event\\testsuite\\sorted', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testsuite\\__construct', - 1 => 'phpunit\\event\\testsuite\\telemetryinfo', - 2 => 'phpunit\\event\\testsuite\\executionorder', - 3 => 'phpunit\\event\\testsuite\\executionorderdefects', - 4 => 'phpunit\\event\\testsuite\\resolvedependencies', - 5 => 'phpunit\\event\\testsuite\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/Finished.php' => - array ( - 0 => 'f0190ec3311347712478c4eab44b18f4969e36d3', - 1 => - array ( - 0 => 'phpunit\\event\\testsuite\\finished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testsuite\\__construct', - 1 => 'phpunit\\event\\testsuite\\telemetryinfo', - 2 => 'phpunit\\event\\testsuite\\testsuite', - 3 => 'phpunit\\event\\testsuite\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/FilteredSubscriber.php' => - array ( - 0 => 'a4b10515eae863253c20d68dff9b639f5cbe4280', - 1 => - array ( - 0 => 'phpunit\\event\\testsuite\\filteredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testsuite\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/StartedSubscriber.php' => - array ( - 0 => '57e81d7795efb67a5a5a7786b53d1f4f82fe5cc4', - 1 => - array ( - 0 => 'phpunit\\event\\testsuite\\startedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testsuite\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/TestSuite/FinishedSubscriber.php' => - array ( - 0 => '9c7b1dcfde5946a51b150306f5d29a7ff3bd418f', - 1 => - array ( - 0 => 'phpunit\\event\\testsuite\\finishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testsuite\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Application/Started.php' => - array ( - 0 => '4055343068eaad625c406ebe145656a007153a37', - 1 => - array ( - 0 => 'phpunit\\event\\application\\started', - ), - 2 => - array ( - 0 => 'phpunit\\event\\application\\__construct', - 1 => 'phpunit\\event\\application\\telemetryinfo', - 2 => 'phpunit\\event\\application\\runtime', - 3 => 'phpunit\\event\\application\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Application/Finished.php' => - array ( - 0 => 'babaa2195b94b3a6190db626b81cc81b9990bb70', - 1 => - array ( - 0 => 'phpunit\\event\\application\\finished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\application\\__construct', - 1 => 'phpunit\\event\\application\\telemetryinfo', - 2 => 'phpunit\\event\\application\\shellexitcode', - 3 => 'phpunit\\event\\application\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Application/StartedSubscriber.php' => - array ( - 0 => '5871e42fdc035a1cb2ce8acc80c9fe94b94bdc03', - 1 => - array ( - 0 => 'phpunit\\event\\application\\startedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\application\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/Application/FinishedSubscriber.php' => - array ( - 0 => '5e94fbe68de25acfd724a44f2796fb8dfe58b6fb', - 1 => - array ( - 0 => 'phpunit\\event\\application\\finishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\application\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Events/EventCollection.php' => - array ( - 0 => 'a303f39ca3c267fe7b0ecefc833a2338bdc4c507', - 1 => - array ( - 0 => 'phpunit\\event\\eventcollection', - ), - 2 => - array ( - 0 => 'phpunit\\event\\add', - 1 => 'phpunit\\event\\asarray', - 2 => 'phpunit\\event\\count', - 3 => 'phpunit\\event\\isempty', - 4 => 'phpunit\\event\\isnotempty', - 5 => 'phpunit\\event\\getiterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/TypeMap.php' => - array ( - 0 => '2f1846abdbb7d8701da3ff931535b87c6f1feb36', - 1 => - array ( - 0 => 'phpunit\\event\\typemap', - ), - 2 => - array ( - 0 => 'phpunit\\event\\addmapping', - 1 => 'phpunit\\event\\isknownsubscribertype', - 2 => 'phpunit\\event\\isknowneventtype', - 3 => 'phpunit\\event\\map', - 4 => 'phpunit\\event\\ensuresubscriberinterfaceexists', - 5 => 'phpunit\\event\\ensureeventclassexists', - 6 => 'phpunit\\event\\ensuresubscriberinterfaceextendsinterface', - 7 => 'phpunit\\event\\ensureeventclassimplementseventinterface', - 8 => 'phpunit\\event\\ensuresubscriberwasnotalreadyregistered', - 9 => 'phpunit\\event\\ensureeventwasnotalreadyassigned', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/UnknownEventTypeException.php' => - array ( - 0 => '744c2352e323169a22038a724ea2a29f6a39897a', - 1 => - array ( - 0 => 'phpunit\\event\\unknowneventtypeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/UnknownEventException.php' => - array ( - 0 => '59fa5ec8542a3fda5d1b7ed2eda5e76b175b900a', - 1 => - array ( - 0 => 'phpunit\\event\\unknowneventexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/InvalidSubscriberException.php' => - array ( - 0 => '4cb3fb9391929d6477d59bd68b0e7e65d6ae7496', - 1 => - array ( - 0 => 'phpunit\\event\\invalidsubscriberexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/NoTestCaseObjectOnCallStackException.php' => - array ( - 0 => '82b7cba12fc332001dd207c69cdfa0f217837a49', - 1 => - array ( - 0 => 'phpunit\\event\\code\\notestcaseobjectoncallstackexception', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/RuntimeException.php' => - array ( - 0 => 'f4f962615eeab9ba85d908f41a700306e5e697fa', - 1 => - array ( - 0 => 'phpunit\\event\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/NoComparisonFailureException.php' => - array ( - 0 => '34134db3b3e58cfa04fcdad52702402dd111ba14', - 1 => - array ( - 0 => 'phpunit\\event\\test\\nocomparisonfailureexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/EventFacadeIsSealedException.php' => - array ( - 0 => 'b7e05797eeffddb5d00170510c015935f6e9bafe', - 1 => - array ( - 0 => 'phpunit\\event\\eventfacadeissealedexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/InvalidArgumentException.php' => - array ( - 0 => '02967b342c1f626c9120a8e4bfc335d1192467e6', - 1 => - array ( - 0 => 'phpunit\\event\\invalidargumentexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/NoPreviousThrowableException.php' => - array ( - 0 => '88a8caffc9113463080cd1b26971aff29ccf4f9c', - 1 => - array ( - 0 => 'phpunit\\event\\nopreviousthrowableexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/UnknownSubscriberTypeException.php' => - array ( - 0 => '9e9f6d0e00ec7970d7fbfbdd498af748718d5494', - 1 => - array ( - 0 => 'phpunit\\event\\unknownsubscribertypeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/EventAlreadyAssignedException.php' => - array ( - 0 => '82721698929ece20f7a498a5c94f124fa70b815b', - 1 => - array ( - 0 => 'phpunit\\event\\eventalreadyassignedexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/SubscriberTypeAlreadyRegisteredException.php' => - array ( - 0 => 'ec0690787b168bfcdb18a148a6b9c9ca6914b6e9', - 1 => - array ( - 0 => 'phpunit\\event\\subscribertypealreadyregisteredexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/NoDataSetFromDataProviderException.php' => - array ( - 0 => '11025e8837e709e9d6d8952abeb056861dea21cb', - 1 => - array ( - 0 => 'phpunit\\event\\testdata\\nodatasetfromdataproviderexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/InvalidEventException.php' => - array ( - 0 => '48a46996b2aca4e1424a3e7cc37f265fccb0eeb7', - 1 => - array ( - 0 => 'phpunit\\event\\invalideventexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/MapError.php' => - array ( - 0 => '803cfd67a59a90b90e26a89b933d8c189614e7cd', - 1 => - array ( - 0 => 'phpunit\\event\\maperror', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/Exception.php' => - array ( - 0 => '71b54ecaf6e136baaf9aa53ec0d6485277d51703', - 1 => - array ( - 0 => 'phpunit\\event\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Exception/UnknownSubscriberException.php' => - array ( - 0 => 'f007419a99a9bc9383ec72d898b86b92666b1956', - 1 => - array ( - 0 => 'phpunit\\event\\unknownsubscriberexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Event/Facade.php' => - array ( - 0 => 'e678dbfe7e7c46c06e6a483884e0184f0dfb31da', - 1 => - array ( - 0 => 'phpunit\\event\\facade', - ), - 2 => - array ( - 0 => 'phpunit\\event\\instance', - 1 => 'phpunit\\event\\emitter', - 2 => 'phpunit\\event\\__construct', - 3 => 'phpunit\\event\\registersubscribers', - 4 => 'phpunit\\event\\registersubscriber', - 5 => 'phpunit\\event\\registertracer', - 6 => 'phpunit\\event\\initforisolation', - 7 => 'phpunit\\event\\forward', - 8 => 'phpunit\\event\\seal', - 9 => 'phpunit\\event\\createdispatchingemitter', - 10 => 'phpunit\\event\\createtelemetrysystem', - 11 => 'phpunit\\event\\deferreddispatcher', - 12 => 'phpunit\\event\\typemap', - 13 => 'phpunit\\event\\registerdefaulttypes', - 14 => 'phpunit\\event\\garbagecollectorstatusprovider', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Before.php' => - array ( - 0 => '86f2501393f42b32bca87e0ddf4347f52f200545', - 1 => - array ( - 0 => 'phpunit\\metadata\\before', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isbefore', - 2 => 'phpunit\\metadata\\priority', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RunClassInSeparateProcess.php' => - array ( - 0 => '187f82b00d52b64ed987ffc6801aa47f438ea450', - 1 => - array ( - 0 => 'phpunit\\metadata\\runclassinseparateprocess', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\isrunclassinseparateprocess', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/CoversTrait.php' => - array ( - 0 => '842833daca8b6731fa357ff5d6dc40f394f1d842', - 1 => - array ( - 0 => 'phpunit\\metadata\\coverstrait', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\iscoverstrait', - 2 => 'phpunit\\metadata\\traitname', - 3 => 'phpunit\\metadata\\asstringforcodeunitmapper', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RequiresPhp.php' => - array ( - 0 => '8f8fc777fb7047defb44cdb34bda1fbcc1ce6a86', - 1 => - array ( - 0 => 'phpunit\\metadata\\requiresphp', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isrequiresphp', - 2 => 'phpunit\\metadata\\versionrequirement', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RequiresOperatingSystemFamily.php' => - array ( - 0 => '68b94ca5ba9d3a1354b194a196749cb187f35b7d', - 1 => - array ( - 0 => 'phpunit\\metadata\\requiresoperatingsystemfamily', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isrequiresoperatingsystemfamily', - 2 => 'phpunit\\metadata\\operatingsystemfamily', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Group.php' => - array ( - 0 => '31b15a872a277c2b23d257f7ad21eee09ac5b317', - 1 => - array ( - 0 => 'phpunit\\metadata\\group', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isgroup', - 2 => 'phpunit\\metadata\\groupname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/UsesTrait.php' => - array ( - 0 => '24f3502570bdcb2b8e7190cd54d8ce9d98199242', - 1 => - array ( - 0 => 'phpunit\\metadata\\usestrait', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isusestrait', - 2 => 'phpunit\\metadata\\traitname', - 3 => 'phpunit\\metadata\\asstringforcodeunitmapper', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/CoversMethod.php' => - array ( - 0 => '92cf35cf4a7fe48dc5cc2d3a436c3a3eb177f76d', - 1 => - array ( - 0 => 'phpunit\\metadata\\coversmethod', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\iscoversmethod', - 2 => 'phpunit\\metadata\\classname', - 3 => 'phpunit\\metadata\\methodname', - 4 => 'phpunit\\metadata\\asstringforcodeunitmapper', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/After.php' => - array ( - 0 => 'e77ee3890289200536f69959b17b596182a7dd98', - 1 => - array ( - 0 => 'phpunit\\metadata\\after', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isafter', - 2 => 'phpunit\\metadata\\priority', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/TestDox.php' => - array ( - 0 => 'e2cca2f74fdd745a9eb84c659c73daac30260927', - 1 => - array ( - 0 => 'phpunit\\metadata\\testdox', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\istestdox', - 2 => 'phpunit\\metadata\\text', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/CoversDefaultClass.php' => - array ( - 0 => '48c2dc90398903cde7f990e53a25e729715d6aee', - 1 => - array ( - 0 => 'phpunit\\metadata\\coversdefaultclass', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\iscoversdefaultclass', - 2 => 'phpunit\\metadata\\classname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RequiresSetting.php' => - array ( - 0 => 'ff3da3a291c70d92d96264eeaa9791900c683a4f', - 1 => - array ( - 0 => 'phpunit\\metadata\\requiressetting', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isrequiressetting', - 2 => 'phpunit\\metadata\\setting', - 3 => 'phpunit\\metadata\\value', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/DependsOnMethod.php' => - array ( - 0 => '0a6438f4f72e58d7ea9ea6b9d34eceae73fcbb34', - 1 => - array ( - 0 => 'phpunit\\metadata\\dependsonmethod', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isdependsonmethod', - 2 => 'phpunit\\metadata\\classname', - 3 => 'phpunit\\metadata\\methodname', - 4 => 'phpunit\\metadata\\deepclone', - 5 => 'phpunit\\metadata\\shallowclone', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/DependsOnClass.php' => - array ( - 0 => 'df3ce346e5260aa56f35657e2b0336ef3ab599ea', - 1 => - array ( - 0 => 'phpunit\\metadata\\dependsonclass', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isdependsonclass', - 2 => 'phpunit\\metadata\\classname', - 3 => 'phpunit\\metadata\\deepclone', - 4 => 'phpunit\\metadata\\shallowclone', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/DataProvider.php' => - array ( - 0 => '1fa176f51a85e406ee8ecc7d840dba5bcafbe830', - 1 => - array ( - 0 => 'phpunit\\metadata\\dataprovider', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isdataprovider', - 2 => 'phpunit\\metadata\\classname', - 3 => 'phpunit\\metadata\\methodname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Metadata.php' => - array ( - 0 => 'ad325fc75af713894590a888e15b22b0a29017d8', - 1 => - array ( - 0 => 'phpunit\\metadata\\metadata', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\after', - 1 => 'phpunit\\metadata\\afterclass', - 2 => 'phpunit\\metadata\\backupglobalsonclass', - 3 => 'phpunit\\metadata\\backupglobalsonmethod', - 4 => 'phpunit\\metadata\\backupstaticpropertiesonclass', - 5 => 'phpunit\\metadata\\backupstaticpropertiesonmethod', - 6 => 'phpunit\\metadata\\before', - 7 => 'phpunit\\metadata\\beforeclass', - 8 => 'phpunit\\metadata\\coversclass', - 9 => 'phpunit\\metadata\\coverstrait', - 10 => 'phpunit\\metadata\\coversmethod', - 11 => 'phpunit\\metadata\\coversfunction', - 12 => 'phpunit\\metadata\\coversonclass', - 13 => 'phpunit\\metadata\\coversonmethod', - 14 => 'phpunit\\metadata\\coversdefaultclass', - 15 => 'phpunit\\metadata\\coversnothingonclass', - 16 => 'phpunit\\metadata\\coversnothingonmethod', - 17 => 'phpunit\\metadata\\dataprovider', - 18 => 'phpunit\\metadata\\dependsonclass', - 19 => 'phpunit\\metadata\\dependsonmethod', - 20 => 'phpunit\\metadata\\disablereturnvaluegenerationfortestdoubles', - 21 => 'phpunit\\metadata\\doesnotperformassertionsonclass', - 22 => 'phpunit\\metadata\\doesnotperformassertionsonmethod', - 23 => 'phpunit\\metadata\\excludeglobalvariablefrombackuponclass', - 24 => 'phpunit\\metadata\\excludeglobalvariablefrombackuponmethod', - 25 => 'phpunit\\metadata\\excludestaticpropertyfrombackuponclass', - 26 => 'phpunit\\metadata\\excludestaticpropertyfrombackuponmethod', - 27 => 'phpunit\\metadata\\grouponclass', - 28 => 'phpunit\\metadata\\grouponmethod', - 29 => 'phpunit\\metadata\\ignoredeprecationsonclass', - 30 => 'phpunit\\metadata\\ignoredeprecationsonmethod', - 31 => 'phpunit\\metadata\\ignorephpunitdeprecationsonclass', - 32 => 'phpunit\\metadata\\ignorephpunitdeprecationsonmethod', - 33 => 'phpunit\\metadata\\postcondition', - 34 => 'phpunit\\metadata\\precondition', - 35 => 'phpunit\\metadata\\preserveglobalstateonclass', - 36 => 'phpunit\\metadata\\preserveglobalstateonmethod', - 37 => 'phpunit\\metadata\\requiresfunctiononclass', - 38 => 'phpunit\\metadata\\requiresfunctiononmethod', - 39 => 'phpunit\\metadata\\requiresmethodonclass', - 40 => 'phpunit\\metadata\\requiresmethodonmethod', - 41 => 'phpunit\\metadata\\requiresoperatingsystemonclass', - 42 => 'phpunit\\metadata\\requiresoperatingsystemonmethod', - 43 => 'phpunit\\metadata\\requiresoperatingsystemfamilyonclass', - 44 => 'phpunit\\metadata\\requiresoperatingsystemfamilyonmethod', - 45 => 'phpunit\\metadata\\requiresphponclass', - 46 => 'phpunit\\metadata\\requiresphponmethod', - 47 => 'phpunit\\metadata\\requiresphpextensiononclass', - 48 => 'phpunit\\metadata\\requiresphpextensiononmethod', - 49 => 'phpunit\\metadata\\requiresphpunitonclass', - 50 => 'phpunit\\metadata\\requiresphpunitonmethod', - 51 => 'phpunit\\metadata\\requiresphpunitextensiononclass', - 52 => 'phpunit\\metadata\\requiresphpunitextensiononmethod', - 53 => 'phpunit\\metadata\\requiressettingonclass', - 54 => 'phpunit\\metadata\\requiressettingonmethod', - 55 => 'phpunit\\metadata\\runclassinseparateprocess', - 56 => 'phpunit\\metadata\\runtestsinseparateprocesses', - 57 => 'phpunit\\metadata\\runinseparateprocess', - 58 => 'phpunit\\metadata\\test', - 59 => 'phpunit\\metadata\\testdoxonclass', - 60 => 'phpunit\\metadata\\testdoxonmethod', - 61 => 'phpunit\\metadata\\testwith', - 62 => 'phpunit\\metadata\\usesclass', - 63 => 'phpunit\\metadata\\usestrait', - 64 => 'phpunit\\metadata\\usesfunction', - 65 => 'phpunit\\metadata\\usesmethod', - 66 => 'phpunit\\metadata\\usesonclass', - 67 => 'phpunit\\metadata\\usesonmethod', - 68 => 'phpunit\\metadata\\usesdefaultclass', - 69 => 'phpunit\\metadata\\withouterrorhandler', - 70 => 'phpunit\\metadata\\__construct', - 71 => 'phpunit\\metadata\\isclasslevel', - 72 => 'phpunit\\metadata\\ismethodlevel', - 73 => 'phpunit\\metadata\\isafter', - 74 => 'phpunit\\metadata\\isafterclass', - 75 => 'phpunit\\metadata\\isbackupglobals', - 76 => 'phpunit\\metadata\\isbackupstaticproperties', - 77 => 'phpunit\\metadata\\isbeforeclass', - 78 => 'phpunit\\metadata\\isbefore', - 79 => 'phpunit\\metadata\\iscovers', - 80 => 'phpunit\\metadata\\iscoversclass', - 81 => 'phpunit\\metadata\\iscoversdefaultclass', - 82 => 'phpunit\\metadata\\iscoverstrait', - 83 => 'phpunit\\metadata\\iscoversfunction', - 84 => 'phpunit\\metadata\\iscoversmethod', - 85 => 'phpunit\\metadata\\iscoversnothing', - 86 => 'phpunit\\metadata\\isdataprovider', - 87 => 'phpunit\\metadata\\isdependsonclass', - 88 => 'phpunit\\metadata\\isdependsonmethod', - 89 => 'phpunit\\metadata\\isdisablereturnvaluegenerationfortestdoubles', - 90 => 'phpunit\\metadata\\isdoesnotperformassertions', - 91 => 'phpunit\\metadata\\isexcludeglobalvariablefrombackup', - 92 => 'phpunit\\metadata\\isexcludestaticpropertyfrombackup', - 93 => 'phpunit\\metadata\\isgroup', - 94 => 'phpunit\\metadata\\isignoredeprecations', - 95 => 'phpunit\\metadata\\isignorephpunitdeprecations', - 96 => 'phpunit\\metadata\\isrunclassinseparateprocess', - 97 => 'phpunit\\metadata\\isruninseparateprocess', - 98 => 'phpunit\\metadata\\isruntestsinseparateprocesses', - 99 => 'phpunit\\metadata\\istest', - 100 => 'phpunit\\metadata\\isprecondition', - 101 => 'phpunit\\metadata\\ispostcondition', - 102 => 'phpunit\\metadata\\ispreserveglobalstate', - 103 => 'phpunit\\metadata\\isrequiresmethod', - 104 => 'phpunit\\metadata\\isrequiresfunction', - 105 => 'phpunit\\metadata\\isrequiresoperatingsystem', - 106 => 'phpunit\\metadata\\isrequiresoperatingsystemfamily', - 107 => 'phpunit\\metadata\\isrequiresphp', - 108 => 'phpunit\\metadata\\isrequiresphpextension', - 109 => 'phpunit\\metadata\\isrequiresphpunit', - 110 => 'phpunit\\metadata\\isrequiresphpunitextension', - 111 => 'phpunit\\metadata\\isrequiressetting', - 112 => 'phpunit\\metadata\\istestdox', - 113 => 'phpunit\\metadata\\istestwith', - 114 => 'phpunit\\metadata\\isuses', - 115 => 'phpunit\\metadata\\isusesclass', - 116 => 'phpunit\\metadata\\isusesdefaultclass', - 117 => 'phpunit\\metadata\\isusestrait', - 118 => 'phpunit\\metadata\\isusesfunction', - 119 => 'phpunit\\metadata\\isusesmethod', - 120 => 'phpunit\\metadata\\iswithouterrorhandler', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RunInSeparateProcess.php' => - array ( - 0 => 'd4b2556df0523f2e9b2081202b90acdf0ee6e2e8', - 1 => - array ( - 0 => 'phpunit\\metadata\\runinseparateprocess', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\isruninseparateprocess', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/UsesFunction.php' => - array ( - 0 => '15f41f035ec4a4260ae77e31a9714ed0dd4687ba', - 1 => - array ( - 0 => 'phpunit\\metadata\\usesfunction', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isusesfunction', - 2 => 'phpunit\\metadata\\functionname', - 3 => 'phpunit\\metadata\\asstringforcodeunitmapper', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/UsesMethod.php' => - array ( - 0 => '75520d79f98ca0cdf49f6c726fb51257a6977ce6', - 1 => - array ( - 0 => 'phpunit\\metadata\\usesmethod', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isusesmethod', - 2 => 'phpunit\\metadata\\classname', - 3 => 'phpunit\\metadata\\methodname', - 4 => 'phpunit\\metadata\\asstringforcodeunitmapper', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/AfterClass.php' => - array ( - 0 => 'b86aeffbb9630c276a7486fff8cda8e0f751103b', - 1 => - array ( - 0 => 'phpunit\\metadata\\afterclass', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isafterclass', - 2 => 'phpunit\\metadata\\priority', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Uses.php' => - array ( - 0 => 'e7a4528f99e337a4ac6c0ae5a75327a7a122540c', - 1 => - array ( - 0 => 'phpunit\\metadata\\uses', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isuses', - 2 => 'phpunit\\metadata\\target', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Parser/AttributeParser.php' => - array ( - 0 => '5087d8f595a4778c1ae8a564372c4ada0ece7720', - 1 => - array ( - 0 => 'phpunit\\metadata\\parser\\attributeparser', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\parser\\forclass', - 1 => 'phpunit\\metadata\\parser\\formethod', - 2 => 'phpunit\\metadata\\parser\\forclassandmethod', - 3 => 'phpunit\\metadata\\parser\\issizegroup', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Parser/Parser.php' => - array ( - 0 => 'c93648c1649b75f147371b1a3516146168f3d0e3', - 1 => - array ( - 0 => 'phpunit\\metadata\\parser\\parser', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\parser\\forclass', - 1 => 'phpunit\\metadata\\parser\\formethod', - 2 => 'phpunit\\metadata\\parser\\forclassandmethod', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Parser/Registry.php' => - array ( - 0 => '3ab731226fc6e8b7bb27bb549d164a557277e13f', - 1 => - array ( - 0 => 'phpunit\\metadata\\parser\\registry', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\parser\\parser', - 1 => 'phpunit\\metadata\\parser\\build', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Parser/CachingParser.php' => - array ( - 0 => '504641e0361d27cf399ae12b2caff038c91785d8', - 1 => - array ( - 0 => 'phpunit\\metadata\\parser\\cachingparser', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\parser\\__construct', - 1 => 'phpunit\\metadata\\parser\\forclass', - 2 => 'phpunit\\metadata\\parser\\formethod', - 3 => 'phpunit\\metadata\\parser\\forclassandmethod', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Parser/Annotation/Registry.php' => - array ( - 0 => '51bc710191b9ebec05875657f11df2d70ff5b4f7', - 1 => - array ( - 0 => 'phpunit\\metadata\\annotation\\parser\\registry', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\annotation\\parser\\getinstance', - 1 => 'phpunit\\metadata\\annotation\\parser\\forclassname', - 2 => 'phpunit\\metadata\\annotation\\parser\\formethod', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Parser/Annotation/DocBlock.php' => - array ( - 0 => 'ed07043174124ee00f4a59bd31684e5bac12b022', - 1 => - array ( - 0 => 'phpunit\\metadata\\annotation\\parser\\docblock', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\annotation\\parser\\ofclass', - 1 => 'phpunit\\metadata\\annotation\\parser\\ofmethod', - 2 => 'phpunit\\metadata\\annotation\\parser\\__construct', - 3 => 'phpunit\\metadata\\annotation\\parser\\requirements', - 4 => 'phpunit\\metadata\\annotation\\parser\\symbolannotations', - 5 => 'phpunit\\metadata\\annotation\\parser\\parsedocblock', - 6 => 'phpunit\\metadata\\annotation\\parser\\extractannotationsfromreflector', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Parser/AnnotationParser.php' => - array ( - 0 => 'a9b172a26d151b691f819c2eef833bfab4b77168', - 1 => - array ( - 0 => 'phpunit\\metadata\\parser\\annotationparser', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\parser\\forclass', - 1 => 'phpunit\\metadata\\parser\\formethod', - 2 => 'phpunit\\metadata\\parser\\forclassandmethod', - 3 => 'phpunit\\metadata\\parser\\stringtobool', - 4 => 'phpunit\\metadata\\parser\\cleanupcoversorusestarget', - 5 => 'phpunit\\metadata\\parser\\parserequirements', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Parser/ParserChain.php' => - array ( - 0 => 'dcc533e7e394248bdd63f62e9e125d1868053a6e', - 1 => - array ( - 0 => 'phpunit\\metadata\\parser\\parserchain', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\parser\\__construct', - 1 => 'phpunit\\metadata\\parser\\forclass', - 2 => 'phpunit\\metadata\\parser\\formethod', - 3 => 'phpunit\\metadata\\parser\\forclassandmethod', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/UsesDefaultClass.php' => - array ( - 0 => '1eea84c33879aa776e29b9f6bfebd3ad77ec1dd1', - 1 => - array ( - 0 => 'phpunit\\metadata\\usesdefaultclass', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isusesdefaultclass', - 2 => 'phpunit\\metadata\\classname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/PreserveGlobalState.php' => - array ( - 0 => '32f5d27a4251c6e2b7dd6e0d14cbe58af6bf4f18', - 1 => - array ( - 0 => 'phpunit\\metadata\\preserveglobalstate', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\ispreserveglobalstate', - 2 => 'phpunit\\metadata\\enabled', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RequiresPhpunitExtension.php' => - array ( - 0 => 'b17905b07a3dc0bd28699935622fcb01040c6117', - 1 => - array ( - 0 => 'phpunit\\metadata\\requiresphpunitextension', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isrequiresphpunitextension', - 2 => 'phpunit\\metadata\\extensionclass', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/MetadataCollection.php' => - array ( - 0 => '843353e3b92e3a27bb0cfeee89849038745cbb18', - 1 => - array ( - 0 => 'phpunit\\metadata\\metadatacollection', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\fromarray', - 1 => 'phpunit\\metadata\\__construct', - 2 => 'phpunit\\metadata\\asarray', - 3 => 'phpunit\\metadata\\count', - 4 => 'phpunit\\metadata\\isempty', - 5 => 'phpunit\\metadata\\isnotempty', - 6 => 'phpunit\\metadata\\getiterator', - 7 => 'phpunit\\metadata\\mergewith', - 8 => 'phpunit\\metadata\\isclasslevel', - 9 => 'phpunit\\metadata\\ismethodlevel', - 10 => 'phpunit\\metadata\\isafter', - 11 => 'phpunit\\metadata\\isafterclass', - 12 => 'phpunit\\metadata\\isbackupglobals', - 13 => 'phpunit\\metadata\\isbackupstaticproperties', - 14 => 'phpunit\\metadata\\isbeforeclass', - 15 => 'phpunit\\metadata\\isbefore', - 16 => 'phpunit\\metadata\\iscovers', - 17 => 'phpunit\\metadata\\iscoversclass', - 18 => 'phpunit\\metadata\\iscoversdefaultclass', - 19 => 'phpunit\\metadata\\iscoverstrait', - 20 => 'phpunit\\metadata\\iscoversfunction', - 21 => 'phpunit\\metadata\\iscoversmethod', - 22 => 'phpunit\\metadata\\isexcludeglobalvariablefrombackup', - 23 => 'phpunit\\metadata\\isexcludestaticpropertyfrombackup', - 24 => 'phpunit\\metadata\\iscoversnothing', - 25 => 'phpunit\\metadata\\isdataprovider', - 26 => 'phpunit\\metadata\\isdepends', - 27 => 'phpunit\\metadata\\isdependsonclass', - 28 => 'phpunit\\metadata\\isdependsonmethod', - 29 => 'phpunit\\metadata\\isdisablereturnvaluegenerationfortestdoubles', - 30 => 'phpunit\\metadata\\isdoesnotperformassertions', - 31 => 'phpunit\\metadata\\isgroup', - 32 => 'phpunit\\metadata\\isignoredeprecations', - 33 => 'phpunit\\metadata\\isignorephpunitdeprecations', - 34 => 'phpunit\\metadata\\isrunclassinseparateprocess', - 35 => 'phpunit\\metadata\\isruninseparateprocess', - 36 => 'phpunit\\metadata\\isruntestsinseparateprocesses', - 37 => 'phpunit\\metadata\\istest', - 38 => 'phpunit\\metadata\\isprecondition', - 39 => 'phpunit\\metadata\\ispostcondition', - 40 => 'phpunit\\metadata\\ispreserveglobalstate', - 41 => 'phpunit\\metadata\\isrequiresmethod', - 42 => 'phpunit\\metadata\\isrequiresfunction', - 43 => 'phpunit\\metadata\\isrequiresoperatingsystem', - 44 => 'phpunit\\metadata\\isrequiresoperatingsystemfamily', - 45 => 'phpunit\\metadata\\isrequiresphp', - 46 => 'phpunit\\metadata\\isrequiresphpextension', - 47 => 'phpunit\\metadata\\isrequiresphpunit', - 48 => 'phpunit\\metadata\\isrequiresphpunitextension', - 49 => 'phpunit\\metadata\\isrequiressetting', - 50 => 'phpunit\\metadata\\istestdox', - 51 => 'phpunit\\metadata\\istestwith', - 52 => 'phpunit\\metadata\\isuses', - 53 => 'phpunit\\metadata\\isusesclass', - 54 => 'phpunit\\metadata\\isusesdefaultclass', - 55 => 'phpunit\\metadata\\isusestrait', - 56 => 'phpunit\\metadata\\isusesfunction', - 57 => 'phpunit\\metadata\\isusesmethod', - 58 => 'phpunit\\metadata\\iswithouterrorhandler', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RequiresMethod.php' => - array ( - 0 => '3650956e25497a9a8ad8aa0ce7c4b4826266b3de', - 1 => - array ( - 0 => 'phpunit\\metadata\\requiresmethod', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isrequiresmethod', - 2 => 'phpunit\\metadata\\classname', - 3 => 'phpunit\\metadata\\methodname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Test.php' => - array ( - 0 => 'f5c2a2790f58a2105579268d4d0f6ff963a80fef', - 1 => - array ( - 0 => 'phpunit\\metadata\\test', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\istest', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RequiresPhpunit.php' => - array ( - 0 => '8dbba34c69edb5ef8ac0a92e99805208a1de13dd', - 1 => - array ( - 0 => 'phpunit\\metadata\\requiresphpunit', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isrequiresphpunit', - 2 => 'phpunit\\metadata\\versionrequirement', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/MetadataCollectionIterator.php' => - array ( - 0 => '1a81033d52da5baaaf19f8091be2c7963712027c', - 1 => - array ( - 0 => 'phpunit\\metadata\\metadatacollectioniterator', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\rewind', - 2 => 'phpunit\\metadata\\valid', - 3 => 'phpunit\\metadata\\key', - 4 => 'phpunit\\metadata\\current', - 5 => 'phpunit\\metadata\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/DisableReturnValueGenerationForTestDoubles.php' => - array ( - 0 => '14c8c8d615aa1db3fe8c5873cd1e40919be22631', - 1 => - array ( - 0 => 'phpunit\\metadata\\disablereturnvaluegenerationfortestdoubles', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\isdisablereturnvaluegenerationfortestdoubles', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/ExcludeGlobalVariableFromBackup.php' => - array ( - 0 => 'bf3d138a3aebab5b6970e5d22fe24e9fb8c596a3', - 1 => - array ( - 0 => 'phpunit\\metadata\\excludeglobalvariablefrombackup', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isexcludeglobalvariablefrombackup', - 2 => 'phpunit\\metadata\\globalvariablename', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/IgnorePhpunitDeprecations.php' => - array ( - 0 => '2b672f381e5f32851068b058ba03f4dd9d008fe1', - 1 => - array ( - 0 => 'phpunit\\metadata\\ignorephpunitdeprecations', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\isignorephpunitdeprecations', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/WithoutErrorHandler.php' => - array ( - 0 => 'c6e1e8c2ea375638b41921659546c0fb16aad57d', - 1 => - array ( - 0 => 'phpunit\\metadata\\withouterrorhandler', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\iswithouterrorhandler', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Version/ComparisonRequirement.php' => - array ( - 0 => '4d4898a8b9c9f9327a4dcf11d538030823e37313', - 1 => - array ( - 0 => 'phpunit\\metadata\\version\\comparisonrequirement', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\version\\__construct', - 1 => 'phpunit\\metadata\\version\\issatisfiedby', - 2 => 'phpunit\\metadata\\version\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Version/ConstraintRequirement.php' => - array ( - 0 => '792ab212266d1fb7d82373143990642204a04817', - 1 => - array ( - 0 => 'phpunit\\metadata\\version\\constraintrequirement', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\version\\__construct', - 1 => 'phpunit\\metadata\\version\\issatisfiedby', - 2 => 'phpunit\\metadata\\version\\asstring', - 3 => 'phpunit\\metadata\\version\\sanitize', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Version/Requirement.php' => - array ( - 0 => '882be26052e7693a185e2603d84365e1089e4a47', - 1 => - array ( - 0 => 'phpunit\\metadata\\version\\requirement', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\version\\from', - 1 => 'phpunit\\metadata\\version\\issatisfiedby', - 2 => 'phpunit\\metadata\\version\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RequiresFunction.php' => - array ( - 0 => '8b9dbcc2f1c75c8f9a10ddbb0d5635d5196b9aed', - 1 => - array ( - 0 => 'phpunit\\metadata\\requiresfunction', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isrequiresfunction', - 2 => 'phpunit\\metadata\\functionname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/ExcludeStaticPropertyFromBackup.php' => - array ( - 0 => 'caa2f11c2243d13a7d46bbfa5d947bd5bbb02e07', - 1 => - array ( - 0 => 'phpunit\\metadata\\excludestaticpropertyfrombackup', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isexcludestaticpropertyfrombackup', - 2 => 'phpunit\\metadata\\classname', - 3 => 'phpunit\\metadata\\propertyname', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RequiresPhpExtension.php' => - array ( - 0 => '204147ae46fc92d38f530b6fe789d79615fb02c9', - 1 => - array ( - 0 => 'phpunit\\metadata\\requiresphpextension', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isrequiresphpextension', - 2 => 'phpunit\\metadata\\extension', - 3 => 'phpunit\\metadata\\hasversionrequirement', - 4 => 'phpunit\\metadata\\versionrequirement', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/DoesNotPerformAssertions.php' => - array ( - 0 => 'b17d64d572cf95638a4bc6dc5f7fa17f60e96459', - 1 => - array ( - 0 => 'phpunit\\metadata\\doesnotperformassertions', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\isdoesnotperformassertions', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/PreCondition.php' => - array ( - 0 => 'd9fa6ffdfdd69d6c64b0b4999c9aadfb99040912', - 1 => - array ( - 0 => 'phpunit\\metadata\\precondition', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isprecondition', - 2 => 'phpunit\\metadata\\priority', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RequiresOperatingSystem.php' => - array ( - 0 => '5545b792a72561a6c01448e4b6260dd44de5be55', - 1 => - array ( - 0 => 'phpunit\\metadata\\requiresoperatingsystem', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isrequiresoperatingsystem', - 2 => 'phpunit\\metadata\\operatingsystem', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/BackupStaticProperties.php' => - array ( - 0 => 'd83217e880969d2cef5023bd2f7d262ef56f9a56', - 1 => - array ( - 0 => 'phpunit\\metadata\\backupstaticproperties', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isbackupstaticproperties', - 2 => 'phpunit\\metadata\\enabled', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Api/HookMethods.php' => - array ( - 0 => '48adb20b58aa47b8d5ec3b7e43e317e26e824a8a', - 1 => - array ( - 0 => 'phpunit\\metadata\\api\\hookmethods', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\api\\hookmethods', - 1 => 'phpunit\\metadata\\api\\emptyhookmethodsarray', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Api/CodeCoverage.php' => - array ( - 0 => 'bd09619575272229f6e2cba5defd8b09074b26bc', - 1 => - array ( - 0 => 'phpunit\\metadata\\api\\codecoverage', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\api\\linestobecovered', - 1 => 'phpunit\\metadata\\api\\linestobeused', - 2 => 'phpunit\\metadata\\api\\shouldcodecoveragebecollectedfor', - 3 => 'phpunit\\metadata\\api\\maptocodeunits', - 4 => 'phpunit\\metadata\\api\\names', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Api/DataProvider.php' => - array ( - 0 => '9b37a44bbb61c7624dc6e8880889e91ad5aff098', - 1 => - array ( - 0 => 'phpunit\\metadata\\api\\dataprovider', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\api\\provideddata', - 1 => 'phpunit\\metadata\\api\\dataprovidedbymethods', - 2 => 'phpunit\\metadata\\api\\dataprovidedbymetadata', - 3 => 'phpunit\\metadata\\api\\dataprovidedbytestwithannotation', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Api/Requirements.php' => - array ( - 0 => '20b68ad248f66f8b2dfc2844f26df82c9efdc149', - 1 => - array ( - 0 => 'phpunit\\metadata\\api\\requirements', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\api\\requirementsnotsatisfiedfor', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Api/Dependencies.php' => - array ( - 0 => '569085b18f9d67b7d17cc1d274e9c549e50bf0fc', - 1 => - array ( - 0 => 'phpunit\\metadata\\api\\dependencies', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\api\\dependencies', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Api/Groups.php' => - array ( - 0 => '4b9571f8257cb556c120f21bdb6b3039400658fa', - 1 => - array ( - 0 => 'phpunit\\metadata\\api\\groups', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\api\\groups', - 1 => 'phpunit\\metadata\\api\\size', - 2 => 'phpunit\\metadata\\api\\canonicalizename', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/TestWith.php' => - array ( - 0 => '8385a9bd1a369e2305a6bc55258626611897861c', - 1 => - array ( - 0 => 'phpunit\\metadata\\testwith', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\istestwith', - 2 => 'phpunit\\metadata\\data', - 3 => 'phpunit\\metadata\\hasname', - 4 => 'phpunit\\metadata\\name', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/CoversNothing.php' => - array ( - 0 => '193f8ab93b9d169d7163a87e409f9169649bb031', - 1 => - array ( - 0 => 'phpunit\\metadata\\coversnothing', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\iscoversnothing', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/CoversFunction.php' => - array ( - 0 => '6ad6aa9e6fe7854b80c209fc995d5877354be78b', - 1 => - array ( - 0 => 'phpunit\\metadata\\coversfunction', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\iscoversfunction', - 2 => 'phpunit\\metadata\\functionname', - 3 => 'phpunit\\metadata\\asstringforcodeunitmapper', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/UsesClass.php' => - array ( - 0 => '6fbfb19a5623aa546b26bde5c325421d29c8ffdb', - 1 => - array ( - 0 => 'phpunit\\metadata\\usesclass', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isusesclass', - 2 => 'phpunit\\metadata\\classname', - 3 => 'phpunit\\metadata\\asstringforcodeunitmapper', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/IgnoreDeprecations.php' => - array ( - 0 => 'dd917bfa994ae40dd21da384f1ebbd0149c4946e', - 1 => - array ( - 0 => 'phpunit\\metadata\\ignoredeprecations', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\isignoredeprecations', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/PostCondition.php' => - array ( - 0 => '570bfdf869d7a10bf1a84e1b646a4933475e855c', - 1 => - array ( - 0 => 'phpunit\\metadata\\postcondition', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\ispostcondition', - 2 => 'phpunit\\metadata\\priority', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/BeforeClass.php' => - array ( - 0 => '35cc21a394c580b66c1d3bd40144c0e798d526e5', - 1 => - array ( - 0 => 'phpunit\\metadata\\beforeclass', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isbeforeclass', - 2 => 'phpunit\\metadata\\priority', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Exception/InvalidVersionRequirementException.php' => - array ( - 0 => 'e62ba4e9fec73b10bae23917147c91d8094d5341', - 1 => - array ( - 0 => 'phpunit\\metadata\\invalidversionrequirementexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Exception/ReflectionException.php' => - array ( - 0 => '9c2fe91d15be7251fdd7409147b2394b71f43557', - 1 => - array ( - 0 => 'phpunit\\metadata\\reflectionexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Exception/AnnotationsAreNotSupportedForInternalClassesException.php' => - array ( - 0 => '245fc7c071d5d9c2366846535e658a60064d4346', - 1 => - array ( - 0 => 'phpunit\\metadata\\annotationsarenotsupportedforinternalclassesexception', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Exception/NoVersionRequirementException.php' => - array ( - 0 => 'cc7a64f2fce8f852a7861cfc34875b20b4370d4c', - 1 => - array ( - 0 => 'phpunit\\metadata\\noversionrequirementexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Exception/Exception.php' => - array ( - 0 => '07470204cc4cc5fb672463fae706beb5a7b7907c', - 1 => - array ( - 0 => 'phpunit\\metadata\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/CoversClass.php' => - array ( - 0 => '5b3b876abe8b5d67b894d1212a4b4357c2c5d12b', - 1 => - array ( - 0 => 'phpunit\\metadata\\coversclass', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\iscoversclass', - 2 => 'phpunit\\metadata\\classname', - 3 => 'phpunit\\metadata\\asstringforcodeunitmapper', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/RunTestsInSeparateProcesses.php' => - array ( - 0 => 'ab4d9f54f1a8b2a72553cd378317033ac642ace3', - 1 => - array ( - 0 => 'phpunit\\metadata\\runtestsinseparateprocesses', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\isruntestsinseparateprocesses', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/BackupGlobals.php' => - array ( - 0 => 'b28760a8e76a674c724f8ddff70fff3b09e9c5f3', - 1 => - array ( - 0 => 'phpunit\\metadata\\backupglobals', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isbackupglobals', - 2 => 'phpunit\\metadata\\enabled', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Metadata/Covers.php' => - array ( - 0 => '247842a063305f69bad47cfcc2cde417e301115a', - 1 => - array ( - 0 => 'phpunit\\metadata\\covers', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\iscovers', - 2 => 'phpunit\\metadata\\target', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/EventLogger.php' => - array ( - 0 => '031d73a64ec2e63365244d82d56e510b7c7ec4df', - 1 => - array ( - 0 => 'phpunit\\logging\\eventlogger', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\__construct', - 1 => 'phpunit\\logging\\trace', - 2 => 'phpunit\\logging\\telemetryinfo', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestErroredSubscriber.php' => - array ( - 0 => 'da6c69ac0ce95b8be4ecbe79f49d462a0b13b64c', - 1 => - array ( - 0 => 'phpunit\\logging\\junit\\testerroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\junit\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestPrintedUnexpectedOutputSubscriber.php' => - array ( - 0 => '24262943213ecb70a776510c79b68d0644cd6800', - 1 => - array ( - 0 => 'phpunit\\logging\\junit\\testprintedunexpectedoutputsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\junit\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestFailedSubscriber.php' => - array ( - 0 => '8cce4e184c755ba0de942dcd10e2944d9e69e585', - 1 => - array ( - 0 => 'phpunit\\logging\\junit\\testfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\junit\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestRunnerExecutionFinishedSubscriber.php' => - array ( - 0 => 'e8afd14f758c737e703ed60f925477192661eb4a', - 1 => - array ( - 0 => 'phpunit\\logging\\junit\\testrunnerexecutionfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\junit\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestSuiteFinishedSubscriber.php' => - array ( - 0 => '2eb99f21ac0b18993c8e877ff7f4cb1e2ca8ef9d', - 1 => - array ( - 0 => 'phpunit\\logging\\junit\\testsuitefinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\junit\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestMarkedIncompleteSubscriber.php' => - array ( - 0 => 'aca628e059279086d08feab91a0f17493eda53bc', - 1 => - array ( - 0 => 'phpunit\\logging\\junit\\testmarkedincompletesubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\junit\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestPreparedSubscriber.php' => - array ( - 0 => '05d979565bc4a4de74da2db5e80fa99165ece2c5', - 1 => - array ( - 0 => 'phpunit\\logging\\junit\\testpreparedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\junit\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestPreparationStartedSubscriber.php' => - array ( - 0 => '9644fbab4c42f7eb1e354328ef204a16ea954821', - 1 => - array ( - 0 => 'phpunit\\logging\\junit\\testpreparationstartedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\junit\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestSuiteStartedSubscriber.php' => - array ( - 0 => '7d83b461164ce450e5202194a298279e53e887d4', - 1 => - array ( - 0 => 'phpunit\\logging\\junit\\testsuitestartedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\junit\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestPreparationFailedSubscriber.php' => - array ( - 0 => '8ef7d57de2047424f4444a03e7074e8105321347', - 1 => - array ( - 0 => 'phpunit\\logging\\junit\\testpreparationfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\junit\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/Subscriber.php' => - array ( - 0 => '9c47cc22c8221f2194cd16d4df3da34d3b9bf0f0', - 1 => - array ( - 0 => 'phpunit\\logging\\junit\\subscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\junit\\__construct', - 1 => 'phpunit\\logging\\junit\\logger', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestSkippedSubscriber.php' => - array ( - 0 => 'cf184a15259a73998ff88bdbb3236e3bedc342fb', - 1 => - array ( - 0 => 'phpunit\\logging\\junit\\testskippedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\junit\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestFinishedSubscriber.php' => - array ( - 0 => 'da9432957a2b7101bcb070016646ca6ead84ab09', - 1 => - array ( - 0 => 'phpunit\\logging\\junit\\testfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\junit\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/JUnit/JunitXmlLogger.php' => - array ( - 0 => '98aae36893fd57b61d2d237adeb296e3d659c010', - 1 => - array ( - 0 => 'phpunit\\logging\\junit\\junitxmllogger', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\junit\\__construct', - 1 => 'phpunit\\logging\\junit\\flush', - 2 => 'phpunit\\logging\\junit\\testsuitestarted', - 3 => 'phpunit\\logging\\junit\\testsuitefinished', - 4 => 'phpunit\\logging\\junit\\testpreparationstarted', - 5 => 'phpunit\\logging\\junit\\testpreparationfailed', - 6 => 'phpunit\\logging\\junit\\testprepared', - 7 => 'phpunit\\logging\\junit\\testprintedunexpectedoutput', - 8 => 'phpunit\\logging\\junit\\testfinished', - 9 => 'phpunit\\logging\\junit\\testmarkedincomplete', - 10 => 'phpunit\\logging\\junit\\testskipped', - 11 => 'phpunit\\logging\\junit\\testerrored', - 12 => 'phpunit\\logging\\junit\\testfailed', - 13 => 'phpunit\\logging\\junit\\handlefinish', - 14 => 'phpunit\\logging\\junit\\registersubscribers', - 15 => 'phpunit\\logging\\junit\\createdocument', - 16 => 'phpunit\\logging\\junit\\handlefault', - 17 => 'phpunit\\logging\\junit\\handleincompleteorskipped', - 18 => 'phpunit\\logging\\junit\\testasstring', - 19 => 'phpunit\\logging\\junit\\name', - 20 => 'phpunit\\logging\\junit\\createtestcase', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/TeamCityLogger.php' => - array ( - 0 => 'c1cf100d38ff107afbb8ff904c09f73e04af6708', - 1 => - array ( - 0 => 'phpunit\\logging\\teamcity\\teamcitylogger', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\teamcity\\__construct', - 1 => 'phpunit\\logging\\teamcity\\testsuitestarted', - 2 => 'phpunit\\logging\\teamcity\\testsuitefinished', - 3 => 'phpunit\\logging\\teamcity\\testprepared', - 4 => 'phpunit\\logging\\teamcity\\testmarkedincomplete', - 5 => 'phpunit\\logging\\teamcity\\testskipped', - 6 => 'phpunit\\logging\\teamcity\\testsuiteskipped', - 7 => 'phpunit\\logging\\teamcity\\beforefirsttestmethoderrored', - 8 => 'phpunit\\logging\\teamcity\\testerrored', - 9 => 'phpunit\\logging\\teamcity\\testfailed', - 10 => 'phpunit\\logging\\teamcity\\testconsideredrisky', - 11 => 'phpunit\\logging\\teamcity\\testfinished', - 12 => 'phpunit\\logging\\teamcity\\flush', - 13 => 'phpunit\\logging\\teamcity\\registersubscribers', - 14 => 'phpunit\\logging\\teamcity\\setflowid', - 15 => 'phpunit\\logging\\teamcity\\writemessage', - 16 => 'phpunit\\logging\\teamcity\\duration', - 17 => 'phpunit\\logging\\teamcity\\escape', - 18 => 'phpunit\\logging\\teamcity\\message', - 19 => 'phpunit\\logging\\teamcity\\details', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestErroredSubscriber.php' => - array ( - 0 => '759aa675a931ae49465eb0599a3d3e6e31943cfb', - 1 => - array ( - 0 => 'phpunit\\logging\\teamcity\\testerroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\teamcity\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestConsideredRiskySubscriber.php' => - array ( - 0 => '4afc90eacbd462a7da74de4090e0976718220ed9', - 1 => - array ( - 0 => 'phpunit\\logging\\teamcity\\testconsideredriskysubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\teamcity\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestFailedSubscriber.php' => - array ( - 0 => 'b11808a16f6214f1bdeb6514194807eb8e0c85cc', - 1 => - array ( - 0 => 'phpunit\\logging\\teamcity\\testfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\teamcity\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSuiteSkippedSubscriber.php' => - array ( - 0 => '3d5f5792cc425b419000298846201917d40b8c5b', - 1 => - array ( - 0 => 'phpunit\\logging\\teamcity\\testsuiteskippedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\teamcity\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestRunnerExecutionFinishedSubscriber.php' => - array ( - 0 => '1e829e85cfffc573c842ffe818342ab1c233e147', - 1 => - array ( - 0 => 'phpunit\\logging\\teamcity\\testrunnerexecutionfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\teamcity\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSuiteFinishedSubscriber.php' => - array ( - 0 => 'b138a415c81597ccc787b801b97b85430c9eba58', - 1 => - array ( - 0 => 'phpunit\\logging\\teamcity\\testsuitefinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\teamcity\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestMarkedIncompleteSubscriber.php' => - array ( - 0 => 'b92bec35c43adc52992174cdf5a10647259c1467', - 1 => - array ( - 0 => 'phpunit\\logging\\teamcity\\testmarkedincompletesubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\teamcity\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestPreparedSubscriber.php' => - array ( - 0 => '3c0ff77336ab9f4fbcbc85b7c12c413aa5dbfc98', - 1 => - array ( - 0 => 'phpunit\\logging\\teamcity\\testpreparedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\teamcity\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSuiteStartedSubscriber.php' => - array ( - 0 => 'f7d352194ad30736a09df3f9e718d347dfe51c1a', - 1 => - array ( - 0 => 'phpunit\\logging\\teamcity\\testsuitestartedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\teamcity\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSuiteBeforeFirstTestMethodErroredSubscriber.php' => - array ( - 0 => '9422313954cdc7baeabed70671ab42dfdc663bdf', - 1 => - array ( - 0 => 'phpunit\\logging\\teamcity\\testsuitebeforefirsttestmethoderroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\teamcity\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/Subscriber.php' => - array ( - 0 => '154bfdc93955a2ef6becf85152f3b8277ede2d02', - 1 => - array ( - 0 => 'phpunit\\logging\\teamcity\\subscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\teamcity\\__construct', - 1 => 'phpunit\\logging\\teamcity\\logger', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestSkippedSubscriber.php' => - array ( - 0 => 'dd8a538ca885d4091049da0ef176ebe2024199a0', - 1 => - array ( - 0 => 'phpunit\\logging\\teamcity\\testskippedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\teamcity\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TeamCity/Subscriber/TestFinishedSubscriber.php' => - array ( - 0 => 'f2c269759fb38845e3dffe42ca4ea15685777482', - 1 => - array ( - 0 => 'phpunit\\logging\\teamcity\\testfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\teamcity\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/PlainTextRenderer.php' => - array ( - 0 => 'c68e644c9a5c18fde556bea39f735c8002197fcf', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\plaintextrenderer', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\render', - 1 => 'phpunit\\logging\\testdox\\reduce', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/TestResult.php' => - array ( - 0 => '886885ce7ea20be66d1ca4efc37519ef5cda88cb', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testresult', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\__construct', - 1 => 'phpunit\\logging\\testdox\\test', - 2 => 'phpunit\\logging\\testdox\\status', - 3 => 'phpunit\\logging\\testdox\\hasthrowable', - 4 => 'phpunit\\logging\\testdox\\throwable', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/TestResultCollector.php' => - array ( - 0 => '3e31dbef729cfed453f4f1dde0e9b523dec7f224', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testresultcollector', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\__construct', - 1 => 'phpunit\\logging\\testdox\\testmethodsgroupedbyclass', - 2 => 'phpunit\\logging\\testdox\\testprepared', - 3 => 'phpunit\\logging\\testdox\\testerrored', - 4 => 'phpunit\\logging\\testdox\\testfailed', - 5 => 'phpunit\\logging\\testdox\\testpassed', - 6 => 'phpunit\\logging\\testdox\\testskipped', - 7 => 'phpunit\\logging\\testdox\\testmarkedincomplete', - 8 => 'phpunit\\logging\\testdox\\testconsideredrisky', - 9 => 'phpunit\\logging\\testdox\\testtriggereddeprecation', - 10 => 'phpunit\\logging\\testdox\\testtriggerednotice', - 11 => 'phpunit\\logging\\testdox\\testtriggeredwarning', - 12 => 'phpunit\\logging\\testdox\\testtriggeredphpdeprecation', - 13 => 'phpunit\\logging\\testdox\\testtriggeredphpnotice', - 14 => 'phpunit\\logging\\testdox\\testtriggeredphpwarning', - 15 => 'phpunit\\logging\\testdox\\testtriggeredphpunitdeprecation', - 16 => 'phpunit\\logging\\testdox\\testtriggeredphpuniterror', - 17 => 'phpunit\\logging\\testdox\\testtriggeredphpunitwarning', - 18 => 'phpunit\\logging\\testdox\\testfinished', - 19 => 'phpunit\\logging\\testdox\\registersubscribers', - 20 => 'phpunit\\logging\\testdox\\updateteststatus', - 21 => 'phpunit\\logging\\testdox\\process', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/TestResultCollection.php' => - array ( - 0 => '8a366256058b8c179173f40277a4657a60ffbabd', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testresultcollection', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\fromarray', - 1 => 'phpunit\\logging\\testdox\\__construct', - 2 => 'phpunit\\logging\\testdox\\asarray', - 3 => 'phpunit\\logging\\testdox\\getiterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestErroredSubscriber.php' => - array ( - 0 => '300b7f5e5232f49475c9b02c6496f7aeb32f74c0', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testerroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestConsideredRiskySubscriber.php' => - array ( - 0 => 'b7e35be31fa798a94344adb2119f623dc17eeaef', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testconsideredriskysubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestTriggeredNoticeSubscriber.php' => - array ( - 0 => 'bb2b36b1d979cb5626e95974a3188b27dcc4ec37', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testtriggerednoticesubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestTriggeredPhpunitWarningSubscriber.php' => - array ( - 0 => 'c5d862cf50a14a0f72acecd6e3779d90fc636cae', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testtriggeredphpunitwarningsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestFailedSubscriber.php' => - array ( - 0 => '1291bc2f9c33b5b01ba06536293587e7402c93c2', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestTriggeredPhpunitErrorSubscriber.php' => - array ( - 0 => 'fe8dcd7e06894cb703d62cbb077f23bcd86b016e', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testtriggeredphpuniterrorsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestPassedSubscriber.php' => - array ( - 0 => '9196ad7b09bca9642481cf04b22c15077687b4ba', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testpassedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestTriggeredWarningSubscriber.php' => - array ( - 0 => 'fbc9e71af65470c8a7d631111e2689492574099e', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testtriggeredwarningsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestTriggeredDeprecationSubscriber.php' => - array ( - 0 => '3344bc4669e7238efbdf64fcad8d23180982ceda', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testtriggereddeprecationsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestTriggeredPhpDeprecationSubscriber.php' => - array ( - 0 => 'b1762737517b0d10fec0161e2b43cdcc6950702e', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testtriggeredphpdeprecationsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestMarkedIncompleteSubscriber.php' => - array ( - 0 => 'b6f1ed6717426330a77d5ab648e50d1299f7a756', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testmarkedincompletesubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestPreparedSubscriber.php' => - array ( - 0 => '986a4828443d2196ed91ced731d34d72a54bda00', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testpreparedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestTriggeredPhpWarningSubscriber.php' => - array ( - 0 => '923c93a4fa62f1a63c6e97e1420893cf29b9725d', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testtriggeredphpwarningsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/Subscriber.php' => - array ( - 0 => '440215500e3db8b0516dad35c52592abfe92121e', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\subscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\__construct', - 1 => 'phpunit\\logging\\testdox\\collector', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestSkippedSubscriber.php' => - array ( - 0 => 'd2989b9ab69206308c1cb135dff0ede2a7cee203', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testskippedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestFinishedSubscriber.php' => - array ( - 0 => '0c5e1887f1e20c0cd48915d9718f8ab0023b75bd', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestTriggeredPhpunitDeprecationSubscriber.php' => - array ( - 0 => 'c81f90119f2f048a935f4e67ee26d0a030c213da', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testtriggeredphpunitdeprecationsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/Subscriber/TestTriggeredPhpNoticeSubscriber.php' => - array ( - 0 => 'c51a494d35662a15d76abd38bd81971faac9fe87', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testtriggeredphpnoticesubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\notify', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/TestResultCollectionIterator.php' => - array ( - 0 => '9b793f044708fed6a2902961f05c0350b1004fcc', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\testresultcollectioniterator', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\__construct', - 1 => 'phpunit\\logging\\testdox\\rewind', - 2 => 'phpunit\\logging\\testdox\\valid', - 3 => 'phpunit\\logging\\testdox\\key', - 4 => 'phpunit\\logging\\testdox\\current', - 5 => 'phpunit\\logging\\testdox\\next', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/NamePrettifier.php' => - array ( - 0 => '47ca6c5e596da83b84719f99fdb724918c334709', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\nameprettifier', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\prettifytestclassname', - 1 => 'phpunit\\logging\\testdox\\prettifytestmethodname', - 2 => 'phpunit\\logging\\testdox\\prettifytestcase', - 3 => 'phpunit\\logging\\testdox\\prettifydataset', - 4 => 'phpunit\\logging\\testdox\\maptestmethodparameternamestoprovideddatavalues', - 5 => 'phpunit\\logging\\testdox\\objecttostring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/phpunit/src/Logging/TestDox/HtmlRenderer.php' => - array ( - 0 => '9684183c5c89339093cc8621db8a2f225eba4e08', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\htmlrenderer', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\render', - 1 => 'phpunit\\logging\\testdox\\reduce', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/84/a4/84a40994bab1ce5efea436d89f9ce568b53ecfe6.php b/build/phpstan/cache/PHPStan/84/a4/84a40994bab1ce5efea436d89f9ce568b53ecfe6.php deleted file mode 100644 index a384939..0000000 --- a/build/phpstan/cache/PHPStan/84/a4/84a40994bab1ce5efea436d89f9ce568b53ecfe6.php +++ /dev/null @@ -1,283 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Diff.php' => - array ( - 0 => '867d968b67880c397228d32a4b347efffce8aaaa', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\diff', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\__construct', - 1 => 'sebastianbergmann\\diff\\from', - 2 => 'sebastianbergmann\\diff\\to', - 3 => 'sebastianbergmann\\diff\\chunks', - 4 => 'sebastianbergmann\\diff\\setchunks', - 5 => 'sebastianbergmann\\diff\\getiterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Parser.php' => - array ( - 0 => '93087cfad4c8a2b687acc1b36bacfaa54c5cec21', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\parser', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\parse', - 1 => 'sebastianbergmann\\diff\\parsefilediff', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php' => - array ( - 0 => '463678f06839786edb3b1838cd5eee94f3280f28', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\timeefficientlongestcommonsubsequencecalculator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\calculate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php' => - array ( - 0 => '9c751fa05c0afc12c4272bf6ee5f4dfeeb6a24e9', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\output\\diffonlyoutputbuilder', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\output\\__construct', - 1 => 'sebastianbergmann\\diff\\output\\getdiff', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Output/DiffOutputBuilderInterface.php' => - array ( - 0 => '8aaef38bcbed8458e9ae4e919544c234ec45f916', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\output\\diffoutputbuilderinterface', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\output\\getdiff', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php' => - array ( - 0 => '2535e3d63eb2d2b40d854a82b803a4a96b131d17', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\output\\unifieddiffoutputbuilder', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\output\\__construct', - 1 => 'sebastianbergmann\\diff\\output\\getdiff', - 2 => 'sebastianbergmann\\diff\\output\\writediffhunks', - 3 => 'sebastianbergmann\\diff\\output\\writehunk', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Output/StrictUnifiedDiffOutputBuilder.php' => - array ( - 0 => 'f102ae8102c820874f6bcc20858850363a52a2e2', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\output\\strictunifieddiffoutputbuilder', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\output\\__construct', - 1 => 'sebastianbergmann\\diff\\output\\getdiff', - 2 => 'sebastianbergmann\\diff\\output\\writediffhunks', - 3 => 'sebastianbergmann\\diff\\output\\writehunk', - 4 => 'sebastianbergmann\\diff\\output\\assertstring', - 5 => 'sebastianbergmann\\diff\\output\\assertstringornull', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php' => - array ( - 0 => '9abcd9bfe1d5427a12c8dcd86bad72ef3c35446e', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\output\\abstractchunkoutputbuilder', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\output\\getcommonchunks', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/LongestCommonSubsequenceCalculator.php' => - array ( - 0 => '48dc5b3654bf8d4950bbdb6af729f6dcf13bda16', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\longestcommonsubsequencecalculator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\calculate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Chunk.php' => - array ( - 0 => '96b80df1ddfc182ce203db60604f488806c4c2c5', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\chunk', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\__construct', - 1 => 'sebastianbergmann\\diff\\start', - 2 => 'sebastianbergmann\\diff\\startrange', - 3 => 'sebastianbergmann\\diff\\end', - 4 => 'sebastianbergmann\\diff\\endrange', - 5 => 'sebastianbergmann\\diff\\lines', - 6 => 'sebastianbergmann\\diff\\setlines', - 7 => 'sebastianbergmann\\diff\\getiterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Differ.php' => - array ( - 0 => '54a64c5803afd2df69db5dfc539647cb8c9d0056', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\differ', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\__construct', - 1 => 'sebastianbergmann\\diff\\diff', - 2 => 'sebastianbergmann\\diff\\difftoarray', - 3 => 'sebastianbergmann\\diff\\splitstringbylines', - 4 => 'sebastianbergmann\\diff\\selectlcsimplementation', - 5 => 'sebastianbergmann\\diff\\calculateestimatedfootprint', - 6 => 'sebastianbergmann\\diff\\detectunmatchedlineendings', - 7 => 'sebastianbergmann\\diff\\getlinebreak', - 8 => 'sebastianbergmann\\diff\\getarraydiffparted', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Line.php' => - array ( - 0 => '4868ab2e8cc004c3d95900dc8cca3533f7d54c6b', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\line', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\__construct', - 1 => 'sebastianbergmann\\diff\\content', - 2 => 'sebastianbergmann\\diff\\type', - 3 => 'sebastianbergmann\\diff\\isadded', - 4 => 'sebastianbergmann\\diff\\isremoved', - 5 => 'sebastianbergmann\\diff\\isunchanged', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Exception/ConfigurationException.php' => - array ( - 0 => '571cbfb177038436a3e578ac8c70aadeecd6e1bd', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\configurationexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Exception/InvalidArgumentException.php' => - array ( - 0 => 'b28e42d650f365b33fbdea839fcabdc7caec6327', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\invalidargumentexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/Exception/Exception.php' => - array ( - 0 => '865e3da032089b0a5694654f5f4f50be667a495b', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php' => - array ( - 0 => '1094567a27eb68b63a68e3fb9781698c0786f8ea', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\memoryefficientlongestcommonsubsequencecalculator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\calculate', - 1 => 'sebastianbergmann\\diff\\length', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/8a/14/8a14f3d3b3e606f04b1918b7e196a0be3465009d.php b/build/phpstan/cache/PHPStan/8a/14/8a14f3d3b3e606f04b1918b7e196a0be3465009d.php deleted file mode 100644 index 4d7c72f..0000000 --- a/build/phpstan/cache/PHPStan/8a/14/8a14f3d3b3e606f04b1918b7e196a0be3465009d.php +++ /dev/null @@ -1,100 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/cli-parser/src/Parser.php' => - array ( - 0 => '517dbea4d8a6272691f0225149eb79b272a53694', - 1 => - array ( - 0 => 'sebastianbergmann\\cliparser\\parser', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\cliparser\\parse', - 1 => 'sebastianbergmann\\cliparser\\parseshortoption', - 2 => 'sebastianbergmann\\cliparser\\parselongoption', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/cli-parser/src/exceptions/AmbiguousOptionException.php' => - array ( - 0 => '5cbf71bd59993fba2e04573fd2af3e896ba6cb44', - 1 => - array ( - 0 => 'sebastianbergmann\\cliparser\\ambiguousoptionexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\cliparser\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/cli-parser/src/exceptions/UnknownOptionException.php' => - array ( - 0 => 'f0605798d3c3ae00645df1385df6c8d62f211b0f', - 1 => - array ( - 0 => 'sebastianbergmann\\cliparser\\unknownoptionexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\cliparser\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/cli-parser/src/exceptions/OptionDoesNotAllowArgumentException.php' => - array ( - 0 => 'cda9342e391e62cf0d074e78b888e34325ac1d58', - 1 => - array ( - 0 => 'sebastianbergmann\\cliparser\\optiondoesnotallowargumentexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\cliparser\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/cli-parser/src/exceptions/Exception.php' => - array ( - 0 => '9f4eed104c2dff7495ead0ec11c708ab090e9cef', - 1 => - array ( - 0 => 'sebastianbergmann\\cliparser\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/cli-parser/src/exceptions/RequiredOptionArgumentMissingException.php' => - array ( - 0 => '5f59479dd69423f980e20119ac5a3462e87cf3e9', - 1 => - array ( - 0 => 'sebastianbergmann\\cliparser\\requiredoptionargumentmissingexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\cliparser\\__construct', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/91/0a/910a030abadecf5c5fa70574719fa1a9e445819b.php b/build/phpstan/cache/PHPStan/91/0a/910a030abadecf5c5fa70574719fa1a9e445819b.php deleted file mode 100644 index f455940..0000000 --- a/build/phpstan/cache/PHPStan/91/0a/910a030abadecf5c5fa70574719fa1a9e445819b.php +++ /dev/null @@ -1,81 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php' => - array ( - 0 => 'e0e4bac5c82637b71bfdf01c897435f71d41cd02', - 1 => - array ( - 0 => 'phptoken', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php' => - array ( - 0 => 'fed6a92720e1d9b3692ac59205e682bcb8648c27', - 1 => - array ( - 0 => 'valueerror', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php' => - array ( - 0 => '47c6abc4ac611a90c5b2467dcb2ea538e007ba86', - 1 => - array ( - 0 => 'attribute', - ), - 2 => - array ( - 0 => '__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php' => - array ( - 0 => '84ba3b5c3e0a192c71d9dabad016b25f87206100', - 1 => - array ( - 0 => 'unhandledmatcherror', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php' => - array ( - 0 => 'e357f36e99e71a1ac08785024dd6fda3c0b6e50a', - 1 => - array ( - 0 => 'stringable', - ), - 2 => - array ( - 0 => '__tostring', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/93/a6/93a65a90404c0b8255b5d5ea24facd09461b9c65.php b/build/phpstan/cache/PHPStan/93/a6/93a65a90404c0b8255b5d5ea24facd09461b9c65.php deleted file mode 100644 index 662d142..0000000 --- a/build/phpstan/cache/PHPStan/93/a6/93a65a90404c0b8255b5d5ea24facd09461b9c65.php +++ /dev/null @@ -1,60 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/staabm/side-effects-detector/lib/SideEffect.php' => - array ( - 0 => 'e82c420734a6cebde3936a3958834743054f3317', - 1 => - array ( - 0 => 'staabm\\sideeffectsdetector\\sideeffect', - ), - 2 => - array ( - 0 => 'staabm\\sideeffectsdetector\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/staabm/side-effects-detector/lib/SideEffectsDetector.php' => - array ( - 0 => '5310c220f3d865767580042159f29a44f831fed2', - 1 => - array ( - 0 => 'staabm\\sideeffectsdetector\\sideeffectsdetector', - ), - 2 => - array ( - 0 => 'staabm\\sideeffectsdetector\\__construct', - 1 => 'staabm\\sideeffectsdetector\\getsideeffects', - 2 => 'staabm\\sideeffectsdetector\\getfunctioncallsideeffect', - 3 => 'staabm\\sideeffectsdetector\\getfunctioncall', - 4 => 'staabm\\sideeffectsdetector\\getmethodcall', - 5 => 'staabm\\sideeffectsdetector\\getpropertyaccess', - 6 => 'staabm\\sideeffectsdetector\\isanonymousfunction', - 7 => 'staabm\\sideeffectsdetector\\isnonlocalvariable', - 8 => 'staabm\\sideeffectsdetector\\consumewhitespaces', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/staabm/side-effects-detector/lib/functionMetadata.php' => - array ( - 0 => '1aa618dad516dc9f87bd8ef9a71e91b294af1b37', - 1 => - array ( - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/a5/ef/a5ef67a94513bfca8b8d3367ec2281a467d31aa0.php b/build/phpstan/cache/PHPStan/a5/ef/a5ef67a94513bfca8b8d3367ec2281a467d31aa0.php deleted file mode 100644 index eb97290..0000000 --- a/build/phpstan/cache/PHPStan/a5/ef/a5ef67a94513bfca8b8d3367ec2281a467d31aa0.php +++ /dev/null @@ -1,155 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/SendCodeAttempt.php' => - array ( - 0 => '817192ee4c53c98ee66b95fa7a93ce36ce60da61', - 1 => - array ( - 0 => 'codebarag\\twilioverify\\dto\\sendcodeattempt', - ), - 2 => - array ( - 0 => 'codebarag\\twilioverify\\dto\\fromjson', - 1 => 'codebarag\\twilioverify\\dto\\__construct', - 2 => 'codebarag\\twilioverify\\dto\\fake', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Lookup.php' => - array ( - 0 => '663d718349590d62d061ff06d74b2bc3386eb400', - 1 => - array ( - 0 => 'codebarag\\twilioverify\\dto\\lookup', - ), - 2 => - array ( - 0 => 'codebarag\\twilioverify\\dto\\fromjson', - 1 => 'codebarag\\twilioverify\\dto\\__construct', - 2 => 'codebarag\\twilioverify\\dto\\fake', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Carrier.php' => - array ( - 0 => '7da5ffd7840bc0b774fc4a59e4e73b5052c0be0a', - 1 => - array ( - 0 => 'codebarag\\twilioverify\\dto\\carrier', - ), - 2 => - array ( - 0 => 'codebarag\\twilioverify\\dto\\fromjson', - 1 => 'codebarag\\twilioverify\\dto\\__construct', - 2 => 'codebarag\\twilioverify\\dto\\fake', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationCheck.php' => - array ( - 0 => '7693b0519141ae6da87c38cdda24993a049620b9', - 1 => - array ( - 0 => 'codebarag\\twilioverify\\dto\\verificationcheck', - ), - 2 => - array ( - 0 => 'codebarag\\twilioverify\\dto\\fromjson', - 1 => 'codebarag\\twilioverify\\dto\\__construct', - 2 => 'codebarag\\twilioverify\\dto\\fake', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationStart.php' => - array ( - 0 => '9b19f716cf38d10f62ca384113123ed4e1c7761e', - 1 => - array ( - 0 => 'codebarag\\twilioverify\\dto\\verificationstart', - ), - 2 => - array ( - 0 => 'codebarag\\twilioverify\\dto\\fromjson', - 1 => 'codebarag\\twilioverify\\dto\\__construct', - 2 => 'codebarag\\twilioverify\\dto\\fake', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Facades/TwilioVerify.php' => - array ( - 0 => '2d1f9c680b5984fd5d334c97f4c6f2f44de5b30c', - 1 => - array ( - 0 => 'codebarag\\twilioverify\\facades\\twilioverify', - ), - 2 => - array ( - 0 => 'codebarag\\twilioverify\\facades\\getfacadeaccessor', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerifyServiceProvider.php' => - array ( - 0 => '799286f4dc4761543a7b839ca514b05b8dc7da2d', - 1 => - array ( - 0 => 'codebarag\\twilioverify\\twilioverifyserviceprovider', - ), - 2 => - array ( - 0 => 'codebarag\\twilioverify\\configurepackage', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php' => - array ( - 0 => '96189db70fabdfc22c267a88f53770945bad83f8', - 1 => - array ( - 0 => 'codebarag\\twilioverify\\twilioverify', - ), - 2 => - array ( - 0 => 'codebarag\\twilioverify\\start', - 1 => 'codebarag\\twilioverify\\check', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Events/TwilioVerifyResponseLog.php' => - array ( - 0 => '63889fe332ad4f651fb52fa89071509a626381d6', - 1 => - array ( - 0 => 'codebarag\\twilioverify\\events\\twilioverifyresponselog', - ), - 2 => - array ( - 0 => 'codebarag\\twilioverify\\events\\__construct', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/b2/e0/b2e02cf2732c9617965041b7a99ee064bc826cd0.php b/build/phpstan/cache/PHPStan/b2/e0/b2e02cf2732c9617965041b7a99ee064bc826cd0.php deleted file mode 100644 index 13012c3..0000000 --- a/build/phpstan/cache/PHPStan/b2/e0/b2e02cf2732c9617965041b7a99ee064bc826cd0.php +++ /dev/null @@ -1,80 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-file-iterator/src/Factory.php' => - array ( - 0 => 'e69d15c6d5f465604fad3df75be7607ddcf9543b', - 1 => - array ( - 0 => 'sebastianbergmann\\fileiterator\\factory', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\fileiterator\\getfileiterator', - 1 => 'sebastianbergmann\\fileiterator\\resolvewildcards', - 2 => 'sebastianbergmann\\fileiterator\\globstar', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-file-iterator/src/ExcludeIterator.php' => - array ( - 0 => 'bbc6dea49a445f0aebb485d20ab9a8a6626a9b72', - 1 => - array ( - 0 => 'sebastianbergmann\\fileiterator\\excludeiterator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\fileiterator\\__construct', - 1 => 'sebastianbergmann\\fileiterator\\accept', - 2 => 'sebastianbergmann\\fileiterator\\haschildren', - 3 => 'sebastianbergmann\\fileiterator\\getchildren', - 4 => 'sebastianbergmann\\fileiterator\\getinneriterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-file-iterator/src/Iterator.php' => - array ( - 0 => '678ba73fbeb1648ef0ec82e55c8e273889a8bd91', - 1 => - array ( - 0 => 'sebastianbergmann\\fileiterator\\iterator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\fileiterator\\__construct', - 1 => 'sebastianbergmann\\fileiterator\\accept', - 2 => 'sebastianbergmann\\fileiterator\\acceptpath', - 3 => 'sebastianbergmann\\fileiterator\\acceptprefix', - 4 => 'sebastianbergmann\\fileiterator\\acceptsuffix', - 5 => 'sebastianbergmann\\fileiterator\\acceptsubstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-file-iterator/src/Facade.php' => - array ( - 0 => 'f803b327d5045ca3f9fc605e30f734ca1e8a0c76', - 1 => - array ( - 0 => 'sebastianbergmann\\fileiterator\\facade', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\fileiterator\\getfilesasarray', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/c1/b4/c1b49cadb80a008d8cb2c27752c1a42874937f1d.php b/build/phpstan/cache/PHPStan/c1/b4/c1b49cadb80a008d8cb2c27752c1a42874937f1d.php deleted file mode 100644 index 0b2172b..0000000 --- a/build/phpstan/cache/PHPStan/c1/b4/c1b49cadb80a008d8cb2c27752c1a42874937f1d.php +++ /dev/null @@ -1,36 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/exporter/src/Exporter.php' => - array ( - 0 => 'dcc53ec1b74a7c6f1ec34c104365031cb1700326', - 1 => - array ( - 0 => 'sebastianbergmann\\exporter\\exporter', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\exporter\\__construct', - 1 => 'sebastianbergmann\\exporter\\export', - 2 => 'sebastianbergmann\\exporter\\shortenedrecursiveexport', - 3 => 'sebastianbergmann\\exporter\\shortenedexport', - 4 => 'sebastianbergmann\\exporter\\toarray', - 5 => 'sebastianbergmann\\exporter\\countproperties', - 6 => 'sebastianbergmann\\exporter\\shortenedcountedrecursiveexport', - 7 => 'sebastianbergmann\\exporter\\recursiveexport', - 8 => 'sebastianbergmann\\exporter\\exportfloat', - 9 => 'sebastianbergmann\\exporter\\exportstring', - 10 => 'sebastianbergmann\\exporter\\exportarray', - 11 => 'sebastianbergmann\\exporter\\exportobject', - 12 => 'sebastianbergmann\\exporter\\canbereflected', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/cache-cleared b/build/phpstan/cache/PHPStan/cache-cleared deleted file mode 100644 index 00d6e08..0000000 --- a/build/phpstan/cache/PHPStan/cache-cleared +++ /dev/null @@ -1 +0,0 @@ -v2-new \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/cd/78/cd78ea1a722f55fbdf8cc3074755796931e58d2c.php b/build/phpstan/cache/PHPStan/cd/78/cd78ea1a722f55fbdf8cc3074755796931e58d2c.php deleted file mode 100644 index 84187d0..0000000 --- a/build/phpstan/cache/PHPStan/cd/78/cd78ea1a722f55fbdf8cc3074755796931e58d2c.php +++ /dev/null @@ -1,24 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/object-reflector/src/ObjectReflector.php' => - array ( - 0 => 'e6bf7acfc21191d4cb97019587e8155b56d5899e', - 1 => - array ( - 0 => 'sebastianbergmann\\objectreflector\\objectreflector', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\objectreflector\\getproperties', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/d3/49/d34941c9b51578194f0b34346537775aadaabad9.php b/build/phpstan/cache/PHPStan/d3/49/d34941c9b51578194f0b34346537775aadaabad9.php deleted file mode 100644 index eb31a15..0000000 --- a/build/phpstan/cache/PHPStan/d3/49/d34941c9b51578194f0b34346537775aadaabad9.php +++ /dev/null @@ -1,68 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-invoker/src/exceptions/ProcessControlExtensionNotLoadedException.php' => - array ( - 0 => 'beccc7e344258fc935b2fb16c70a3031dc8774f8', - 1 => - array ( - 0 => 'sebastianbergmann\\invoker\\processcontrolextensionnotloadedexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\invoker\\__construct', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-invoker/src/exceptions/Exception.php' => - array ( - 0 => 'e609d0d0f184625197ba28482c4c64be5522d7e7', - 1 => - array ( - 0 => 'sebastianbergmann\\invoker\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-invoker/src/exceptions/TimeoutException.php' => - array ( - 0 => 'a7dee3db7905c74e0e49f19523e8774516b7911a', - 1 => - array ( - 0 => 'sebastianbergmann\\invoker\\timeoutexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpunit/php-invoker/src/Invoker.php' => - array ( - 0 => '775668352efb01412200aeeec37e20c07aee4fa6', - 1 => - array ( - 0 => 'sebastianbergmann\\invoker\\invoker', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\invoker\\invoke', - 1 => 'sebastianbergmann\\invoker\\caninvokewithtimeout', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/db/8c/db8c0db4ba2dd8fead2765782b3dc89efa80174d.php b/build/phpstan/cache/PHPStan/db/8c/db8c0db4ba2dd8fead2765782b3dc89efa80174d.php deleted file mode 100644 index 64537c3..0000000 --- a/build/phpstan/cache/PHPStan/db/8c/db8c0db4ba2dd8fead2765782b3dc89efa80174d.php +++ /dev/null @@ -1,431 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/ReflectionMapper.php' => - array ( - 0 => '5f05b6d1b2c8df45a359adb5fe759804be2c3b29', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\reflectionmapper', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\fromparametertypes', - 1 => 'sebastianbergmann\\type\\fromreturntype', - 2 => 'sebastianbergmann\\type\\frompropertytype', - 3 => 'sebastianbergmann\\type\\mapnamedtype', - 4 => 'sebastianbergmann\\type\\mapuniontype', - 5 => 'sebastianbergmann\\type\\mapintersectiontype', - 6 => 'sebastianbergmann\\type\\hasreturntype', - 7 => 'sebastianbergmann\\type\\returntype', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/GenericObjectType.php' => - array ( - 0 => '90a21f1e803a2986b7eeee2f7ddf5b57b23fdbec', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\genericobjecttype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\__construct', - 1 => 'sebastianbergmann\\type\\isassignable', - 2 => 'sebastianbergmann\\type\\name', - 3 => 'sebastianbergmann\\type\\allowsnull', - 4 => 'sebastianbergmann\\type\\isgenericobject', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/SimpleType.php' => - array ( - 0 => '03509b2ff7f7005b4c4afe6f6b3c89ccd8e12a2f', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\simpletype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\__construct', - 1 => 'sebastianbergmann\\type\\isassignable', - 2 => 'sebastianbergmann\\type\\name', - 3 => 'sebastianbergmann\\type\\allowsnull', - 4 => 'sebastianbergmann\\type\\value', - 5 => 'sebastianbergmann\\type\\issimple', - 6 => 'sebastianbergmann\\type\\normalize', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/Type.php' => - array ( - 0 => '164ba4ce5de99b1ae2c6c0a1c5ad2f140409279a', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\type', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\fromvalue', - 1 => 'sebastianbergmann\\type\\fromname', - 2 => 'sebastianbergmann\\type\\asstring', - 3 => 'sebastianbergmann\\type\\iscallable', - 4 => 'sebastianbergmann\\type\\istrue', - 5 => 'sebastianbergmann\\type\\isfalse', - 6 => 'sebastianbergmann\\type\\isgenericobject', - 7 => 'sebastianbergmann\\type\\isintersection', - 8 => 'sebastianbergmann\\type\\isiterable', - 9 => 'sebastianbergmann\\type\\ismixed', - 10 => 'sebastianbergmann\\type\\isnever', - 11 => 'sebastianbergmann\\type\\isnull', - 12 => 'sebastianbergmann\\type\\isobject', - 13 => 'sebastianbergmann\\type\\issimple', - 14 => 'sebastianbergmann\\type\\isstatic', - 15 => 'sebastianbergmann\\type\\isunion', - 16 => 'sebastianbergmann\\type\\isunknown', - 17 => 'sebastianbergmann\\type\\isvoid', - 18 => 'sebastianbergmann\\type\\isassignable', - 19 => 'sebastianbergmann\\type\\name', - 20 => 'sebastianbergmann\\type\\allowsnull', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/NullType.php' => - array ( - 0 => '86694eff276f25f27f277549b5d9e91d00b7d0c0', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\nulltype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\isassignable', - 1 => 'sebastianbergmann\\type\\name', - 2 => 'sebastianbergmann\\type\\asstring', - 3 => 'sebastianbergmann\\type\\allowsnull', - 4 => 'sebastianbergmann\\type\\isnull', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/ObjectType.php' => - array ( - 0 => 'addf53b5282463b386308b7e8cb8f3efab0e3721', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\objecttype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\__construct', - 1 => 'sebastianbergmann\\type\\isassignable', - 2 => 'sebastianbergmann\\type\\name', - 3 => 'sebastianbergmann\\type\\allowsnull', - 4 => 'sebastianbergmann\\type\\classname', - 5 => 'sebastianbergmann\\type\\isobject', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/CallableType.php' => - array ( - 0 => '6bc5d9eb83a4b79327868a17fd739fdda69a791a', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\callabletype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\__construct', - 1 => 'sebastianbergmann\\type\\isassignable', - 2 => 'sebastianbergmann\\type\\name', - 3 => 'sebastianbergmann\\type\\allowsnull', - 4 => 'sebastianbergmann\\type\\iscallable', - 5 => 'sebastianbergmann\\type\\isclosure', - 6 => 'sebastianbergmann\\type\\hasinvokemethod', - 7 => 'sebastianbergmann\\type\\isfunction', - 8 => 'sebastianbergmann\\type\\isobjectcallback', - 9 => 'sebastianbergmann\\type\\isclasscallback', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/UnionType.php' => - array ( - 0 => 'e00b10fc348196b3faa7f839c3e2c3d3ea328ef4', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\uniontype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\__construct', - 1 => 'sebastianbergmann\\type\\isassignable', - 2 => 'sebastianbergmann\\type\\asstring', - 3 => 'sebastianbergmann\\type\\name', - 4 => 'sebastianbergmann\\type\\allowsnull', - 5 => 'sebastianbergmann\\type\\isunion', - 6 => 'sebastianbergmann\\type\\containsintersectiontypes', - 7 => 'sebastianbergmann\\type\\types', - 8 => 'sebastianbergmann\\type\\ensureminimumoftwotypes', - 9 => 'sebastianbergmann\\type\\ensureonlyvalidtypes', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/NeverType.php' => - array ( - 0 => 'd2bef1e0de9200890269e3f5fa716cb888eb46ce', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\nevertype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\isassignable', - 1 => 'sebastianbergmann\\type\\name', - 2 => 'sebastianbergmann\\type\\allowsnull', - 3 => 'sebastianbergmann\\type\\isnever', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/StaticType.php' => - array ( - 0 => '6a25d1dcc8000c5e06af28c47cfc8fe70769b2ef', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\statictype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\__construct', - 1 => 'sebastianbergmann\\type\\isassignable', - 2 => 'sebastianbergmann\\type\\name', - 3 => 'sebastianbergmann\\type\\allowsnull', - 4 => 'sebastianbergmann\\type\\isstatic', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/UnknownType.php' => - array ( - 0 => '5c35c049e5a939c13ab2eda15d976368664e514d', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\unknowntype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\isassignable', - 1 => 'sebastianbergmann\\type\\name', - 2 => 'sebastianbergmann\\type\\asstring', - 3 => 'sebastianbergmann\\type\\allowsnull', - 4 => 'sebastianbergmann\\type\\isunknown', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/TrueType.php' => - array ( - 0 => 'fb53a4d00920f4333556e9238f978cee51e9c6d5', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\truetype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\isassignable', - 1 => 'sebastianbergmann\\type\\name', - 2 => 'sebastianbergmann\\type\\allowsnull', - 3 => 'sebastianbergmann\\type\\istrue', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/VoidType.php' => - array ( - 0 => '36306fc76e3359a1948e2ca8541899f00352dc23', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\voidtype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\isassignable', - 1 => 'sebastianbergmann\\type\\name', - 2 => 'sebastianbergmann\\type\\allowsnull', - 3 => 'sebastianbergmann\\type\\isvoid', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/IntersectionType.php' => - array ( - 0 => 'a8d302515d0ecb2e91526284cc2c1e187b8fd57b', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\intersectiontype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\__construct', - 1 => 'sebastianbergmann\\type\\isassignable', - 2 => 'sebastianbergmann\\type\\asstring', - 3 => 'sebastianbergmann\\type\\name', - 4 => 'sebastianbergmann\\type\\allowsnull', - 5 => 'sebastianbergmann\\type\\isintersection', - 6 => 'sebastianbergmann\\type\\types', - 7 => 'sebastianbergmann\\type\\ensureminimumoftwotypes', - 8 => 'sebastianbergmann\\type\\ensureonlyvalidtypes', - 9 => 'sebastianbergmann\\type\\ensurenoduplicatetypes', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/MixedType.php' => - array ( - 0 => '876ce137de0543622c701676f2f4e5451136f2a0', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\mixedtype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\isassignable', - 1 => 'sebastianbergmann\\type\\asstring', - 2 => 'sebastianbergmann\\type\\name', - 3 => 'sebastianbergmann\\type\\allowsnull', - 4 => 'sebastianbergmann\\type\\ismixed', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/IterableType.php' => - array ( - 0 => '3466f145571228db152bd492099b974a87968236', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\iterabletype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\__construct', - 1 => 'sebastianbergmann\\type\\isassignable', - 2 => 'sebastianbergmann\\type\\name', - 3 => 'sebastianbergmann\\type\\allowsnull', - 4 => 'sebastianbergmann\\type\\isiterable', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/type/FalseType.php' => - array ( - 0 => '2ace94bb063bde06ae2c0219a77a98000860cdc5', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\falsetype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\isassignable', - 1 => 'sebastianbergmann\\type\\name', - 2 => 'sebastianbergmann\\type\\allowsnull', - 3 => 'sebastianbergmann\\type\\isfalse', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/TypeName.php' => - array ( - 0 => '3542d9da97b5f6bc5238f7a0511251fb6c57afb5', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\typename', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\fromqualifiedname', - 1 => 'sebastianbergmann\\type\\fromreflection', - 2 => 'sebastianbergmann\\type\\__construct', - 3 => 'sebastianbergmann\\type\\namespacename', - 4 => 'sebastianbergmann\\type\\simplename', - 5 => 'sebastianbergmann\\type\\qualifiedname', - 6 => 'sebastianbergmann\\type\\isnamespaced', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/exception/RuntimeException.php' => - array ( - 0 => 'dc36595e29c96c23c5d6328d306db02cc76e63fb', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/exception/Exception.php' => - array ( - 0 => 'ea8fc19a2156a69c8b69f4ca0aee6caec9ecc698', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/type/src/Parameter.php' => - array ( - 0 => '35330c0c3ed3e98ba399bc97496d37698bfabc2c', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\parameter', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\type\\__construct', - 1 => 'sebastianbergmann\\type\\name', - 2 => 'sebastianbergmann\\type\\type', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/e3/77/e377435bc038aa32a919661780f5e0dc748fb2f3.php b/build/phpstan/cache/PHPStan/e3/77/e377435bc038aa32a919661780f5e0dc748fb2f3.php deleted file mode 100644 index 3496547..0000000 --- a/build/phpstan/cache/PHPStan/e3/77/e377435bc038aa32a919661780f5e0dc748fb2f3.php +++ /dev/null @@ -1,24 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/symfony/polyfill-php84/Resources/stubs/Deprecated.php' => - array ( - 0 => 'ae070590b6e01ff65312d593de5fa704cca8b2ee', - 1 => - array ( - 0 => 'deprecated', - ), - 2 => - array ( - 0 => '__construct', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/f3/fa/f3faba961ca84af4300b2bdad07f065a411b1674.php b/build/phpstan/cache/PHPStan/f3/fa/f3faba961ca84af4300b2bdad07f065a411b1674.php deleted file mode 100644 index 34d092f..0000000 --- a/build/phpstan/cache/PHPStan/f3/fa/f3faba961ca84af4300b2bdad07f065a411b1674.php +++ /dev/null @@ -1,31 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/sebastian/recursion-context/src/Context.php' => - array ( - 0 => '59cb254cf2efe5b02ba944e9d3c027041902c199', - 1 => - array ( - 0 => 'sebastianbergmann\\recursioncontext\\context', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\recursioncontext\\__construct', - 1 => 'sebastianbergmann\\recursioncontext\\__destruct', - 2 => 'sebastianbergmann\\recursioncontext\\add', - 3 => 'sebastianbergmann\\recursioncontext\\contains', - 4 => 'sebastianbergmann\\recursioncontext\\addarray', - 5 => 'sebastianbergmann\\recursioncontext\\addobject', - 6 => 'sebastianbergmann\\recursioncontext\\containsarray', - 7 => 'sebastianbergmann\\recursioncontext\\containsobject', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/f4/d3/f4d3da1e3370f2b6dcebda97974db0b1f154bfaa.php b/build/phpstan/cache/PHPStan/f4/d3/f4d3da1e3370f2b6dcebda97974db0b1f154bfaa.php deleted file mode 100644 index 2b9c6f8..0000000 --- a/build/phpstan/cache/PHPStan/f4/d3/f4d3da1e3370f2b6dcebda97974db0b1f154bfaa.php +++ /dev/null @@ -1,847 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/StaticClass.php' => - array ( - 0 => '2d40c3a3019f48cf7ba4d23f015e8391db85b322', - 1 => - array ( - 0 => 'nette\\staticclass', - ), - 2 => - array ( - 0 => 'nette\\__construct', - 1 => 'nette\\__callstatic', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Translator.php' => - array ( - 0 => '8290eb3f9a53dd09c63a7f2ed5d369639068185b', - 1 => - array ( - 0 => 'nette\\localization\\translator', - ), - 2 => - array ( - 0 => 'nette\\localization\\translate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/DateTime.php' => - array ( - 0 => '6dd5eb4474dd74aa2030ced8ad2aeed4ee961beb', - 1 => - array ( - 0 => 'nette\\utils\\datetime', - ), - 2 => - array ( - 0 => 'nette\\utils\\from', - 1 => 'nette\\utils\\fromparts', - 2 => 'nette\\utils\\createfromformat', - 3 => 'nette\\utils\\jsonserialize', - 4 => 'nette\\utils\\__tostring', - 5 => 'nette\\utils\\modifyclone', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Finder.php' => - array ( - 0 => '621b06ebaf68a9e0e67acee82d84e4afa821a3ef', - 1 => - array ( - 0 => 'nette\\utils\\finder', - ), - 2 => - array ( - 0 => 'nette\\utils\\find', - 1 => 'nette\\utils\\findfiles', - 2 => 'nette\\utils\\finddirectories', - 3 => 'nette\\utils\\files', - 4 => 'nette\\utils\\directories', - 5 => 'nette\\utils\\addmask', - 6 => 'nette\\utils\\in', - 7 => 'nette\\utils\\from', - 8 => 'nette\\utils\\addlocation', - 9 => 'nette\\utils\\childfirst', - 10 => 'nette\\utils\\ignoreunreadabledirs', - 11 => 'nette\\utils\\sortby', - 12 => 'nette\\utils\\sortbyname', - 13 => 'nette\\utils\\append', - 14 => 'nette\\utils\\exclude', - 15 => 'nette\\utils\\filter', - 16 => 'nette\\utils\\descentfilter', - 17 => 'nette\\utils\\limitdepth', - 18 => 'nette\\utils\\size', - 19 => 'nette\\utils\\date', - 20 => 'nette\\utils\\collect', - 21 => 'nette\\utils\\getiterator', - 22 => 'nette\\utils\\traversedir', - 23 => 'nette\\utils\\converttofiles', - 24 => 'nette\\utils\\provefilters', - 25 => 'nette\\utils\\buildplan', - 26 => 'nette\\utils\\splitrecursivepart', - 27 => 'nette\\utils\\buildpattern', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/ImageType.php' => - array ( - 0 => '5260583e471fb1325407187b0c2a73b9a54f4960', - 1 => - array ( - 0 => 'nette\\utils\\imagetype', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/ArrayList.php' => - array ( - 0 => '41fdbf1f4babe976591fe9dffe0f5fdf9d6cbc35', - 1 => - array ( - 0 => 'nette\\utils\\arraylist', - ), - 2 => - array ( - 0 => 'nette\\utils\\from', - 1 => 'nette\\utils\\getiterator', - 2 => 'nette\\utils\\count', - 3 => 'nette\\utils\\offsetset', - 4 => 'nette\\utils\\offsetget', - 5 => 'nette\\utils\\offsetexists', - 6 => 'nette\\utils\\offsetunset', - 7 => 'nette\\utils\\prepend', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Type.php' => - array ( - 0 => '3b13edc29c70dcd40105fc5fcf8e404040c7cf39', - 1 => - array ( - 0 => 'nette\\utils\\type', - ), - 2 => - array ( - 0 => 'nette\\utils\\fromreflection', - 1 => 'nette\\utils\\fromreflectiontype', - 2 => 'nette\\utils\\fromstring', - 3 => 'nette\\utils\\resolve', - 4 => 'nette\\utils\\__construct', - 5 => 'nette\\utils\\__tostring', - 6 => 'nette\\utils\\getnames', - 7 => 'nette\\utils\\gettypes', - 8 => 'nette\\utils\\getsinglename', - 9 => 'nette\\utils\\isunion', - 10 => 'nette\\utils\\isintersection', - 11 => 'nette\\utils\\issimple', - 12 => 'nette\\utils\\issingle', - 13 => 'nette\\utils\\isbuiltin', - 14 => 'nette\\utils\\isclass', - 15 => 'nette\\utils\\isclasskeyword', - 16 => 'nette\\utils\\allows', - 17 => 'nette\\utils\\allows2', - 18 => 'nette\\utils\\allows3', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Json.php' => - array ( - 0 => 'ebb5956053572eb8a10ce052f7770bcb61402bbe', - 1 => - array ( - 0 => 'nette\\utils\\json', - ), - 2 => - array ( - 0 => 'nette\\utils\\encode', - 1 => 'nette\\utils\\decode', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Paginator.php' => - array ( - 0 => 'a03076b5671cd149f45deea0e05f54d86f0b1a37', - 1 => - array ( - 0 => 'nette\\utils\\paginator', - ), - 2 => - array ( - 0 => 'nette\\utils\\setpage', - 1 => 'nette\\utils\\getpage', - 2 => 'nette\\utils\\getfirstpage', - 3 => 'nette\\utils\\getlastpage', - 4 => 'nette\\utils\\getfirstitemonpage', - 5 => 'nette\\utils\\getlastitemonpage', - 6 => 'nette\\utils\\setbase', - 7 => 'nette\\utils\\getbase', - 8 => 'nette\\utils\\getpageindex', - 9 => 'nette\\utils\\isfirst', - 10 => 'nette\\utils\\islast', - 11 => 'nette\\utils\\getpagecount', - 12 => 'nette\\utils\\setitemsperpage', - 13 => 'nette\\utils\\getitemsperpage', - 14 => 'nette\\utils\\setitemcount', - 15 => 'nette\\utils\\getitemcount', - 16 => 'nette\\utils\\getoffset', - 17 => 'nette\\utils\\getcountdownoffset', - 18 => 'nette\\utils\\getlength', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/ImageColor.php' => - array ( - 0 => '8889bbb3c776e13241dad50b557446bf45fee016', - 1 => - array ( - 0 => 'nette\\utils\\imagecolor', - ), - 2 => - array ( - 0 => 'nette\\utils\\rgb', - 1 => 'nette\\utils\\hex', - 2 => 'nette\\utils\\__construct', - 3 => 'nette\\utils\\torgba', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Arrays.php' => - array ( - 0 => 'ccc4714ae18178765c45498fcc61942415c6caec', - 1 => - array ( - 0 => 'nette\\utils\\arrays', - ), - 2 => - array ( - 0 => 'nette\\utils\\get', - 1 => 'nette\\utils\\getref', - 2 => 'nette\\utils\\mergetree', - 3 => 'nette\\utils\\getkeyoffset', - 4 => 'nette\\utils\\searchkey', - 5 => 'nette\\utils\\contains', - 6 => 'nette\\utils\\first', - 7 => 'nette\\utils\\last', - 8 => 'nette\\utils\\firstkey', - 9 => 'nette\\utils\\lastkey', - 10 => 'nette\\utils\\insertbefore', - 11 => 'nette\\utils\\insertafter', - 12 => 'nette\\utils\\renamekey', - 13 => 'nette\\utils\\grep', - 14 => 'nette\\utils\\flatten', - 15 => 'nette\\utils\\islist', - 16 => 'nette\\utils\\associate', - 17 => 'nette\\utils\\normalize', - 18 => 'nette\\utils\\pick', - 19 => 'nette\\utils\\some', - 20 => 'nette\\utils\\every', - 21 => 'nette\\utils\\filter', - 22 => 'nette\\utils\\map', - 23 => 'nette\\utils\\mapwithkeys', - 24 => 'nette\\utils\\invoke', - 25 => 'nette\\utils\\invokemethod', - 26 => 'nette\\utils\\toobject', - 27 => 'nette\\utils\\tokey', - 28 => 'nette\\utils\\wrap', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/FileSystem.php' => - array ( - 0 => '0e49655d2ce22192ea7ebaf636dcab0cbe2a2aa5', - 1 => - array ( - 0 => 'nette\\utils\\filesystem', - ), - 2 => - array ( - 0 => 'nette\\utils\\createdir', - 1 => 'nette\\utils\\copy', - 2 => 'nette\\utils\\open', - 3 => 'nette\\utils\\delete', - 4 => 'nette\\utils\\rename', - 5 => 'nette\\utils\\read', - 6 => 'nette\\utils\\readlines', - 7 => 'nette\\utils\\write', - 8 => 'nette\\utils\\makewritable', - 9 => 'nette\\utils\\isabsolute', - 10 => 'nette\\utils\\normalizepath', - 11 => 'nette\\utils\\joinpaths', - 12 => 'nette\\utils\\unixslashes', - 13 => 'nette\\utils\\platformslashes', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/ArrayHash.php' => - array ( - 0 => 'cee24efe8e549b816402dae0431c223a5ed88491', - 1 => - array ( - 0 => 'nette\\utils\\arrayhash', - ), - 2 => - array ( - 0 => 'nette\\utils\\from', - 1 => 'nette\\utils\\getiterator', - 2 => 'nette\\utils\\count', - 3 => 'nette\\utils\\offsetset', - 4 => 'nette\\utils\\offsetget', - 5 => 'nette\\utils\\offsetexists', - 6 => 'nette\\utils\\offsetunset', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/ObjectHelpers.php' => - array ( - 0 => '2aca9ccf014f50422f953eab312258aa71a69aff', - 1 => - array ( - 0 => 'nette\\utils\\objecthelpers', - ), - 2 => - array ( - 0 => 'nette\\utils\\strictget', - 1 => 'nette\\utils\\strictset', - 2 => 'nette\\utils\\strictcall', - 3 => 'nette\\utils\\strictstaticcall', - 4 => 'nette\\utils\\getmagicproperties', - 5 => 'nette\\utils\\getsuggestion', - 6 => 'nette\\utils\\parsefulldoc', - 7 => 'nette\\utils\\hasproperty', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Reflection.php' => - array ( - 0 => 'd8eb06ad1f96ef2761b7bb0385639c2a6b0b3e02', - 1 => - array ( - 0 => 'nette\\utils\\reflection', - ), - 2 => - array ( - 0 => 'nette\\utils\\isbuiltintype', - 1 => 'nette\\utils\\isclasskeyword', - 2 => 'nette\\utils\\getparameterdefaultvalue', - 3 => 'nette\\utils\\getpropertydeclaringclass', - 4 => 'nette\\utils\\getmethoddeclaringmethod', - 5 => 'nette\\utils\\arecommentsavailable', - 6 => 'nette\\utils\\tostring', - 7 => 'nette\\utils\\expandclassname', - 8 => 'nette\\utils\\getusestatements', - 9 => 'nette\\utils\\parseusestatements', - 10 => 'nette\\utils\\fetch', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Floats.php' => - array ( - 0 => '65039d7b30497a2a31b5c46c1d0885690fc50805', - 1 => - array ( - 0 => 'nette\\utils\\floats', - ), - 2 => - array ( - 0 => 'nette\\utils\\iszero', - 1 => 'nette\\utils\\isinteger', - 2 => 'nette\\utils\\compare', - 3 => 'nette\\utils\\areequal', - 4 => 'nette\\utils\\islessthan', - 5 => 'nette\\utils\\islessthanorequalto', - 6 => 'nette\\utils\\isgreaterthan', - 7 => 'nette\\utils\\isgreaterthanorequalto', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Strings.php' => - array ( - 0 => '1ff0966a5554bc83ecb93336e23b10ed14bb0f19', - 1 => - array ( - 0 => 'nette\\utils\\strings', - ), - 2 => - array ( - 0 => 'nette\\utils\\checkencoding', - 1 => 'nette\\utils\\fixencoding', - 2 => 'nette\\utils\\chr', - 3 => 'nette\\utils\\ord', - 4 => 'nette\\utils\\startswith', - 5 => 'nette\\utils\\endswith', - 6 => 'nette\\utils\\contains', - 7 => 'nette\\utils\\substring', - 8 => 'nette\\utils\\normalize', - 9 => 'nette\\utils\\normalizenewlines', - 10 => 'nette\\utils\\unixnewlines', - 11 => 'nette\\utils\\platformnewlines', - 12 => 'nette\\utils\\toascii', - 13 => 'nette\\utils\\webalize', - 14 => 'nette\\utils\\truncate', - 15 => 'nette\\utils\\indent', - 16 => 'nette\\utils\\lower', - 17 => 'nette\\utils\\firstlower', - 18 => 'nette\\utils\\upper', - 19 => 'nette\\utils\\firstupper', - 20 => 'nette\\utils\\capitalize', - 21 => 'nette\\utils\\compare', - 22 => 'nette\\utils\\findprefix', - 23 => 'nette\\utils\\length', - 24 => 'nette\\utils\\trim', - 25 => 'nette\\utils\\padleft', - 26 => 'nette\\utils\\padright', - 27 => 'nette\\utils\\reverse', - 28 => 'nette\\utils\\before', - 29 => 'nette\\utils\\after', - 30 => 'nette\\utils\\indexof', - 31 => 'nette\\utils\\pos', - 32 => 'nette\\utils\\split', - 33 => 'nette\\utils\\match', - 34 => 'nette\\utils\\matchall', - 35 => 'nette\\utils\\replace', - 36 => 'nette\\utils\\bytestochars', - 37 => 'nette\\utils\\pcre', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Random.php' => - array ( - 0 => '2aab86d308ae8ffb12a0ffd62540e2e227bc0e87', - 1 => - array ( - 0 => 'nette\\utils\\random', - ), - 2 => - array ( - 0 => 'nette\\utils\\generate', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Html.php' => - array ( - 0 => '15210683779dc48d764f0ff8ea23417fe590cfac', - 1 => - array ( - 0 => 'nette\\utils\\html', - ), - 2 => - array ( - 0 => 'nette\\utils\\el', - 1 => 'nette\\utils\\fromhtml', - 2 => 'nette\\utils\\fromtext', - 3 => 'nette\\utils\\tohtml', - 4 => 'nette\\utils\\totext', - 5 => 'nette\\utils\\htmltotext', - 6 => 'nette\\utils\\setname', - 7 => 'nette\\utils\\getname', - 8 => 'nette\\utils\\isempty', - 9 => 'nette\\utils\\addattributes', - 10 => 'nette\\utils\\appendattribute', - 11 => 'nette\\utils\\setattribute', - 12 => 'nette\\utils\\getattribute', - 13 => 'nette\\utils\\removeattribute', - 14 => 'nette\\utils\\removeattributes', - 15 => 'nette\\utils\\__set', - 16 => 'nette\\utils\\__get', - 17 => 'nette\\utils\\__isset', - 18 => 'nette\\utils\\__unset', - 19 => 'nette\\utils\\__call', - 20 => 'nette\\utils\\href', - 21 => 'nette\\utils\\data', - 22 => 'nette\\utils\\sethtml', - 23 => 'nette\\utils\\gethtml', - 24 => 'nette\\utils\\settext', - 25 => 'nette\\utils\\gettext', - 26 => 'nette\\utils\\addhtml', - 27 => 'nette\\utils\\addtext', - 28 => 'nette\\utils\\create', - 29 => 'nette\\utils\\insert', - 30 => 'nette\\utils\\offsetset', - 31 => 'nette\\utils\\offsetget', - 32 => 'nette\\utils\\offsetexists', - 33 => 'nette\\utils\\offsetunset', - 34 => 'nette\\utils\\count', - 35 => 'nette\\utils\\removechildren', - 36 => 'nette\\utils\\getiterator', - 37 => 'nette\\utils\\getchildren', - 38 => 'nette\\utils\\render', - 39 => 'nette\\utils\\__tostring', - 40 => 'nette\\utils\\starttag', - 41 => 'nette\\utils\\endtag', - 42 => 'nette\\utils\\attributes', - 43 => 'nette\\utils\\__clone', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Validators.php' => - array ( - 0 => '13d64e6f7d6bbad881932790d34eb71afaa9e659', - 1 => - array ( - 0 => 'nette\\utils\\validators', - ), - 2 => - array ( - 0 => 'nette\\utils\\assert', - 1 => 'nette\\utils\\assertfield', - 2 => 'nette\\utils\\is', - 3 => 'nette\\utils\\everyis', - 4 => 'nette\\utils\\isnumber', - 5 => 'nette\\utils\\isnumericint', - 6 => 'nette\\utils\\isnumeric', - 7 => 'nette\\utils\\iscallable', - 8 => 'nette\\utils\\isunicode', - 9 => 'nette\\utils\\isnone', - 10 => 'nette\\utils\\ismixed', - 11 => 'nette\\utils\\islist', - 12 => 'nette\\utils\\isinrange', - 13 => 'nette\\utils\\isemail', - 14 => 'nette\\utils\\isurl', - 15 => 'nette\\utils\\isuri', - 16 => 'nette\\utils\\istype', - 17 => 'nette\\utils\\isphpidentifier', - 18 => 'nette\\utils\\isbuiltintype', - 19 => 'nette\\utils\\isclasskeyword', - 20 => 'nette\\utils\\istypedeclaration', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/FileInfo.php' => - array ( - 0 => '0d09acdaca8285898e8b2e98accfdadded3ccf02', - 1 => - array ( - 0 => 'nette\\utils\\fileinfo', - ), - 2 => - array ( - 0 => 'nette\\utils\\__construct', - 1 => 'nette\\utils\\getrelativepath', - 2 => 'nette\\utils\\getrelativepathname', - 3 => 'nette\\utils\\read', - 4 => 'nette\\utils\\write', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Iterables.php' => - array ( - 0 => '7cd85b8037452a5e9d03f768fb81eb297d8357f9', - 1 => - array ( - 0 => 'nette\\utils\\iterables', - ), - 2 => - array ( - 0 => 'nette\\utils\\contains', - 1 => 'nette\\utils\\containskey', - 2 => 'nette\\utils\\first', - 3 => 'nette\\utils\\firstkey', - 4 => 'nette\\utils\\some', - 5 => 'nette\\utils\\every', - 6 => 'nette\\utils\\filter', - 7 => 'nette\\utils\\map', - 8 => 'nette\\utils\\mapwithkeys', - 9 => 'nette\\utils\\memoize', - 10 => 'nette\\utils\\__construct', - 11 => 'nette\\utils\\getiterator', - 12 => 'nette\\utils\\toiterator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Helpers.php' => - array ( - 0 => 'e62fc779c20a38dbfa07b7dadaaba56e090deae7', - 1 => - array ( - 0 => 'nette\\utils\\helpers', - ), - 2 => - array ( - 0 => 'nette\\utils\\capture', - 1 => 'nette\\utils\\getlasterror', - 2 => 'nette\\utils\\falsetonull', - 3 => 'nette\\utils\\clamp', - 4 => 'nette\\utils\\getsuggestion', - 5 => 'nette\\utils\\compare', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/exceptions.php' => - array ( - 0 => '2dffb56a116c9d3483151093c11ee75a22a4c240', - 1 => - array ( - 0 => 'nette\\utils\\imageexception', - 1 => 'nette\\utils\\unknownimagefileexception', - 2 => 'nette\\utils\\jsonexception', - 3 => 'nette\\utils\\regexpexception', - 4 => 'nette\\utils\\assertionexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/ReflectionMethod.php' => - array ( - 0 => 'f659a2fe5053a9c2d0d1d284266b6b9c548550e3', - 1 => - array ( - 0 => 'nette\\utils\\reflectionmethod', - ), - 2 => - array ( - 0 => 'nette\\utils\\__construct', - 1 => 'nette\\utils\\getoriginalclass', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Callback.php' => - array ( - 0 => 'd5171969cc8a2d6455e97d7387e95cc35d46a554', - 1 => - array ( - 0 => 'nette\\utils\\callback', - ), - 2 => - array ( - 0 => 'nette\\utils\\invokesafe', - 1 => 'nette\\utils\\check', - 2 => 'nette\\utils\\tostring', - 3 => 'nette\\utils\\toreflection', - 4 => 'nette\\utils\\isstatic', - 5 => 'nette\\utils\\unwrap', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Utils/Image.php' => - array ( - 0 => 'c992f525345007d233948733b854562ee1db676a', - 1 => - array ( - 0 => 'nette\\utils\\image', - ), - 2 => - array ( - 0 => 'nette\\utils\\rgb', - 1 => 'nette\\utils\\fromfile', - 2 => 'nette\\utils\\fromstring', - 3 => 'nette\\utils\\invokesafe', - 4 => 'nette\\utils\\fromblank', - 5 => 'nette\\utils\\detecttypefromfile', - 6 => 'nette\\utils\\detecttypefromstring', - 7 => 'nette\\utils\\typetoextension', - 8 => 'nette\\utils\\extensiontotype', - 9 => 'nette\\utils\\typetomimetype', - 10 => 'nette\\utils\\istypesupported', - 11 => 'nette\\utils\\getsupportedtypes', - 12 => 'nette\\utils\\__construct', - 13 => 'nette\\utils\\getwidth', - 14 => 'nette\\utils\\getheight', - 15 => 'nette\\utils\\setimageresource', - 16 => 'nette\\utils\\getimageresource', - 17 => 'nette\\utils\\resize', - 18 => 'nette\\utils\\calculatesize', - 19 => 'nette\\utils\\crop', - 20 => 'nette\\utils\\calculatecutout', - 21 => 'nette\\utils\\sharpen', - 22 => 'nette\\utils\\place', - 23 => 'nette\\utils\\calculatetextbox', - 24 => 'nette\\utils\\rectanglewh', - 25 => 'nette\\utils\\filledrectanglewh', - 26 => 'nette\\utils\\save', - 27 => 'nette\\utils\\tostring', - 28 => 'nette\\utils\\__tostring', - 29 => 'nette\\utils\\send', - 30 => 'nette\\utils\\output', - 31 => 'nette\\utils\\__call', - 32 => 'nette\\utils\\__clone', - 33 => 'nette\\utils\\ispercent', - 34 => 'nette\\utils\\__sleep', - 35 => 'nette\\utils\\resolvecolor', - 36 => 'nette\\utils\\ensureextension', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/SmartObject.php' => - array ( - 0 => '0f5e5f1ec5f84bccd662014e33e0986208747efc', - 1 => - array ( - 0 => 'nette\\smartobject', - ), - 2 => - array ( - 0 => 'nette\\__call', - 1 => 'nette\\__callstatic', - 2 => 'nette\\__get', - 3 => 'nette\\__set', - 4 => 'nette\\__unset', - 5 => 'nette\\__isset', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/exceptions.php' => - array ( - 0 => '1383200c2647e4b84933a79ccfa3007cb05f2728', - 1 => - array ( - 0 => 'nette\\argumentoutofrangeexception', - 1 => 'nette\\invalidstateexception', - 2 => 'nette\\notimplementedexception', - 3 => 'nette\\notsupportedexception', - 4 => 'nette\\deprecatedexception', - 5 => 'nette\\memberaccessexception', - 6 => 'nette\\ioexception', - 7 => 'nette\\filenotfoundexception', - 8 => 'nette\\directorynotfoundexception', - 9 => 'nette\\invalidargumentexception', - 10 => 'nette\\outofrangeexception', - 11 => 'nette\\unexpectedvalueexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/compatibility.php' => - array ( - 0 => 'f86a72734dee6132421b4334d6f03dd78fed0112', - 1 => - array ( - 0 => 'nette\\utils\\ihtmlstring', - 1 => 'nette\\localization\\itranslator', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Iterators/Mapper.php' => - array ( - 0 => 'c0ec5f53c56b99e228cea2e591bfb432a580892c', - 1 => - array ( - 0 => 'nette\\iterators\\mapper', - ), - 2 => - array ( - 0 => 'nette\\iterators\\__construct', - 1 => 'nette\\iterators\\current', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/Iterators/CachingIterator.php' => - array ( - 0 => '643191ba2742f47c676cad088d40f0de2fe2b9d8', - 1 => - array ( - 0 => 'nette\\iterators\\cachingiterator', - ), - 2 => - array ( - 0 => 'nette\\iterators\\__construct', - 1 => 'nette\\iterators\\isfirst', - 2 => 'nette\\iterators\\islast', - 3 => 'nette\\iterators\\isempty', - 4 => 'nette\\iterators\\isodd', - 5 => 'nette\\iterators\\iseven', - 6 => 'nette\\iterators\\getcounter', - 7 => 'nette\\iterators\\count', - 8 => 'nette\\iterators\\next', - 9 => 'nette\\iterators\\rewind', - 10 => 'nette\\iterators\\getnextkey', - 11 => 'nette\\iterators\\getnextvalue', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nette/utils/src/HtmlStringable.php' => - array ( - 0 => 'ce387d2957d3941be1b6d89cdae95839c5777012', - 1 => - array ( - 0 => 'nette\\htmlstringable', - ), - 2 => - array ( - 0 => 'nette\\__tostring', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/PHPStan/f8/7d/f87de80fa24c2edaa97ba02101dab3b0095e07d3.php b/build/phpstan/cache/PHPStan/f8/7d/f87de80fa24c2edaa97ba02101dab3b0095e07d3.php deleted file mode 100644 index 58c0bdd..0000000 --- a/build/phpstan/cache/PHPStan/f8/7d/f87de80fa24c2edaa97ba02101dab3b0095e07d3.php +++ /dev/null @@ -1,362 +0,0 @@ - 'v1', - 'data' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/VersionConstraintParser.php' => - array ( - 0 => '9a03d1fcfe10968b84fafa941ca1710997e79341', - 1 => - array ( - 0 => 'phario\\version\\versionconstraintparser', - ), - 2 => - array ( - 0 => 'phario\\version\\parse', - 1 => 'phario\\version\\handleorgroup', - 2 => 'phario\\version\\handletildeoperator', - 3 => 'phario\\version\\handlecaretoperator', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/constraints/AnyVersionConstraint.php' => - array ( - 0 => '7b6997dda7e61a5a3e47f96b2ac20026a4ad1d51', - 1 => - array ( - 0 => 'phario\\version\\anyversionconstraint', - ), - 2 => - array ( - 0 => 'phario\\version\\complies', - 1 => 'phario\\version\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/constraints/AbstractVersionConstraint.php' => - array ( - 0 => 'fb4e0fb4a4e89c491e9bd47da3f4bcf5e65c84c0', - 1 => - array ( - 0 => 'phario\\version\\abstractversionconstraint', - ), - 2 => - array ( - 0 => 'phario\\version\\__construct', - 1 => 'phario\\version\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/constraints/VersionConstraint.php' => - array ( - 0 => '495be7eb8e0d23c2829f3418b2551feb54b268e9', - 1 => - array ( - 0 => 'phario\\version\\versionconstraint', - ), - 2 => - array ( - 0 => 'phario\\version\\complies', - 1 => 'phario\\version\\asstring', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/constraints/GreaterThanOrEqualToVersionConstraint.php' => - array ( - 0 => '31d8c4914a7c2f16bf36f538563ee412f856cdb3', - 1 => - array ( - 0 => 'phario\\version\\greaterthanorequaltoversionconstraint', - ), - 2 => - array ( - 0 => 'phario\\version\\__construct', - 1 => 'phario\\version\\complies', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/constraints/OrVersionConstraintGroup.php' => - array ( - 0 => '004772604023115b3ef7c28ec4fb7d3301dc4dca', - 1 => - array ( - 0 => 'phario\\version\\orversionconstraintgroup', - ), - 2 => - array ( - 0 => 'phario\\version\\__construct', - 1 => 'phario\\version\\complies', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/constraints/AndVersionConstraintGroup.php' => - array ( - 0 => 'cfd803b2ea9d969e10383a2748a56dced4b73cce', - 1 => - array ( - 0 => 'phario\\version\\andversionconstraintgroup', - ), - 2 => - array ( - 0 => 'phario\\version\\__construct', - 1 => 'phario\\version\\complies', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/constraints/ExactVersionConstraint.php' => - array ( - 0 => '098c09d62983d3e6fd71485e87116115d4a80924', - 1 => - array ( - 0 => 'phario\\version\\exactversionconstraint', - ), - 2 => - array ( - 0 => 'phario\\version\\complies', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/constraints/SpecificMajorVersionConstraint.php' => - array ( - 0 => 'efb81e3e5493d3908a9c3d51ad16e0329f5fbc68', - 1 => - array ( - 0 => 'phario\\version\\specificmajorversionconstraint', - ), - 2 => - array ( - 0 => 'phario\\version\\__construct', - 1 => 'phario\\version\\complies', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/constraints/SpecificMajorAndMinorVersionConstraint.php' => - array ( - 0 => '8c0b72e8a6fcb8f48e20e49abf6d8103d987b1a5', - 1 => - array ( - 0 => 'phario\\version\\specificmajorandminorversionconstraint', - ), - 2 => - array ( - 0 => 'phario\\version\\__construct', - 1 => 'phario\\version\\complies', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/VersionConstraintValue.php' => - array ( - 0 => '9cf0c4f77d86b54c45d730a708ce9dbcb1a53ae8', - 1 => - array ( - 0 => 'phario\\version\\versionconstraintvalue', - ), - 2 => - array ( - 0 => 'phario\\version\\__construct', - 1 => 'phario\\version\\getlabel', - 2 => 'phario\\version\\getbuildmetadata', - 3 => 'phario\\version\\getversionstring', - 4 => 'phario\\version\\getmajor', - 5 => 'phario\\version\\getminor', - 6 => 'phario\\version\\getpatch', - 7 => 'phario\\version\\parseversion', - 8 => 'phario\\version\\extractbuildmetadata', - 9 => 'phario\\version\\extractlabel', - 10 => 'phario\\version\\strippotentialvprefix', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/BuildMetaData.php' => - array ( - 0 => '95ad9aaa6c32718b2f6eef38225240b35b1f0dd2', - 1 => - array ( - 0 => 'phario\\version\\buildmetadata', - ), - 2 => - array ( - 0 => 'phario\\version\\__construct', - 1 => 'phario\\version\\asstring', - 2 => 'phario\\version\\equals', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/exceptions/InvalidVersionException.php' => - array ( - 0 => 'b5af6590c57b8aab0245a2c491f96c4614225664', - 1 => - array ( - 0 => 'phario\\version\\invalidversionexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/exceptions/InvalidPreReleaseSuffixException.php' => - array ( - 0 => 'd295ffaf424bd318b52ca58a22e134a757adc551', - 1 => - array ( - 0 => 'phario\\version\\invalidprereleasesuffixexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/exceptions/UnsupportedVersionConstraintException.php' => - array ( - 0 => '8ba115bff96f1628f72295ac082b41ae9d2da288', - 1 => - array ( - 0 => 'phario\\version\\unsupportedversionconstraintexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/exceptions/NoPreReleaseSuffixException.php' => - array ( - 0 => '30b1fabe90aa1cc2841f4d05e8b40a46679ba879', - 1 => - array ( - 0 => 'phario\\version\\noprereleasesuffixexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/exceptions/NoBuildMetaDataException.php' => - array ( - 0 => '2fbcf83ac53911226fefa01823ebc6b6cd7e2e41', - 1 => - array ( - 0 => 'phario\\version\\nobuildmetadataexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/exceptions/Exception.php' => - array ( - 0 => '80bf09b2245e8a57b9fa84102198062b05d28491', - 1 => - array ( - 0 => 'phario\\version\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/PreReleaseSuffix.php' => - array ( - 0 => 'bb71a0619caa8bbac829636ca159c5b36b9fb53c', - 1 => - array ( - 0 => 'phario\\version\\prereleasesuffix', - ), - 2 => - array ( - 0 => 'phario\\version\\__construct', - 1 => 'phario\\version\\asstring', - 2 => 'phario\\version\\getvalue', - 3 => 'phario\\version\\getnumber', - 4 => 'phario\\version\\isgreaterthan', - 5 => 'phario\\version\\mapvaluetoscore', - 6 => 'phario\\version\\parsevalue', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/Version.php' => - array ( - 0 => 'b9cafee10b996648c21658a7f93de53410158b42', - 1 => - array ( - 0 => 'phario\\version\\version', - ), - 2 => - array ( - 0 => 'phario\\version\\__construct', - 1 => 'phario\\version\\getprereleasesuffix', - 2 => 'phario\\version\\getoriginalstring', - 3 => 'phario\\version\\getversionstring', - 4 => 'phario\\version\\hasprereleasesuffix', - 5 => 'phario\\version\\equals', - 6 => 'phario\\version\\isgreaterthan', - 7 => 'phario\\version\\getmajor', - 8 => 'phario\\version\\getminor', - 9 => 'phario\\version\\getpatch', - 10 => 'phario\\version\\hasbuildmetadata', - 11 => 'phario\\version\\getbuildmetadata', - 12 => 'phario\\version\\parseversion', - 13 => 'phario\\version\\ensureversionstringisvalid', - ), - 3 => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phar-io/version/src/VersionNumber.php' => - array ( - 0 => 'ec8c13c18e185e2163ec31423a3c0c6d05f89bca', - 1 => - array ( - 0 => 'phario\\version\\versionnumber', - ), - 2 => - array ( - 0 => 'phario\\version\\__construct', - 1 => 'phario\\version\\isany', - 2 => 'phario\\version\\getvalue', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/build/phpstan/cache/nette.configurator/Container_c5db45e753.php b/build/phpstan/cache/nette.configurator/Container_c5db45e753.php deleted file mode 100644 index 8dc7f00..0000000 --- a/build/phpstan/cache/nette.configurator/Container_c5db45e753.php +++ /dev/null @@ -1,8669 +0,0 @@ - [ - '04' => true, - '05' => true, - '06' => true, - '07' => true, - '08' => true, - '09' => true, - '010' => true, - '011' => true, - '012' => true, - '013' => true, - '014' => true, - '015' => true, - '016' => true, - '017' => true, - '018' => true, - '019' => true, - '020' => true, - '021' => true, - '022' => true, - '088' => true, - '089' => true, - ], - 'phpstan.stubFilesExtension' => ['044' => true, '046' => true, '047' => true, '048' => true, '0514' => true], - 'phpstan.diagnoseExtension' => ['091' => true], - 'phpstan.broker.dynamicMethodReturnTypeExtension' => [ - '0106' => true, - '0107' => true, - '0108' => true, - '0119' => true, - '0120' => true, - '0226' => true, - '0237' => true, - '0243' => true, - '0244' => true, - '0249' => true, - '0284' => true, - '0311' => true, - '0338' => true, - '0339' => true, - '0346' => true, - '0347' => true, - '0348' => true, - '0349' => true, - '0350' => true, - '0351' => true, - '0450' => true, - '0451' => true, - '0452' => true, - '0453' => true, - '0454' => true, - '0456' => true, - '0462' => true, - '0464' => true, - '0465' => true, - '0466' => true, - '0467' => true, - '0468' => true, - '0469' => true, - '0470' => true, - '0472' => true, - '0473' => true, - '0481' => true, - '0482' => true, - '0483' => true, - '0484' => true, - '0502' => true, - '0523' => true, - '0524' => true, - '0525' => true, - '0526' => true, - '0527' => true, - '0528' => true, - '0529' => true, - '0546' => true, - '0547' => true, - '0548' => true, - ], - 'phpstan.broker.methodsClassReflectionExtension' => [ - '0116' => true, - '0436' => true, - '0437' => true, - '0438' => true, - '0439' => true, - '0440' => true, - '0441' => true, - '0442' => true, - '0443' => true, - '0444' => true, - '0445' => true, - '0446' => true, - '0536' => true, - ], - 'phpstan.broker.allowedSubTypesClassReflectionExtension' => ['0117' => true], - 'phpstan.broker.propertiesClassReflectionExtension' => [ - '0118' => true, - '0282' => true, - '0447' => true, - '0448' => true, - '0449' => true, - '0455' => true, - ], - 'phpstan.broker.dynamicFunctionReturnTypeExtension' => [ - '0186' => true, - '0187' => true, - '0188' => true, - '0189' => true, - '0190' => true, - '0191' => true, - '0192' => true, - '0193' => true, - '0194' => true, - '0195' => true, - '0197' => true, - '0198' => true, - '0199' => true, - '0200' => true, - '0201' => true, - '0203' => true, - '0204' => true, - '0205' => true, - '0206' => true, - '0207' => true, - '0208' => true, - '0209' => true, - '0210' => true, - '0211' => true, - '0212' => true, - '0213' => true, - '0214' => true, - '0215' => true, - '0216' => true, - '0217' => true, - '0219' => true, - '0220' => true, - '0223' => true, - '0224' => true, - '0228' => true, - '0229' => true, - '0231' => true, - '0232' => true, - '0234' => true, - '0236' => true, - '0238' => true, - '0241' => true, - '0242' => true, - '0251' => true, - '0252' => true, - '0254' => true, - '0255' => true, - '0256' => true, - '0257' => true, - '0258' => true, - '0259' => true, - '0260' => true, - '0261' => true, - '0262' => true, - '0263' => true, - '0264' => true, - '0265' => true, - '0267' => true, - '0284' => true, - '0287' => true, - '0288' => true, - '0289' => true, - '0290' => true, - '0291' => true, - '0293' => true, - '0294' => true, - '0295' => true, - '0296' => true, - '0297' => true, - '0298' => true, - '0299' => true, - '0300' => true, - '0301' => true, - '0302' => true, - '0303' => true, - '0305' => true, - '0306' => true, - '0307' => true, - '0308' => true, - '0309' => true, - '0310' => true, - '0312' => true, - '0313' => true, - '0314' => true, - '0315' => true, - '0316' => true, - '0317' => true, - '0318' => true, - '0319' => true, - '0320' => true, - '0323' => true, - '0332' => true, - '0336' => true, - '0337' => true, - '0340' => true, - '0341' => true, - '0342' => true, - '0343' => true, - '0344' => true, - '0345' => true, - '0475' => true, - '0476' => true, - '0477' => true, - '0478' => true, - '0479' => true, - '0480' => true, - '0489' => true, - '0490' => true, - '0491' => true, - '0492' => true, - '0530' => true, - '0531' => true, - ], - 'phpstan.typeSpecifier.functionTypeSpecifyingExtension' => [ - '0202' => true, - '0218' => true, - '0233' => true, - '0271' => true, - '0281' => true, - '0285' => true, - '0286' => true, - '0304' => true, - '0321' => true, - '0322' => true, - '0324' => true, - '0325' => true, - '0326' => true, - '0327' => true, - '0328' => true, - '0329' => true, - '0330' => true, - '0331' => true, - '0333' => true, - '0335' => true, - '0485' => true, - '0486' => true, - '0487' => true, - '0488' => true, - '0543' => true, - ], - 'phpstan.dynamicFunctionThrowTypeExtension' => ['0221' => true, '0266' => true, '0268' => true], - 'phpstan.broker.dynamicStaticMethodReturnTypeExtension' => [ - '0222' => true, - '0225' => true, - '0227' => true, - '0240' => true, - '0346' => true, - '0352' => true, - '0457' => true, - '0458' => true, - '0459' => true, - '0460' => true, - '0461' => true, - '0463' => true, - '0471' => true, - '0493' => true, - ], - 'phpstan.dynamicStaticMethodThrowTypeExtension' => [ - '0239' => true, - '0245' => true, - '0248' => true, - '0277' => true, - '0278' => true, - '0279' => true, - '0280' => true, - '0283' => true, - ], - 'phpstan.dynamicMethodThrowTypeExtension' => ['0246' => true, '0247' => true, '0250' => true], - 'phpstan.functionParameterOutTypeExtension' => ['0269' => true, '0270' => true, '0272' => true], - 'phpstan.functionParameterClosureTypeExtension' => ['0273' => true], - 'phpstan.typeSpecifier.methodTypeSpecifyingExtension' => ['0292' => true, '0544' => true], - 'phpstan.rules.rule' => [ - '0363' => true, - '0364' => true, - '0365' => true, - '0366' => true, - '0367' => true, - '0368' => true, - '0369' => true, - '0370' => true, - '0371' => true, - '0372' => true, - '0373' => true, - '0374' => true, - '0375' => true, - '0376' => true, - '0377' => true, - '0378' => true, - '0379' => true, - '0380' => true, - '0381' => true, - '0382' => true, - '0383' => true, - '0385' => true, - '0386' => true, - '0387' => true, - '0388' => true, - '0389' => true, - '0390' => true, - '0391' => true, - '0392' => true, - '0393' => true, - '0394' => true, - '0395' => true, - '0396' => true, - '0397' => true, - '0398' => true, - '0399' => true, - '0400' => true, - '0401' => true, - '0409' => true, - '0410' => true, - '0411' => true, - '0412' => true, - '0413' => true, - '0414' => true, - '0415' => true, - '0416' => true, - '0417' => true, - '0418' => true, - '0419' => true, - '0420' => true, - '0421' => true, - '0422' => true, - '0423' => true, - '0424' => true, - '0425' => true, - '0426' => true, - '0427' => true, - '0428' => true, - '0431' => true, - '0432' => true, - '0433' => true, - '0434' => true, - '0496' => true, - '0498' => true, - '0499' => true, - '0500' => true, - '0510' => true, - '0511' => true, - '0512' => true, - '0553' => true, - 'rules.0' => true, - 'rules.1' => true, - 'rules.10' => true, - 'rules.100' => true, - 'rules.101' => true, - 'rules.102' => true, - 'rules.103' => true, - 'rules.104' => true, - 'rules.105' => true, - 'rules.106' => true, - 'rules.107' => true, - 'rules.108' => true, - 'rules.109' => true, - 'rules.11' => true, - 'rules.110' => true, - 'rules.111' => true, - 'rules.112' => true, - 'rules.113' => true, - 'rules.114' => true, - 'rules.115' => true, - 'rules.116' => true, - 'rules.117' => true, - 'rules.118' => true, - 'rules.119' => true, - 'rules.12' => true, - 'rules.120' => true, - 'rules.121' => true, - 'rules.122' => true, - 'rules.123' => true, - 'rules.124' => true, - 'rules.125' => true, - 'rules.126' => true, - 'rules.127' => true, - 'rules.128' => true, - 'rules.129' => true, - 'rules.13' => true, - 'rules.130' => true, - 'rules.131' => true, - 'rules.132' => true, - 'rules.133' => true, - 'rules.134' => true, - 'rules.135' => true, - 'rules.136' => true, - 'rules.137' => true, - 'rules.138' => true, - 'rules.139' => true, - 'rules.14' => true, - 'rules.140' => true, - 'rules.141' => true, - 'rules.142' => true, - 'rules.143' => true, - 'rules.144' => true, - 'rules.145' => true, - 'rules.146' => true, - 'rules.147' => true, - 'rules.148' => true, - 'rules.149' => true, - 'rules.15' => true, - 'rules.150' => true, - 'rules.151' => true, - 'rules.152' => true, - 'rules.153' => true, - 'rules.154' => true, - 'rules.155' => true, - 'rules.156' => true, - 'rules.157' => true, - 'rules.158' => true, - 'rules.159' => true, - 'rules.16' => true, - 'rules.160' => true, - 'rules.161' => true, - 'rules.162' => true, - 'rules.163' => true, - 'rules.164' => true, - 'rules.165' => true, - 'rules.166' => true, - 'rules.167' => true, - 'rules.168' => true, - 'rules.169' => true, - 'rules.17' => true, - 'rules.170' => true, - 'rules.171' => true, - 'rules.172' => true, - 'rules.173' => true, - 'rules.174' => true, - 'rules.175' => true, - 'rules.176' => true, - 'rules.177' => true, - 'rules.178' => true, - 'rules.179' => true, - 'rules.18' => true, - 'rules.180' => true, - 'rules.181' => true, - 'rules.182' => true, - 'rules.183' => true, - 'rules.184' => true, - 'rules.185' => true, - 'rules.186' => true, - 'rules.187' => true, - 'rules.188' => true, - 'rules.189' => true, - 'rules.19' => true, - 'rules.190' => true, - 'rules.191' => true, - 'rules.192' => true, - 'rules.193' => true, - 'rules.194' => true, - 'rules.195' => true, - 'rules.196' => true, - 'rules.197' => true, - 'rules.198' => true, - 'rules.199' => true, - 'rules.2' => true, - 'rules.20' => true, - 'rules.200' => true, - 'rules.201' => true, - 'rules.202' => true, - 'rules.203' => true, - 'rules.204' => true, - 'rules.205' => true, - 'rules.206' => true, - 'rules.207' => true, - 'rules.208' => true, - 'rules.209' => true, - 'rules.21' => true, - 'rules.210' => true, - 'rules.211' => true, - 'rules.212' => true, - 'rules.213' => true, - 'rules.214' => true, - 'rules.215' => true, - 'rules.216' => true, - 'rules.217' => true, - 'rules.218' => true, - 'rules.219' => true, - 'rules.22' => true, - 'rules.220' => true, - 'rules.221' => true, - 'rules.222' => true, - 'rules.223' => true, - 'rules.224' => true, - 'rules.225' => true, - 'rules.226' => true, - 'rules.227' => true, - 'rules.228' => true, - 'rules.229' => true, - 'rules.23' => true, - 'rules.230' => true, - 'rules.231' => true, - 'rules.232' => true, - 'rules.233' => true, - 'rules.234' => true, - 'rules.235' => true, - 'rules.236' => true, - 'rules.237' => true, - 'rules.238' => true, - 'rules.239' => true, - 'rules.24' => true, - 'rules.240' => true, - 'rules.241' => true, - 'rules.242' => true, - 'rules.243' => true, - 'rules.244' => true, - 'rules.245' => true, - 'rules.246' => true, - 'rules.247' => true, - 'rules.248' => true, - 'rules.249' => true, - 'rules.25' => true, - 'rules.250' => true, - 'rules.251' => true, - 'rules.252' => true, - 'rules.253' => true, - 'rules.254' => 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, - 'rules.98' => true, - 'rules.99' => true, - ], - 'phpstan.collector' => [ - '0402' => true, - '0403' => true, - '0404' => true, - '0405' => true, - '0406' => true, - '0407' => true, - '0408' => true, - '0429' => true, - '0430' => true, - '0516' => true, - '0517' => true, - '0518' => true, - '0519' => true, - '0520' => true, - ], - 'phpstan.phpDoc.typeNodeResolverExtension' => [ - '0494' => true, - '0495' => true, - '0501' => true, - '0503' => true, - '0542' => true, - ], - 'phpstan.deprecations.deprecatedScopeResolver' => ['0540' => true], - 'phpstan.typeSpecifier.staticMethodTypeSpecifyingExtension' => ['0545' => true], - ]; - - protected $types = ['container' => '_PHPStan_24e2736d6\Nette\DI\Container']; - protected $aliases = []; - - protected $wiring = [ - '_PHPStan_24e2736d6\Nette\DI\Container' => [['container']], - 'PHPStan\Rules\Rule' => [ - [ - '0141', - '0142', - '0143', - '0159', - '0174', - '0363', - '0364', - '0365', - '0366', - '0367', - '0368', - '0369', - '0370', - '0371', - '0372', - '0373', - '0374', - '0375', - '0376', - '0377', - '0378', - '0379', - '0380', - '0381', - '0382', - '0383', - '0385', - '0386', - '0387', - '0388', - '0389', - '0390', - '0391', - '0392', - '0393', - '0394', - '0395', - '0396', - '0397', - '0398', - '0399', - '0400', - '0401', - '0409', - '0410', - '0411', - '0412', - '0413', - '0414', - '0415', - '0416', - '0417', - '0418', - '0419', - '0420', - '0421', - '0422', - '0423', - '0424', - '0425', - '0426', - '0427', - '0428', - '0431', - '0432', - '0433', - '0434', - '0435', - '0496', - '0497', - '0498', - '0499', - '0500', - '0510', - '0511', - '0512', - '0515', - '0541', - '0553', - '0554', - ], - [ - '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', - 'rules.98', - 'rules.99', - 'rules.100', - 'rules.101', - 'rules.102', - 'rules.103', - 'rules.104', - 'rules.105', - 'rules.106', - 'rules.107', - 'rules.108', - 'rules.109', - 'rules.110', - 'rules.111', - 'rules.112', - 'rules.113', - 'rules.114', - 'rules.115', - 'rules.116', - 'rules.117', - 'rules.118', - 'rules.119', - 'rules.120', - 'rules.121', - 'rules.122', - 'rules.123', - 'rules.124', - 'rules.125', - 'rules.126', - 'rules.127', - 'rules.128', - 'rules.129', - 'rules.130', - 'rules.131', - 'rules.132', - 'rules.133', - 'rules.134', - 'rules.135', - 'rules.136', - 'rules.137', - 'rules.138', - 'rules.139', - 'rules.140', - 'rules.141', - 'rules.142', - 'rules.143', - 'rules.144', - 'rules.145', - 'rules.146', - 'rules.147', - 'rules.148', - 'rules.149', - 'rules.150', - 'rules.151', - 'rules.152', - 'rules.153', - 'rules.154', - 'rules.155', - 'rules.156', - 'rules.157', - 'rules.158', - 'rules.159', - 'rules.160', - 'rules.161', - 'rules.162', - 'rules.163', - 'rules.164', - 'rules.165', - 'rules.166', - 'rules.167', - 'rules.168', - 'rules.169', - 'rules.170', - 'rules.171', - 'rules.172', - 'rules.173', - 'rules.174', - 'rules.175', - 'rules.176', - 'rules.177', - 'rules.178', - 'rules.179', - 'rules.180', - 'rules.181', - 'rules.182', - 'rules.183', - 'rules.184', - 'rules.185', - 'rules.186', - 'rules.187', - 'rules.188', - 'rules.189', - 'rules.190', - 'rules.191', - 'rules.192', - 'rules.193', - 'rules.194', - 'rules.195', - 'rules.196', - 'rules.197', - 'rules.198', - 'rules.199', - 'rules.200', - 'rules.201', - 'rules.202', - 'rules.203', - 'rules.204', - 'rules.205', - 'rules.206', - 'rules.207', - 'rules.208', - 'rules.209', - 'rules.210', - 'rules.211', - 'rules.212', - 'rules.213', - 'rules.214', - 'rules.215', - 'rules.216', - 'rules.217', - 'rules.218', - 'rules.219', - 'rules.220', - 'rules.221', - 'rules.222', - 'rules.223', - 'rules.224', - 'rules.225', - 'rules.226', - 'rules.227', - 'rules.228', - 'rules.229', - 'rules.230', - 'rules.231', - 'rules.232', - 'rules.233', - 'rules.234', - 'rules.235', - 'rules.236', - 'rules.237', - 'rules.238', - 'rules.239', - 'rules.240', - 'rules.241', - 'rules.242', - 'rules.243', - 'rules.244', - 'rules.245', - 'rules.246', - 'rules.247', - 'rules.248', - 'rules.249', - 'rules.250', - 'rules.251', - 'rules.252', - 'rules.253', - 'rules.254', - ], - ], - 'PHPStan\Rules\Debug\DebugScopeRule' => [['rules.0']], - 'PHPStan\Rules\Debug\DumpPhpDocTypeRule' => [['rules.1']], - 'PHPStan\Rules\Debug\DumpTypeRule' => [['rules.2']], - 'PHPStan\Rules\Debug\FileAssertRule' => [['rules.3']], - 'PHPStan\Rules\Api\ApiInstanceofRule' => [['rules.4']], - 'PHPStan\Rules\Api\ApiInstanceofTypeRule' => [['rules.5']], - 'PHPStan\Rules\Api\ApiInstantiationRule' => [['rules.6']], - 'PHPStan\Rules\Api\ApiClassConstFetchRule' => [['rules.7']], - 'PHPStan\Rules\Api\ApiClassExtendsRule' => [['rules.8']], - 'PHPStan\Rules\Api\ApiClassImplementsRule' => [['rules.9']], - 'PHPStan\Rules\Api\ApiInterfaceExtendsRule' => [['rules.10']], - 'PHPStan\Rules\Api\ApiMethodCallRule' => [['rules.11']], - 'PHPStan\Rules\Api\ApiStaticCallRule' => [['rules.12']], - 'PHPStan\Rules\Api\ApiTraitUseRule' => [['rules.13']], - 'PHPStan\Rules\Api\GetTemplateTypeRule' => [['rules.14']], - 'PHPStan\Rules\Api\NodeConnectingVisitorAttributesRule' => [['rules.15']], - 'PHPStan\Rules\Api\OldPhpParser4ClassRule' => [['rules.16']], - 'PHPStan\Rules\Api\PhpStanNamespaceIn3rdPartyPackageRule' => [['rules.17']], - 'PHPStan\Rules\Api\RuntimeReflectionInstantiationRule' => [['rules.18']], - 'PHPStan\Rules\Api\RuntimeReflectionFunctionRule' => [['rules.19']], - 'PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule' => [['rules.20']], - 'PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule' => [['rules.21']], - 'PHPStan\Rules\Cast\UnsetCastRule' => [['rules.22']], - 'PHPStan\Rules\Classes\AllowedSubTypesRule' => [['rules.23']], - 'PHPStan\Rules\Classes\ClassAttributesRule' => [['rules.24']], - 'PHPStan\Rules\Classes\ClassConstantAttributesRule' => [['rules.25']], - 'PHPStan\Rules\Classes\ClassConstantRule' => [['rules.26']], - 'PHPStan\Rules\Classes\DuplicateDeclarationRule' => [['rules.27']], - 'PHPStan\Rules\Classes\EnumSanityRule' => [['rules.28']], - 'PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule' => [['rules.29']], - 'PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule' => [['rules.30']], - 'PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule' => [['rules.31']], - 'PHPStan\Rules\Classes\ExistingClassInTraitUseRule' => [['rules.32']], - 'PHPStan\Rules\Classes\InstantiationRule' => [['rules.33']], - 'PHPStan\Rules\Classes\InstantiationCallableRule' => [['rules.34']], - 'PHPStan\Rules\Classes\InvalidPromotedPropertiesRule' => [['rules.35']], - 'PHPStan\Rules\Classes\LocalTypeAliasesRule' => [['rules.36']], - 'PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule' => [['rules.37']], - 'PHPStan\Rules\Classes\LocalTypeTraitAliasesRule' => [['rules.38']], - 'PHPStan\Rules\Classes\NewStaticRule' => [['rules.39']], - 'PHPStan\Rules\Classes\NonClassAttributeClassRule' => [['rules.40']], - 'PHPStan\Rules\Classes\ReadOnlyClassRule' => [['rules.41']], - 'PHPStan\Rules\Classes\TraitAttributeClassRule' => [['rules.42']], - 'PHPStan\Rules\Constants\ClassAsClassConstantRule' => [['rules.43']], - 'PHPStan\Rules\Constants\DynamicClassConstantFetchRule' => [['rules.44']], - 'PHPStan\Rules\Constants\FinalConstantRule' => [['rules.45']], - 'PHPStan\Rules\Constants\MagicConstantContextRule' => [['rules.46']], - 'PHPStan\Rules\Constants\NativeTypedClassConstantRule' => [['rules.47']], - 'PHPStan\Rules\EnumCases\EnumCaseAttributesRule' => [['rules.48']], - 'PHPStan\Rules\Exceptions\NoncapturingCatchRule' => [['rules.49']], - 'PHPStan\Rules\Exceptions\ThrowExpressionRule' => [['rules.50']], - 'PHPStan\Rules\Functions\ArrowFunctionAttributesRule' => [['rules.51']], - 'PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule' => [['rules.52']], - 'PHPStan\Rules\Functions\ClosureAttributesRule' => [['rules.53']], - 'PHPStan\Rules\Functions\DefineParametersRule' => [['rules.54']], - 'PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule' => [['rules.55']], - 'PHPStan\Rules\Functions\CallToFunctionParametersRule' => [['rules.56']], - 'PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule' => [['rules.57']], - 'PHPStan\Rules\Functions\ExistingClassesInTypehintsRule' => [['rules.58']], - 'PHPStan\Rules\Functions\FunctionAttributesRule' => [['rules.59']], - 'PHPStan\Rules\Functions\InnerFunctionRule' => [['rules.60']], - 'PHPStan\Rules\Functions\InvalidLexicalVariablesInClosureUseRule' => [['rules.61']], - 'PHPStan\Rules\Functions\ParamAttributesRule' => [['rules.62']], - 'PHPStan\Rules\Functions\PrintfArrayParametersRule' => [['rules.63']], - 'PHPStan\Rules\Functions\PrintfParametersRule' => [['rules.64']], - 'PHPStan\Rules\Functions\RedefinedParametersRule' => [['rules.65']], - 'PHPStan\Rules\Functions\ReturnNullsafeByRefRule' => [['rules.66']], - 'PHPStan\Rules\Ignore\IgnoreParseErrorRule' => [['rules.67']], - 'PHPStan\Rules\Functions\VariadicParametersDeclarationRule' => [['rules.68']], - 'PHPStan\Rules\Keywords\ContinueBreakInLoopRule' => [['rules.69']], - 'PHPStan\Rules\Keywords\DeclareStrictTypesRule' => [['rules.70']], - 'PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule' => [['rules.71']], - 'PHPStan\Rules\Methods\AbstractPrivateMethodRule' => [['rules.72']], - 'PHPStan\Rules\Methods\CallMethodsRule' => [['rules.73']], - 'PHPStan\Rules\Methods\CallStaticMethodsRule' => [['rules.74']], - 'PHPStan\Rules\Methods\ConsistentConstructorRule' => [['rules.75']], - 'PHPStan\Rules\Methods\ConstructorReturnTypeRule' => [['rules.76']], - 'PHPStan\Rules\Methods\ExistingClassesInTypehintsRule' => [['rules.77']], - 'PHPStan\Rules\Methods\FinalPrivateMethodRule' => [['rules.78']], - 'PHPStan\Rules\Methods\MethodCallableRule' => [['rules.79']], - 'PHPStan\Rules\Methods\MethodVisibilityInInterfaceRule' => [['rules.80']], - 'PHPStan\Rules\Methods\MissingMagicSerializationMethodsRule' => [['rules.81']], - 'PHPStan\Rules\Methods\MissingMethodImplementationRule' => [['rules.82']], - 'PHPStan\Rules\Methods\MethodAttributesRule' => [['rules.83']], - 'PHPStan\Rules\Methods\StaticMethodCallableRule' => [['rules.84']], - 'PHPStan\Rules\Names\UsedNamesRule' => [['rules.85']], - 'PHPStan\Rules\Operators\InvalidAssignVarRule' => [['rules.86']], - 'PHPStan\Rules\Operators\InvalidIncDecOperationRule' => [['rules.87']], - 'PHPStan\Rules\Properties\AccessPropertiesInAssignRule' => [['rules.88']], - 'PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule' => [['rules.89']], - 'PHPStan\Rules\Properties\ExistingClassesInPropertyHookTypehintsRule' => [['rules.90']], - 'PHPStan\Rules\Properties\InvalidCallablePropertyTypeRule' => [['rules.91']], - 'PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule' => [['rules.92']], - 'PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule' => [['rules.93']], - 'PHPStan\Rules\Properties\PropertiesInInterfaceRule' => [['rules.94']], - 'PHPStan\Rules\Properties\PropertyAssignRefRule' => [['rules.95']], - 'PHPStan\Rules\Properties\PropertyAttributesRule' => [['rules.96']], - 'PHPStan\Rules\Properties\PropertyHookAttributesRule' => [['rules.97']], - 'PHPStan\Rules\Properties\PropertyInClassRule' => [['rules.98']], - 'PHPStan\Rules\Properties\ReadOnlyPropertyRule' => [['rules.99']], - 'PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyRule' => [['rules.100']], - 'PHPStan\Rules\Regexp\RegularExpressionPatternRule' => [['rules.101']], - 'PHPStan\Rules\Traits\ConflictingTraitConstantsRule' => [['rules.102']], - 'PHPStan\Rules\Traits\ConstantsInTraitsRule' => [['rules.103']], - 'PHPStan\Rules\Traits\TraitAttributesRule' => [['rules.104']], - 'PHPStan\Rules\Types\InvalidTypesInUnionRule' => [['rules.105']], - 'PHPStan\Rules\Variables\UnsetRule' => [['rules.106']], - 'PHPStan\Rules\Whitespace\FileWhitespaceRule' => [['rules.107']], - 'PHPStan\Rules\Classes\UnusedConstructorParametersRule' => [['rules.108']], - 'PHPStan\Rules\Constants\ConstantRule' => [['rules.109']], - 'PHPStan\Rules\Functions\UnusedClosureUsesRule' => [['rules.110']], - 'PHPStan\Rules\Variables\EmptyRule' => [['rules.111']], - 'PHPStan\Rules\Variables\IssetRule' => [['rules.112']], - 'PHPStan\Rules\Variables\NullCoalesceRule' => [['rules.113']], - 'PHPStan\Rules\Cast\EchoRule' => [['rules.114']], - 'PHPStan\Rules\Cast\InvalidCastRule' => [['rules.115']], - 'PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule' => [['rules.116']], - 'PHPStan\Rules\Cast\PrintRule' => [['rules.117']], - 'PHPStan\Rules\Classes\AccessPrivateConstantThroughStaticRule' => [['rules.118']], - 'PHPStan\Rules\Classes\MethodTagRule' => [['rules.119']], - 'PHPStan\Rules\Classes\MethodTagTraitRule' => [['rules.120']], - 'PHPStan\Rules\Classes\MethodTagTraitUseRule' => [['rules.121']], - 'PHPStan\Rules\Classes\PropertyTagRule' => [['rules.122']], - 'PHPStan\Rules\Classes\PropertyTagTraitRule' => [['rules.123']], - 'PHPStan\Rules\Classes\PropertyTagTraitUseRule' => [['rules.124']], - 'PHPStan\Rules\Classes\MixinTraitRule' => [['rules.125']], - 'PHPStan\Rules\Classes\MixinTraitUseRule' => [['rules.126']], - 'PHPStan\Rules\Comparison\UsageOfVoidMatchExpressionRule' => [['rules.127']], - 'PHPStan\Rules\Constants\ValueAssignedToClassConstantRule' => [['rules.128']], - 'PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule' => [['rules.129']], - 'PHPStan\Rules\Functions\IncompatibleArrowFunctionDefaultParameterTypeRule' => [['rules.130']], - 'PHPStan\Rules\Functions\IncompatibleClosureDefaultParameterTypeRule' => [['rules.131']], - 'PHPStan\Rules\Generics\ClassAncestorsRule' => [['rules.132']], - 'PHPStan\Rules\Generics\ClassTemplateTypeRule' => [['rules.133']], - 'PHPStan\Rules\Generics\EnumAncestorsRule' => [['rules.134']], - 'PHPStan\Rules\Generics\EnumTemplateTypeRule' => [['rules.135']], - 'PHPStan\Rules\Generics\FunctionTemplateTypeRule' => [['rules.136']], - 'PHPStan\Rules\Generics\FunctionSignatureVarianceRule' => [['rules.137']], - 'PHPStan\Rules\Generics\InterfaceAncestorsRule' => [['rules.138']], - 'PHPStan\Rules\Generics\InterfaceTemplateTypeRule' => [['rules.139']], - 'PHPStan\Rules\Generics\MethodTemplateTypeRule' => [['rules.140']], - 'PHPStan\Rules\Generics\MethodTagTemplateTypeRule' => [['rules.141']], - 'PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule' => [['rules.142']], - 'PHPStan\Rules\Generics\MethodSignatureVarianceRule' => [['rules.143']], - 'PHPStan\Rules\Generics\PropertyVarianceRule' => [['rules.144']], - 'PHPStan\Rules\Generics\TraitTemplateTypeRule' => [['rules.145']], - 'PHPStan\Rules\Generics\UsedTraitsRule' => [['rules.146']], - 'PHPStan\Rules\Methods\CallPrivateMethodThroughStaticRule' => [['rules.147']], - 'PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule' => [['rules.148']], - 'PHPStan\Rules\Operators\InvalidBinaryOperationRule' => [['rules.149']], - 'PHPStan\Rules\Operators\InvalidComparisonOperationRule' => [['rules.150']], - 'PHPStan\Rules\Operators\InvalidUnaryOperationRule' => [['rules.151']], - 'PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule' => [['rules.152']], - 'PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule' => [['rules.153']], - 'PHPStan\Rules\PhpDoc\FunctionAssertRule' => [['rules.154']], - 'PHPStan\Rules\PhpDoc\MethodAssertRule' => [['rules.155']], - 'PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule' => [['rules.156']], - 'PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule' => [['rules.157']], - 'PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule' => [['rules.158']], - 'PHPStan\Rules\PhpDoc\IncompatiblePropertyHookPhpDocTypeRule' => [['rules.159']], - 'PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule' => [['rules.160']], - 'PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule' => [['rules.161']], - 'PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule' => [['rules.162']], - 'PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule' => [['rules.163']], - 'PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule' => [['rules.164']], - 'PHPStan\Rules\Properties\AccessPrivatePropertyThroughStaticRule' => [['rules.165']], - 'PHPStan\Rules\Classes\RequireImplementsRule' => [['rules.166']], - 'PHPStan\Rules\Classes\RequireExtendsRule' => [['rules.167']], - 'PHPStan\Rules\PhpDoc\RequireImplementsDefinitionClassRule' => [['rules.168']], - 'PHPStan\Rules\PhpDoc\RequireExtendsDefinitionClassRule' => [['rules.169']], - 'PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule' => [['rules.170']], - 'PHPStan\Rules\Pure\PureFunctionRule' => [['rules.171']], - 'PHPStan\Rules\Pure\PureMethodRule' => [['rules.172']], - 'PHPStan\Rules\Arrays\ArrayDestructuringRule' => [['rules.173']], - 'PHPStan\Rules\Arrays\ArrayUnpackingRule' => [['rules.174']], - 'PHPStan\Rules\Arrays\IterableInForeachRule' => [['rules.175']], - 'PHPStan\Rules\Arrays\OffsetAccessAssignmentRule' => [['rules.176']], - 'PHPStan\Rules\Arrays\OffsetAccessAssignOpRule' => [['rules.177']], - 'PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule' => [['rules.178']], - 'PHPStan\Rules\Arrays\UnpackIterableInArrayRule' => [['rules.179']], - 'PHPStan\Rules\Exceptions\ThrowExprTypeRule' => [['rules.180']], - 'PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule' => [['rules.181']], - 'PHPStan\Rules\Functions\ClosureReturnTypeRule' => [['rules.182']], - 'PHPStan\Rules\Functions\ReturnTypeRule' => [['rules.183']], - 'PHPStan\Rules\Generators\YieldTypeRule' => [['rules.184']], - 'PHPStan\Rules\Methods\ReturnTypeRule' => [['rules.185']], - 'PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule' => [['rules.186']], - 'PHPStan\Rules\Properties\GetNonVirtualPropertyHookReadRule' => [['rules.187']], - 'PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule' => [['rules.188']], - 'PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule' => [['rules.189']], - 'PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule' => [['rules.190']], - 'PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule' => [['rules.191']], - 'PHPStan\Rules\Properties\SetNonVirtualPropertyHookAssignRule' => [['rules.192']], - 'PHPStan\Rules\Properties\TypesAssignedToPropertiesRule' => [['rules.193']], - 'PHPStan\Rules\Variables\ParameterOutAssignedTypeRule' => [['rules.194']], - 'PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule' => [['rules.195']], - 'PHPStan\Rules\Variables\VariableCloningRule' => [['rules.196']], - 'PHPStan\Rules\Arrays\DeadForeachRule' => [['rules.197']], - 'PHPStan\Rules\DeadCode\CallToConstructorStatementWithoutImpurePointsRule' => [['rules.198']], - 'PHPStan\Rules\DeadCode\CallToFunctionStatementWithoutImpurePointsRule' => [['rules.199']], - 'PHPStan\Rules\DeadCode\CallToMethodStatementWithoutImpurePointsRule' => [['rules.200']], - 'PHPStan\Rules\DeadCode\CallToStaticMethodStatementWithoutImpurePointsRule' => [['rules.201']], - 'PHPStan\Rules\DeadCode\NoopRule' => [['rules.202']], - 'PHPStan\Rules\DeadCode\UnreachableStatementRule' => [['rules.203']], - 'PHPStan\Rules\DeadCode\UnusedPrivateConstantRule' => [['rules.204']], - 'PHPStan\Rules\DeadCode\UnusedPrivateMethodRule' => [['rules.205']], - 'PHPStan\Rules\Exceptions\OverwrittenExitPointByFinallyRule' => [['rules.206']], - 'PHPStan\Rules\Functions\CallToFunctionStatementWithoutSideEffectsRule' => [['rules.207']], - 'PHPStan\Rules\Functions\UselessFunctionReturnValueRule' => [['rules.208']], - 'PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule' => [['rules.209']], - 'PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule' => [['rules.210']], - 'PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule' => [['rules.211']], - 'PHPStan\Rules\Methods\NullsafeMethodCallRule' => [['rules.212']], - 'PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule' => [['rules.213']], - 'PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule' => [['rules.214']], - 'PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule' => [['rules.215']], - 'PHPStan\Rules\TooWideTypehints\TooWideFunctionParameterOutTypeRule' => [['rules.216']], - 'PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule' => [['rules.217']], - 'PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule' => [['rules.218']], - 'PHPStan\Rules\Traits\NotAnalysedTraitRule' => [['rules.219']], - 'PHPStan\Rules\DateTimeInstantiationRule' => [['rules.220']], - 'PHPStan\Rules\Functions\CallUserFuncRule' => [['rules.221']], - 'PHPStan\Rules\Functions\ParameterCastableToStringRule' => [['rules.222']], - 'PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule' => [['rules.223']], - 'PHPStan\Rules\Functions\SortParameterCastableToStringRule' => [['rules.224']], - 'PHPStan\Rules\Regexp\RegularExpressionQuotingRule' => [['rules.225']], - 'Larastan\Larastan\Rules\UselessConstructs\NoUselessWithFunctionCallsRule' => [['rules.226']], - 'Larastan\Larastan\Rules\UselessConstructs\NoUselessValueFunctionCallsRule' => [['rules.227']], - 'Larastan\Larastan\Rules\DeferrableServiceProviderMissingProvidesRule' => [['rules.228']], - 'Larastan\Larastan\Rules\ConsoleCommand\UndefinedArgumentOrOptionRule' => [['rules.229']], - 'PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule' => [['rules.230']], - 'PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule' => [['rules.231']], - 'PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule' => [['rules.232']], - 'PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule' => [['rules.233']], - 'PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule' => [['rules.234']], - 'PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule' => [['rules.235']], - 'PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule' => [['rules.236']], - 'PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule' => [['rules.237']], - 'PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule' => [['rules.238']], - 'PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule' => [['rules.239']], - 'PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule' => [['rules.240']], - 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule' => [['rules.241']], - 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule' => [['rules.242']], - 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule' => [['rules.243']], - 'PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule' => [['rules.244']], - 'PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule' => [['rules.245']], - 'PHPStan\Rules\PHPUnit\AssertSameBooleanExpectedRule' => [['rules.246']], - 'PHPStan\Rules\PHPUnit\AssertSameNullExpectedRule' => [['rules.247']], - 'PHPStan\Rules\PHPUnit\AssertSameWithCountRule' => [['rules.248']], - 'PHPStan\Rules\PHPUnit\ClassCoversExistsRule' => [['rules.249']], - 'PHPStan\Rules\PHPUnit\ClassMethodCoversExistsRule' => [['rules.250']], - 'PHPStan\Rules\PHPUnit\MockMethodCallRule' => [['rules.251']], - 'PHPStan\Rules\PHPUnit\NoMissingSpaceInClassAnnotationRule' => [['rules.252']], - 'PHPStan\Rules\PHPUnit\NoMissingSpaceInMethodAnnotationRule' => [['rules.253']], - 'PHPStan\Rules\PHPUnit\ShouldCallParentMethodsRule' => [['rules.254']], - 'PhpParser\BuilderFactory' => [['01']], - 'PHPStan\Parser\LexerFactory' => [['02']], - 'PhpParser\NodeVisitorAbstract' => [ - [ - '03', - '04', - '05', - '06', - '07', - '08', - '09', - '010', - '011', - '012', - '013', - '014', - '015', - '016', - '017', - '018', - '019', - '020', - '021', - '022', - '073', - '088', - '089', - '098', - ], - ], - 'PhpParser\NodeVisitor' => [ - [ - '03', - '04', - '05', - '06', - '07', - '08', - '09', - '010', - '011', - '012', - '013', - '014', - '015', - '016', - '017', - '018', - '019', - '020', - '021', - '022', - '073', - '088', - '089', - '098', - ], - ], - 'PhpParser\NodeVisitor\NameResolver' => [['03']], - 'PHPStan\Parser\AnonymousClassVisitor' => [['04']], - 'PHPStan\Parser\ArrayFilterArgVisitor' => [['05']], - 'PHPStan\Parser\ArrayFindArgVisitor' => [['06']], - 'PHPStan\Parser\ArrayMapArgVisitor' => [['07']], - 'PHPStan\Parser\ArrayWalkArgVisitor' => [['08']], - 'PHPStan\Parser\ClosureArgVisitor' => [['09']], - 'PHPStan\Parser\ClosureBindToVarVisitor' => [['010']], - 'PHPStan\Parser\ClosureBindArgVisitor' => [['011']], - 'PHPStan\Parser\CurlSetOptArgVisitor' => [['012']], - 'PHPStan\Parser\ArrowFunctionArgVisitor' => [['013']], - 'PHPStan\Parser\MagicConstantParamDefaultVisitor' => [['014']], - 'PHPStan\Parser\NewAssignedToPropertyVisitor' => [['015']], - 'PHPStan\Parser\ParentStmtTypesVisitor' => [['016']], - 'PHPStan\Parser\StandaloneThrowExprVisitor' => [['017']], - 'PHPStan\Parser\TryCatchTypeVisitor' => [['018']], - 'PHPStan\Parser\LastConditionVisitor' => [['019']], - 'PHPStan\Parser\TypeTraverserInstanceofVisitor' => [['020']], - 'PHPStan\Parser\VariadicMethodsVisitor' => [['021']], - 'PHPStan\Parser\VariadicFunctionsVisitor' => [['022']], - 'PHPStan\Node\Printer\ExprPrinter' => [['023']], - 'PhpParser\PrettyPrinter\Standard' => [1 => ['024']], - 'PhpParser\PrettyPrinterAbstract' => [1 => ['024']], - 'PhpParser\PrettyPrinter' => [1 => ['024']], - 'PHPStan\Node\Printer\Printer' => [['024']], - 'PHPStan\Broker\AnonymousClassNameHelper' => [['025']], - 'PHPStan\Php\PhpVersion' => [['026']], - 'PHPStan\Php\PhpVersionFactory' => [['027']], - 'PHPStan\Php\PhpVersionFactoryFactory' => [['028']], - 'PHPStan\Php\ComposerPhpVersionFactory' => [['029']], - 'PHPStan\PhpDocParser\ParserConfig' => [['030']], - 'PHPStan\PhpDocParser\Lexer\Lexer' => [['031']], - 'PHPStan\PhpDocParser\Parser\TypeParser' => [['032']], - 'PHPStan\PhpDocParser\Parser\ConstExprParser' => [['033']], - 'PHPStan\PhpDocParser\Parser\PhpDocParser' => [['034']], - 'PHPStan\PhpDocParser\Printer\Printer' => [['035']], - 'PHPStan\PhpDoc\PhpDocInheritanceResolver' => [['036']], - 'PHPStan\PhpDoc\PhpDocNodeResolver' => [['037']], - 'PHPStan\PhpDoc\PhpDocStringResolver' => [['038']], - 'PHPStan\PhpDoc\ConstExprNodeResolver' => [['039']], - 'PHPStan\PhpDoc\TypeNodeResolver' => [['040']], - 'PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider' => [['041']], - 'PHPStan\PhpDoc\TypeStringResolver' => [['042']], - 'PHPStan\PhpDoc\StubValidator' => [['043']], - 'PHPStan\PhpDoc\StubFilesExtension' => [['044', '046', '047', '048', '0514']], - 'PHPStan\PhpDoc\SocketSelectStubFilesExtension' => [['044']], - 'PHPStan\PhpDoc\StubFilesProvider' => [['045']], - 'PHPStan\PhpDoc\DefaultStubFilesProvider' => [['045']], - 'PHPStan\PhpDoc\JsonValidateStubFilesExtension' => [['046']], - 'PHPStan\PhpDoc\ReflectionClassStubFilesExtension' => [['047']], - 'PHPStan\PhpDoc\ReflectionEnumStubFilesExtension' => [['048']], - 'PHPStan\Analyser\Analyser' => [['049']], - 'PHPStan\Analyser\AnalyserResultFinalizer' => [['050']], - 'PHPStan\Analyser\FileAnalyser' => [['051']], - 'PHPStan\Analyser\LocalIgnoresProcessor' => [['052']], - 'PHPStan\Analyser\RuleErrorTransformer' => [['053']], - 'PHPStan\Analyser\Ignore\IgnoredErrorHelper' => [['054']], - 'PHPStan\Analyser\Ignore\IgnoreLexer' => [['055']], - 'PHPStan\Analyser\InternalScopeFactory' => [['056']], - 'PHPStan\Analyser\LazyInternalScopeFactory' => [['056']], - 'PHPStan\Analyser\ScopeFactory' => [['057']], - 'PHPStan\Analyser\NodeScopeResolver' => [['058']], - 'PHPStan\Analyser\ConstantResolver' => [['059']], - 'PHPStan\Analyser\ConstantResolverFactory' => [['060']], - 'PHPStan\Analyser\ResultCache\ResultCacheManagerFactory' => [['061']], - 'PHPStan\Analyser\ResultCache\ResultCacheClearer' => [['062']], - 'PHPStan\Analyser\RicherScopeGetTypeHelper' => [['063']], - 'PHPStan\Cache\Cache' => [['064']], - 'PHPStan\Collectors\Registry' => [['065']], - 'PHPStan\Collectors\RegistryFactory' => [['066']], - 'PHPStan\Command\AnalyseApplication' => [['067']], - 'PHPStan\Command\AnalyserRunner' => [['068']], - 'PHPStan\Command\FixerApplication' => [['069']], - 'PHPStan\Dependency\DependencyResolver' => [['070']], - 'PHPStan\Dependency\ExportedNodeFetcher' => [['071']], - 'PHPStan\Dependency\ExportedNodeResolver' => [['072']], - 'PHPStan\Dependency\ExportedNodeVisitor' => [['073']], - 'PHPStan\DependencyInjection\Container' => [['074'], ['075']], - 'PHPStan\DependencyInjection\Nette\NetteContainer' => [['075']], - 'PHPStan\DependencyInjection\DerivativeContainerFactory' => [['076']], - 'PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider' => [['077']], - 'PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider' => [['078']], - 'PHPStan\DependencyInjection\Type\ParameterOutTypeExtensionProvider' => [['079']], - 'PHPStan\DependencyInjection\Type\ExpressionTypeResolverExtensionRegistryProvider' => [['080']], - 'PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider' => [['081']], - 'PHPStan\DependencyInjection\Type\DynamicThrowTypeExtensionProvider' => [['082']], - 'PHPStan\DependencyInjection\Type\ParameterClosureTypeExtensionProvider' => [['083']], - 'PHPStan\File\FileHelper' => [['084']], - 'PHPStan\File\FileExcluderFactory' => [['085']], - 'PHPStan\File\FileExcluderRawFactory' => [['086']], - 'PHPStan\File\FileExcluder' => [2 => ['fileExcluderAnalyse', 'fileExcluderScan']], - 'PHPStan\File\FileFinder' => [2 => ['fileFinderAnalyse', 'fileFinderScan']], - 'PHPStan\File\FileMonitor' => [['087']], - 'PHPStan\Parser\DeclarePositionVisitor' => [['088']], - 'PHPStan\Parser\ImmediatelyInvokedClosureVisitor' => [['089']], - 'PHPStan\Parallel\ParallelAnalyser' => [['090']], - 'PHPStan\Diagnose\DiagnoseExtension' => [0 => ['091'], 2 => [1 => 'phpstanDiagnoseExtension']], - 'PHPStan\Parallel\Scheduler' => [['091']], - 'PHPStan\Process\CpuCoreCounter' => [['092']], - 'PHPStan\Reflection\AttributeReflectionFactory' => [['093']], - 'PHPStan\Reflection\FunctionReflectionFactory' => [['094']], - 'PHPStan\Reflection\InitializerExprTypeResolver' => [['095']], - 'PHPStan\Reflection\MethodsClassReflectionExtension' => [ - [ - '096', - '0110', - '0112', - '0114', - '0116', - '0436', - '0437', - '0438', - '0439', - '0440', - '0441', - '0442', - '0443', - '0444', - '0445', - '0446', - '0536', - ], - ], - 'PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension' => [['096']], - 'PHPStan\Reflection\PropertiesClassReflectionExtension' => [ - ['097', '0111', '0113', '0114', '0118', '0282', '0447', '0448', '0449', '0455'], - ], - 'PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension' => [['097']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor' => [['098']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher' => [['099']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker' => [['0100']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory' => [['0101']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository' => [['0102']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory' => [['0103']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory' => [['0104']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository' => [['0105']], - 'PHPStan\Type\DynamicMethodReturnTypeExtension' => [ - [ - '0106', - '0107', - '0108', - '0119', - '0120', - '0226', - '0237', - '0243', - '0244', - '0249', - '0284', - '0311', - '0338', - '0339', - '0346', - '0347', - '0348', - '0349', - '0350', - '0351', - '0450', - '0451', - '0452', - '0453', - '0454', - '0456', - '0462', - '0464', - '0465', - '0466', - '0467', - '0468', - '0469', - '0470', - '0472', - '0473', - '0481', - '0482', - '0483', - '0484', - '0502', - '0523', - '0524', - '0525', - '0526', - '0527', - '0528', - '0529', - '0546', - '0547', - '0548', - ], - ], - 'PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumCaseDynamicReturnTypeExtension' => [ - ['0106', '0107'], - ], - 'PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumDynamicReturnTypeExtension' => [['0108']], - 'PHPStan\Reflection\ConstructorsHelper' => [['0109']], - 'PHPStan\Reflection\RequireExtension\RequireExtendsMethodsClassReflectionExtension' => [['0110']], - 'PHPStan\Reflection\RequireExtension\RequireExtendsPropertiesClassReflectionExtension' => [['0111']], - 'PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension' => [['0112']], - 'PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension' => [['0113']], - 'PHPStan\Reflection\Php\PhpClassReflectionExtension' => [['0114']], - 'PHPStan\Reflection\Php\PhpMethodReflectionFactory' => [['0115']], - 'PHPStan\Reflection\Php\Soap\SoapClientMethodsClassReflectionExtension' => [['0116']], - 'PHPStan\Reflection\AllowedSubTypesClassReflectionExtension' => [['0117']], - 'PHPStan\Reflection\Php\EnumAllowedSubTypesClassReflectionExtension' => [['0117']], - 'PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension' => [['0118']], - 'PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension' => [['0119', '0120']], - 'PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider' => [['0121']], - 'PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider' => [['0122']], - 'PHPStan\Reflection\SignatureMap\SignatureMapParser' => [['0123']], - 'PHPStan\Reflection\SignatureMap\SignatureMapProvider' => [['0127'], ['0124', '0125']], - 'PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider' => [['0124']], - 'PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider' => [['0125']], - 'PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory' => [['0126']], - 'PHPStan\Rules\Api\ApiRuleHelper' => [['0128']], - 'PHPStan\Rules\AttributesCheck' => [['0129']], - 'PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck' => [['0130']], - 'PHPStan\Rules\ClassNameCheck' => [['0131']], - 'PHPStan\Rules\ClassCaseSensitivityCheck' => [['0132']], - 'PHPStan\Rules\ClassForbiddenNameCheck' => [['0133']], - 'PHPStan\Rules\Classes\LocalTypeAliasesCheck' => [['0134']], - 'PHPStan\Rules\Classes\MethodTagCheck' => [['0135']], - 'PHPStan\Rules\Classes\MixinCheck' => [['0136']], - 'PHPStan\Rules\Classes\PropertyTagCheck' => [['0137']], - 'PHPStan\Rules\Comparison\ConstantConditionRuleHelper' => [['0138']], - 'PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper' => [['0139']], - 'PHPStan\Rules\Exceptions\ExceptionTypeResolver' => [1 => ['0140'], [1 => 'exceptionTypeResolver']], - 'PHPStan\Rules\Exceptions\DefaultExceptionTypeResolver' => [['0140']], - 'PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule' => [['0141']], - 'PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule' => [['0142']], - 'PHPStan\Rules\Exceptions\MissingCheckedExceptionInPropertyHookThrowsRule' => [['0143']], - 'PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck' => [['0144']], - 'PHPStan\Rules\Exceptions\TooWideThrowTypeCheck' => [['0145']], - 'PHPStan\Rules\FunctionCallParametersCheck' => [['0146']], - 'PHPStan\Rules\FunctionDefinitionCheck' => [['0147']], - 'PHPStan\Rules\FunctionReturnTypeCheck' => [['0148']], - 'PHPStan\Rules\ParameterCastableToStringCheck' => [['0149']], - 'PHPStan\Rules\Generics\CrossCheckInterfacesHelper' => [['0150']], - 'PHPStan\Rules\Generics\GenericAncestorsCheck' => [['0151']], - 'PHPStan\Rules\Generics\GenericObjectTypeCheck' => [['0152']], - 'PHPStan\Rules\Generics\MethodTagTemplateTypeCheck' => [['0153']], - 'PHPStan\Rules\Generics\TemplateTypeCheck' => [['0154']], - 'PHPStan\Rules\Generics\VarianceCheck' => [['0155']], - 'PHPStan\Rules\IssetCheck' => [['0156']], - 'PHPStan\Rules\Methods\MethodCallCheck' => [['0157']], - 'PHPStan\Rules\Methods\StaticMethodCallCheck' => [['0158']], - 'PHPStan\Rules\Methods\MethodSignatureRule' => [['0159']], - 'PHPStan\Rules\Methods\MethodParameterComparisonHelper' => [['0160']], - 'PHPStan\Rules\Methods\MethodVisibilityComparisonHelper' => [['0161']], - 'PHPStan\Rules\MissingTypehintCheck' => [['0162']], - 'PHPStan\Rules\NullsafeCheck' => [['0163']], - 'PHPStan\Rules\Constants\AlwaysUsedClassConstantsExtensionProvider' => [['0164']], - 'PHPStan\Rules\Constants\LazyAlwaysUsedClassConstantsExtensionProvider' => [['0164']], - 'PHPStan\Rules\Methods\AlwaysUsedMethodExtensionProvider' => [['0165']], - 'PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider' => [['0165']], - 'PHPStan\Rules\PhpDoc\ConditionalReturnTypeRuleHelper' => [['0166']], - 'PHPStan\Rules\PhpDoc\AssertRuleHelper' => [['0167']], - 'PHPStan\Rules\PhpDoc\UnresolvableTypeHelper' => [['0168']], - 'PHPStan\Rules\PhpDoc\GenericCallableRuleHelper' => [['0169']], - 'PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck' => [['0170']], - 'PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper' => [['0171']], - 'PHPStan\Rules\Playground\NeverRuleHelper' => [['0172']], - 'PHPStan\Rules\Properties\AccessPropertiesCheck' => [['0173']], - 'PHPStan\Rules\Properties\UninitializedPropertyRule' => [['0174']], - 'PHPStan\Rules\Properties\ReadWritePropertiesExtensionProvider' => [['0175']], - 'PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider' => [['0175']], - 'PHPStan\Rules\Properties\PropertyDescriptor' => [['0176']], - 'PHPStan\Rules\Properties\PropertyReflectionFinder' => [['0177']], - 'PHPStan\Rules\Pure\FunctionPurityCheck' => [['0178']], - 'PHPStan\Rules\RuleLevelHelper' => [['0179']], - 'PHPStan\Rules\UnusedFunctionParametersCheck' => [['0180']], - 'PHPStan\Rules\TooWideTypehints\TooWideParameterOutTypeCheck' => [['0181']], - 'PHPStan\Type\FileTypeMapper' => [0 => ['0182'], 2 => [1 => 'stubFileTypeMapper']], - 'PHPStan\Type\TypeAliasResolver' => [['0183']], - 'PHPStan\Type\TypeAliasResolverProvider' => [['0184']], - 'PHPStan\Type\BitwiseFlagHelper' => [['0185']], - 'PHPStan\Type\DynamicFunctionReturnTypeExtension' => [ - [ - '0186', - '0187', - '0188', - '0189', - '0190', - '0191', - '0192', - '0193', - '0194', - '0195', - '0197', - '0198', - '0199', - '0200', - '0201', - '0203', - '0204', - '0205', - '0206', - '0207', - '0208', - '0209', - '0210', - '0211', - '0212', - '0213', - '0214', - '0215', - '0216', - '0217', - '0219', - '0220', - '0223', - '0224', - '0228', - '0229', - '0231', - '0232', - '0234', - '0236', - '0238', - '0241', - '0242', - '0251', - '0252', - '0254', - '0255', - '0256', - '0257', - '0258', - '0259', - '0260', - '0261', - '0262', - '0263', - '0264', - '0265', - '0267', - '0284', - '0287', - '0288', - '0289', - '0290', - '0291', - '0293', - '0294', - '0295', - '0296', - '0297', - '0298', - '0299', - '0300', - '0301', - '0302', - '0303', - '0305', - '0306', - '0307', - '0308', - '0309', - '0310', - '0312', - '0313', - '0314', - '0315', - '0316', - '0317', - '0318', - '0319', - '0320', - '0323', - '0332', - '0336', - '0337', - '0340', - '0341', - '0342', - '0343', - '0344', - '0345', - '0475', - '0476', - '0477', - '0478', - '0479', - '0480', - '0489', - '0490', - '0491', - '0492', - '0530', - '0531', - ], - ], - 'PHPStan\Type\Php\AbsFunctionDynamicReturnTypeExtension' => [['0186']], - 'PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension' => [['0187']], - 'PHPStan\Type\Php\ArrayChangeKeyCaseFunctionReturnTypeExtension' => [['0188']], - 'PHPStan\Type\Php\ArrayIntersectKeyFunctionReturnTypeExtension' => [['0189']], - 'PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension' => [['0190']], - 'PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension' => [['0191']], - 'PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension' => [['0192']], - 'PHPStan\Type\Php\ArrayCurrentDynamicReturnTypeExtension' => [['0193']], - 'PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension' => [['0194']], - 'PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension' => [['0195']], - 'PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper' => [['0196']], - 'PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension' => [['0197']], - 'PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension' => [['0198']], - 'PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension' => [['0199']], - 'PHPStan\Type\Php\ArrayFindKeyFunctionReturnTypeExtension' => [['0200']], - 'PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension' => [['0201']], - 'PHPStan\Type\FunctionTypeSpecifyingExtension' => [ - [ - '0202', - '0218', - '0233', - '0271', - '0281', - '0285', - '0286', - '0304', - '0321', - '0322', - '0324', - '0325', - '0326', - '0327', - '0328', - '0329', - '0330', - '0331', - '0333', - '0335', - '0485', - '0486', - '0487', - '0488', - '0543', - ], - ], - 'PHPStan\Analyser\TypeSpecifierAwareExtension' => [ - [ - '0202', - '0218', - '0233', - '0271', - '0281', - '0285', - '0286', - '0292', - '0304', - '0321', - '0322', - '0324', - '0325', - '0326', - '0327', - '0328', - '0329', - '0330', - '0331', - '0333', - '0335', - '0337', - '0485', - '0486', - '0487', - '0488', - '0543', - '0544', - '0545', - ], - ], - 'PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension' => [['0202']], - 'PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension' => [['0203']], - 'PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension' => [['0204']], - 'PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension' => [['0205']], - 'PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension' => [['0206']], - 'PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension' => [['0207']], - 'PHPStan\Type\Php\ArrayNextDynamicReturnTypeExtension' => [['0208']], - 'PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension' => [['0209']], - 'PHPStan\Type\Php\ArrayRandFunctionReturnTypeExtension' => [['0210']], - 'PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension' => [['0211']], - 'PHPStan\Type\Php\ArrayReplaceFunctionReturnTypeExtension' => [['0212']], - 'PHPStan\Type\Php\ArrayReverseFunctionReturnTypeExtension' => [['0213']], - 'PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension' => [['0214']], - 'PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension' => [['0215']], - 'PHPStan\Type\Php\ArraySpliceFunctionReturnTypeExtension' => [['0216']], - 'PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension' => [['0217']], - 'PHPStan\Type\Php\ArraySearchFunctionTypeSpecifyingExtension' => [['0218']], - 'PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension' => [['0219']], - 'PHPStan\Type\Php\ArraySumFunctionDynamicReturnTypeExtension' => [['0220']], - 'PHPStan\Type\DynamicFunctionThrowTypeExtension' => [['0221', '0266', '0268']], - 'PHPStan\Type\Php\AssertThrowTypeExtension' => [['0221']], - 'PHPStan\Type\DynamicStaticMethodReturnTypeExtension' => [ - [ - '0222', - '0225', - '0227', - '0240', - '0346', - '0352', - '0457', - '0458', - '0459', - '0460', - '0461', - '0463', - '0471', - '0493', - ], - ], - 'PHPStan\Type\Php\BackedEnumFromMethodDynamicReturnTypeExtension' => [['0222']], - 'PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension' => [['0223']], - 'PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension' => [['0224']], - 'PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension' => [['0225']], - 'PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension' => [['0226']], - 'PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension' => [['0227']], - 'PHPStan\Type\Php\CompactFunctionReturnTypeExtension' => [['0228']], - 'PHPStan\Type\Php\ConstantFunctionReturnTypeExtension' => [['0229']], - 'PHPStan\Type\Php\ConstantHelper' => [['0230']], - 'PHPStan\Type\Php\CountFunctionReturnTypeExtension' => [['0231']], - 'PHPStan\Type\Php\CountCharsFunctionDynamicReturnTypeExtension' => [['0232']], - 'PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension' => [['0233']], - 'PHPStan\Type\Php\CurlGetinfoFunctionDynamicReturnTypeExtension' => [['0234']], - 'PHPStan\Type\Php\DateFunctionReturnTypeHelper' => [['0235']], - 'PHPStan\Type\Php\DateFormatFunctionReturnTypeExtension' => [['0236']], - 'PHPStan\Type\Php\DateFormatMethodReturnTypeExtension' => [['0237']], - 'PHPStan\Type\Php\DateFunctionReturnTypeExtension' => [['0238']], - 'PHPStan\Type\DynamicStaticMethodThrowTypeExtension' => [ - ['0239', '0245', '0248', '0277', '0278', '0279', '0280', '0283'], - ], - 'PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension' => [['0239']], - 'PHPStan\Type\Php\DateIntervalDynamicReturnTypeExtension' => [['0240']], - 'PHPStan\Type\Php\DateTimeCreateDynamicReturnTypeExtension' => [['0241']], - 'PHPStan\Type\Php\DateTimeDynamicReturnTypeExtension' => [['0242']], - 'PHPStan\Type\Php\DateTimeModifyReturnTypeExtension' => [['0243', '0244']], - 'PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension' => [['0245']], - 'PHPStan\Type\DynamicMethodThrowTypeExtension' => [['0246', '0247', '0250']], - 'PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension' => [['0246']], - 'PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension' => [['0247']], - 'PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension' => [['0248']], - 'PHPStan\Type\Php\DsMapDynamicReturnTypeExtension' => [['0249']], - 'PHPStan\Type\Php\DsMapDynamicMethodThrowTypeExtension' => [['0250']], - 'PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension' => [['0251']], - 'PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension' => [['0252']], - 'PHPStan\Type\Php\FilterFunctionReturnTypeHelper' => [['0253']], - 'PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension' => [['0254']], - 'PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension' => [['0255']], - 'PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension' => [['0256']], - 'PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension' => [['0257']], - 'PHPStan\Type\Php\GetClassDynamicReturnTypeExtension' => [['0258']], - 'PHPStan\Type\Php\GetDebugTypeFunctionReturnTypeExtension' => [['0259']], - 'PHPStan\Type\Php\GetDefinedVarsFunctionReturnTypeExtension' => [['0260']], - 'PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension' => [['0261']], - 'PHPStan\Type\Php\GettypeFunctionReturnTypeExtension' => [['0262']], - 'PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension' => [['0263']], - 'PHPStan\Type\Php\HashFunctionsReturnTypeExtension' => [['0264']], - 'PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension' => [['0265']], - 'PHPStan\Type\Php\IntdivThrowTypeExtension' => [['0266']], - 'PHPStan\Type\Php\IniGetReturnTypeExtension' => [['0267']], - 'PHPStan\Type\Php\JsonThrowTypeExtension' => [['0268']], - 'PHPStan\Type\FunctionParameterOutTypeExtension' => [['0269', '0270', '0272']], - 'PHPStan\Type\Php\OpenSslEncryptParameterOutTypeExtension' => [['0269']], - 'PHPStan\Type\Php\ParseStrParameterOutTypeExtension' => [['0270']], - 'PHPStan\Type\Php\PregMatchTypeSpecifyingExtension' => [['0271']], - 'PHPStan\Type\Php\PregMatchParameterOutTypeExtension' => [['0272']], - 'PHPStan\Type\FunctionParameterClosureTypeExtension' => [['0273']], - 'PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension' => [['0273']], - 'PHPStan\Type\Php\RegexArrayShapeMatcher' => [['0274']], - 'PHPStan\Type\Regex\RegexGroupParser' => [['0275']], - 'PHPStan\Type\Regex\RegexExpressionHelper' => [['0276']], - 'PHPStan\Type\Php\ReflectionClassConstructorThrowTypeExtension' => [['0277']], - 'PHPStan\Type\Php\ReflectionFunctionConstructorThrowTypeExtension' => [['0278']], - 'PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension' => [['0279']], - 'PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension' => [['0280']], - 'PHPStan\Type\Php\StrContainingTypeSpecifyingExtension' => [['0281']], - 'PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension' => [['0282']], - 'PHPStan\Type\Php\SimpleXMLElementConstructorThrowTypeExtension' => [['0283']], - 'PHPStan\Type\Php\StatDynamicReturnTypeExtension' => [['0284']], - 'PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension' => [['0285']], - 'PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension' => [['0286']], - 'PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension' => [['0287']], - 'PHPStan\Type\Php\NumberFormatFunctionDynamicReturnTypeExtension' => [['0288']], - 'PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension' => [['0289']], - 'PHPStan\Type\Php\PregFilterFunctionReturnTypeExtension' => [['0290']], - 'PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension' => [['0291']], - 'PHPStan\Type\MethodTypeSpecifyingExtension' => [['0292', '0544']], - 'PHPStan\Type\Php\ReflectionClassIsSubclassOfTypeSpecifyingExtension' => [['0292']], - 'PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension' => [['0293']], - 'PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension' => [['0294']], - 'PHPStan\Type\Php\LtrimFunctionReturnTypeExtension' => [['0295']], - 'PHPStan\Type\Php\MbFunctionsReturnTypeExtension' => [['0296']], - 'PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension' => [['0297']], - 'PHPStan\Type\Php\MbSubstituteCharacterDynamicReturnTypeExtension' => [['0298']], - 'PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension' => [['0299']], - 'PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension' => [['0300']], - 'PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension' => [['0301']], - 'PHPStan\Type\Php\ImplodeFunctionReturnTypeExtension' => [['0302']], - 'PHPStan\Type\Php\NonEmptyStringFunctionsReturnTypeExtension' => [['0303']], - 'PHPStan\Type\Php\SetTypeFunctionTypeSpecifyingExtension' => [['0304']], - 'PHPStan\Type\Php\StrCaseFunctionsReturnTypeExtension' => [['0305']], - 'PHPStan\Type\Php\StrlenFunctionReturnTypeExtension' => [['0306']], - 'PHPStan\Type\Php\StrIncrementDecrementFunctionReturnTypeExtension' => [['0307']], - 'PHPStan\Type\Php\StrPadFunctionReturnTypeExtension' => [['0308']], - 'PHPStan\Type\Php\StrRepeatFunctionReturnTypeExtension' => [['0309']], - 'PHPStan\Type\Php\SubstrDynamicReturnTypeExtension' => [['0310']], - 'PHPStan\Type\Php\ThrowableReturnTypeExtension' => [['0311']], - 'PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension' => [['0312']], - 'PHPStan\Type\Php\TriggerErrorDynamicReturnTypeExtension' => [['0313']], - 'PHPStan\Type\Php\TrimFunctionDynamicReturnTypeExtension' => [['0314']], - 'PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension' => [['0315']], - 'PHPStan\Type\Php\PowFunctionReturnTypeExtension' => [['0316']], - 'PHPStan\Type\Php\RoundFunctionReturnTypeExtension' => [['0317']], - 'PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension' => [['0318']], - 'PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension' => [['0319']], - 'PHPStan\Type\Php\RangeFunctionReturnTypeExtension' => [['0320']], - 'PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension' => [['0321']], - 'PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension' => [['0322']], - 'PHPStan\Type\Php\ClassImplementsFunctionReturnTypeExtension' => [['0323']], - 'PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension' => [['0324']], - 'PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension' => [['0325']], - 'PHPStan\Type\Php\FunctionExistsFunctionTypeSpecifyingExtension' => [['0326']], - 'PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension' => [['0327']], - 'PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension' => [['0328']], - 'PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension' => [['0329']], - 'PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension' => [['0330']], - 'PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension' => [['0331']], - 'PHPStan\Type\Php\IteratorToArrayFunctionReturnTypeExtension' => [['0332']], - 'PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension' => [['0333']], - 'PHPStan\Type\Php\IsAFunctionTypeSpecifyingHelper' => [['0334']], - 'PHPStan\Type\Php\CtypeDigitFunctionTypeSpecifyingExtension' => [['0335']], - 'PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension' => [['0336']], - 'PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension' => [['0337']], - 'PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension' => [['0338']], - 'PHPStan\Type\Php\SimpleXMLElementXpathMethodReturnTypeExtension' => [['0339']], - 'PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension' => [['0340']], - 'PHPStan\Type\Php\StrTokFunctionReturnTypeExtension' => [['0341']], - 'PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension' => [['0342']], - 'PHPStan\Type\Php\SscanfFunctionDynamicReturnTypeExtension' => [['0343']], - 'PHPStan\Type\Php\StrvalFamilyFunctionReturnTypeExtension' => [['0344']], - 'PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension' => [['0345']], - 'PHPStan\Type\Php\XMLReaderOpenReturnTypeExtension' => [['0346']], - 'PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension' => [['0347', '0348', '0349', '0350', '0351']], - 'PHPStan\Type\Php\DatePeriodConstructorReturnTypeExtension' => [['0352']], - 'PHPStan\Type\ClosureTypeFactory' => [['0353']], - 'PHPStan\Type\Constant\OversizedArrayBuilder' => [['0354']], - 'PHPStan\Rules\Functions\PrintfHelper' => [['0355']], - 'PHPStan\Analyser\TypeSpecifier' => [['typeSpecifier']], - 'PHPStan\Analyser\TypeSpecifierFactory' => [['typeSpecifierFactory']], - 'PHPStan\File\RelativePathHelper' => [ - 0 => ['relativePathHelper'], - 2 => [1 => 'simpleRelativePathHelper', 'parentDirectoryRelativePathHelper'], - ], - 'PHPStan\File\ParentDirectoryRelativePathHelper' => [2 => ['parentDirectoryRelativePathHelper']], - 'PHPStan\Cache\CacheStorage' => [2 => ['cacheStorage']], - 'PHPStan\Cache\FileCacheStorage' => [2 => ['cacheStorage']], - 'PHPStan\Parser\Parser' => [ - 2 => [ - 'currentPhpVersionRichParser', - 'currentPhpVersionSimpleParser', - 'currentPhpVersionSimpleDirectParser', - 'defaultAnalysisParser', - 'php8Parser', - 'pathRoutingParser', - 'freshStubParser', - 'stubParser', - ], - ], - 'PHPStan\Parser\RichParser' => [2 => ['currentPhpVersionRichParser']], - 'PHPStan\Parser\CleaningParser' => [2 => ['currentPhpVersionSimpleParser']], - 'PHPStan\Parser\SimpleParser' => [2 => ['currentPhpVersionSimpleDirectParser', 'php8Parser']], - 'PHPStan\Parser\CachedParser' => [2 => ['defaultAnalysisParser', 'stubParser']], - 'PhpParser\Parser' => [2 => ['phpParserDecorator', 'currentPhpVersionPhpParser', 'php8PhpParser']], - 'PHPStan\Parser\PhpParserDecorator' => [2 => ['phpParserDecorator']], - 'PhpParser\Lexer' => [2 => ['currentPhpVersionLexer', 'php8Lexer']], - 'PhpParser\ParserAbstract' => [2 => ['currentPhpVersionPhpParser', 'php8PhpParser']], - 'PHPStan\Parser\PhpParserFactory' => [2 => ['currentPhpVersionPhpParserFactory']], - 'PHPStan\Rules\Registry' => [['registry']], - 'PHPStan\Rules\LazyRegistry' => [['registry']], - 'PHPStan\PhpDoc\StubPhpDocProvider' => [['stubPhpDocProvider']], - 'PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory' => [['reflectionProviderFactory']], - 'PHPStan\Reflection\ReflectionProvider' => [0 => ['reflectionProvider'], 2 => [1 => 'betterReflectionProvider']], - 'PHPStan\BetterReflection\SourceLocator\Type\SourceLocator' => [2 => ['betterReflectionSourceLocator']], - 'PHPStan\BetterReflection\Reflector\Reflector' => [ - 0 => ['originalBetterReflectionReflector'], - 2 => [1 => 'betterReflectionReflector', 'nodeScopeResolverReflector'], - ], - 'PHPStan\BetterReflection\Reflector\DefaultReflector' => [['originalBetterReflectionReflector']], - 'PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector' => [ - 2 => ['betterReflectionReflector', 'nodeScopeResolverReflector'], - ], - 'PHPStan\Reflection\BetterReflection\BetterReflectionProvider' => [2 => ['betterReflectionProvider']], - 'PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory' => [['0356']], - 'PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory' => [['0357']], - 'PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory' => [['0358']], - 'PHPStan\BetterReflection\SourceLocator\SourceStubber\SourceStubber' => [1 => ['0359', '0360']], - 'PHPStan\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber' => [['0359']], - 'PHPStan\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber' => [['0360']], - 'PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory' => [['0361']], - 'PhpParser\Lexer\Emulative' => [2 => ['php8Lexer']], - 'PhpParser\Parser\Php8' => [2 => ['php8PhpParser']], - 'PHPStan\Parser\PathRoutingParser' => [2 => ['pathRoutingParser']], - 'PHPStan\Parser\StubParser' => [2 => ['freshStubParser']], - 'PHPStan\Diagnose\PHPStanDiagnoseExtension' => [2 => ['phpstanDiagnoseExtension']], - 'PHPStan\Command\ErrorFormatter\ErrorFormatter' => [ - [ - 'errorFormatter.raw', - 'errorFormatter.table', - 'errorFormatter.checkstyle', - 'errorFormatter.json', - 'errorFormatter.junit', - 'errorFormatter.prettyJson', - 'errorFormatter.gitlab', - 'errorFormatter.github', - 'errorFormatter.teamcity', - ], - ['0362'], - ], - 'PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter' => [['0362']], - 'PHPStan\Command\ErrorFormatter\RawErrorFormatter' => [['errorFormatter.raw']], - '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\ExistingClassInClassExtendsRule' => [['0363']], - 'PHPStan\Rules\Classes\ExistingClassInInstanceOfRule' => [['0364']], - 'PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule' => [['0365']], - 'PHPStan\Rules\Functions\CallToNonExistentFunctionRule' => [['0366']], - 'PHPStan\Rules\Constants\OverridingConstantRule' => [['0367']], - 'PHPStan\Rules\Methods\OverridingMethodRule' => [['0368']], - 'PHPStan\Rules\Missing\MissingReturnRule' => [['0369']], - 'PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule' => [['0370']], - 'PHPStan\Rules\Namespaces\ExistingNamesInUseRule' => [['0371']], - 'PHPStan\Rules\Properties\AccessPropertiesRule' => [['0372']], - 'PHPStan\Rules\Properties\AccessStaticPropertiesRule' => [['0373']], - 'PHPStan\Rules\Properties\ExistingClassesInPropertiesRule' => [['0374']], - 'PHPStan\Rules\Functions\FunctionCallableRule' => [['0375']], - 'PHPStan\Rules\Properties\OverridingPropertyRule' => [['0376']], - 'PHPStan\Rules\Properties\SetPropertyHookParameterRule' => [['0377']], - 'PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule' => [['0378']], - 'PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule' => [['0379']], - 'PHPStan\Rules\Variables\CompactVariablesRule' => [['0380']], - 'PHPStan\Rules\Variables\DefinedVariableRule' => [['0381']], - 'PHPStan\Rules\Keywords\RequireFileExistsRule' => [['0382']], - 'PHPStan\Rules\Classes\MixinRule' => [['0383']], - 'PHPStan\Rules\PhpDoc\RequireExtendsCheck' => [['0384']], - 'PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule' => [['0385']], - 'PHPStan\Rules\Functions\CallCallablesRule' => [['0386']], - 'PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule' => [['0387']], - 'PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule' => [['0388']], - 'PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule' => [['0389']], - 'PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule' => [['0390']], - 'PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule' => [['0391']], - 'PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule' => [['0392']], - 'PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule' => [['0393']], - 'PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule' => [['0394']], - 'PHPStan\Rules\Exceptions\ThrowsVoidPropertyHookWithExplicitThrowPointRule' => [['0395']], - 'PHPStan\Rules\Generators\YieldFromTypeRule' => [['0396']], - 'PHPStan\Rules\Generators\YieldInGeneratorRule' => [['0397']], - 'PHPStan\Rules\Classes\ImpossibleInstanceOfRule' => [['0398']], - 'PHPStan\Rules\Comparison\BooleanAndConstantConditionRule' => [['0399']], - 'PHPStan\Rules\Comparison\BooleanOrConstantConditionRule' => [['0400']], - 'PHPStan\Rules\Comparison\BooleanNotConstantConditionRule' => [['0401']], - 'PHPStan\Collectors\Collector' => [ - [ - '0402', - '0403', - '0404', - '0405', - '0406', - '0407', - '0408', - '0429', - '0430', - '0516', - '0517', - '0518', - '0519', - '0520', - ], - ], - 'PHPStan\Rules\DeadCode\ConstructorWithoutImpurePointsCollector' => [['0402']], - 'PHPStan\Rules\DeadCode\PossiblyPureNewCollector' => [['0403']], - 'PHPStan\Rules\DeadCode\FunctionWithoutImpurePointsCollector' => [['0404']], - 'PHPStan\Rules\DeadCode\PossiblyPureFuncCallCollector' => [['0405']], - 'PHPStan\Rules\DeadCode\MethodWithoutImpurePointsCollector' => [['0406']], - 'PHPStan\Rules\DeadCode\PossiblyPureMethodCallCollector' => [['0407']], - 'PHPStan\Rules\DeadCode\PossiblyPureStaticCallCollector' => [['0408']], - 'PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule' => [['0409']], - 'PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule' => [['0410']], - 'PHPStan\Rules\Comparison\ElseIfConstantConditionRule' => [['0411']], - 'PHPStan\Rules\Comparison\IfConstantConditionRule' => [['0412']], - 'PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule' => [['0413']], - 'PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule' => [['0414']], - 'PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule' => [['0415']], - 'PHPStan\Rules\Comparison\LogicalXorConstantConditionRule' => [['0416']], - 'PHPStan\Rules\Comparison\MatchExpressionRule' => [['0417']], - 'PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule' => [['0418']], - 'PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule' => [['0419']], - 'PHPStan\Rules\Comparison\ConstantLooseComparisonRule' => [['0420']], - 'PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule' => [['0421']], - 'PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule' => [['0422']], - 'PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule' => [['0423']], - 'PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule' => [['0424']], - 'PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule' => [['0425']], - 'PHPStan\Rules\Exceptions\TooWidePropertyHookThrowTypeRule' => [['0426']], - 'PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule' => [['0427']], - 'PHPStan\Rules\Properties\NullsafePropertyFetchRule' => [['0428']], - 'PHPStan\Rules\Traits\TraitDeclarationCollector' => [['0429']], - 'PHPStan\Rules\Traits\TraitUseCollector' => [['0430']], - 'PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule' => [['0431']], - 'PHPStan\Rules\Functions\RandomIntParametersRule' => [['0432']], - 'PHPStan\Rules\Functions\ArrayFilterRule' => [['0433']], - 'PHPStan\Rules\Functions\ArrayValuesRule' => [['0434']], - 'PHPStan\Rules\Functions\ParameterCastableToNumberRule' => [['0435']], - 'Larastan\Larastan\Methods\RelationForwardsCallsExtension' => [['0436']], - 'Larastan\Larastan\Methods\ModelForwardsCallsExtension' => [['0437']], - 'Larastan\Larastan\Methods\EloquentBuilderForwardsCallsExtension' => [['0438']], - 'Larastan\Larastan\Methods\HigherOrderTapProxyExtension' => [['0439']], - 'Larastan\Larastan\Methods\HigherOrderCollectionProxyExtension' => [['0440']], - 'Larastan\Larastan\Methods\StorageMethodsClassReflectionExtension' => [['0441']], - 'Larastan\Larastan\Methods\Extension' => [['0442']], - 'Larastan\Larastan\Methods\ModelFactoryMethodsClassReflectionExtension' => [['0443']], - 'Larastan\Larastan\Methods\RedirectResponseMethodsClassReflectionExtension' => [['0444']], - 'Larastan\Larastan\Methods\MacroMethodsClassReflectionExtension' => [['0445']], - 'Larastan\Larastan\Methods\ViewWithMethodsClassReflectionExtension' => [['0446']], - 'Larastan\Larastan\Properties\ModelAccessorExtension' => [['0447']], - 'Larastan\Larastan\Properties\ModelPropertyExtension' => [['0448']], - 'Larastan\Larastan\Properties\HigherOrderCollectionProxyPropertyExtension' => [['0449']], - 'Larastan\Larastan\ReturnTypes\HigherOrderTapProxyExtension' => [['0450']], - 'Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension' => [ - ['0451', '0452', '0453', '0454'], - ], - 'Larastan\Larastan\Properties\ModelRelationsExtension' => [['0455']], - 'Larastan\Larastan\ReturnTypes\ModelOnlyDynamicMethodReturnTypeExtension' => [['0456']], - 'Larastan\Larastan\ReturnTypes\ModelFactoryDynamicStaticMethodReturnTypeExtension' => [['0457']], - 'Larastan\Larastan\ReturnTypes\ModelDynamicStaticMethodReturnTypeExtension' => [['0458']], - 'Larastan\Larastan\ReturnTypes\AppMakeDynamicReturnTypeExtension' => [['0459']], - 'Larastan\Larastan\ReturnTypes\AuthExtension' => [['0460']], - 'Larastan\Larastan\ReturnTypes\GuardDynamicStaticMethodReturnTypeExtension' => [['0461']], - 'Larastan\Larastan\ReturnTypes\AuthManagerExtension' => [['0462']], - 'Larastan\Larastan\ReturnTypes\DateExtension' => [['0463']], - 'Larastan\Larastan\ReturnTypes\GuardExtension' => [['0464']], - 'Larastan\Larastan\ReturnTypes\RequestFileExtension' => [['0465']], - 'Larastan\Larastan\ReturnTypes\RequestRouteExtension' => [['0466']], - 'Larastan\Larastan\ReturnTypes\RequestUserExtension' => [['0467']], - 'Larastan\Larastan\ReturnTypes\EloquentBuilderExtension' => [['0468']], - 'Larastan\Larastan\ReturnTypes\RelationFindExtension' => [['0469']], - 'Larastan\Larastan\ReturnTypes\RelationCollectionExtension' => [['0470']], - 'Larastan\Larastan\ReturnTypes\ModelFindExtension' => [['0471']], - 'Larastan\Larastan\ReturnTypes\BuilderModelFindExtension' => [['0472']], - 'Larastan\Larastan\ReturnTypes\TestCaseExtension' => [['0473']], - 'Larastan\Larastan\Support\CollectionHelper' => [['0474']], - 'Larastan\Larastan\ReturnTypes\Helpers\AuthExtension' => [['0475']], - 'Larastan\Larastan\ReturnTypes\Helpers\CollectExtension' => [['0476']], - 'Larastan\Larastan\ReturnTypes\Helpers\NowAndTodayExtension' => [['0477']], - 'Larastan\Larastan\ReturnTypes\Helpers\ResponseExtension' => [['0478']], - 'Larastan\Larastan\ReturnTypes\Helpers\ValidatorExtension' => [['0479']], - 'Larastan\Larastan\ReturnTypes\Helpers\LiteralExtension' => [['0480']], - 'Larastan\Larastan\ReturnTypes\CollectionFilterRejectDynamicReturnTypeExtension' => [['0481']], - 'Larastan\Larastan\ReturnTypes\CollectionWhereNotNullDynamicReturnTypeExtension' => [['0482']], - 'Larastan\Larastan\ReturnTypes\NewModelQueryDynamicMethodReturnTypeExtension' => [['0483']], - 'Larastan\Larastan\ReturnTypes\FactoryDynamicMethodReturnTypeExtension' => [['0484']], - 'Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension' => [['0485', '0486', '0487', '0488']], - 'Larastan\Larastan\ReturnTypes\Helpers\AppExtension' => [['0489']], - 'Larastan\Larastan\ReturnTypes\Helpers\ValueExtension' => [['0490']], - 'Larastan\Larastan\ReturnTypes\Helpers\StrExtension' => [['0491']], - 'Larastan\Larastan\ReturnTypes\Helpers\TapExtension' => [['0492']], - 'Larastan\Larastan\ReturnTypes\StorageDynamicStaticMethodReturnTypeExtension' => [['0493']], - 'PHPStan\PhpDoc\TypeNodeResolverExtension' => [['0494', '0495', '0501', '0503', '0542']], - 'Larastan\Larastan\Types\GenericEloquentCollectionTypeNodeResolverExtension' => [['0494']], - 'Larastan\Larastan\Types\ViewStringTypeNodeResolverExtension' => [['0495']], - 'Larastan\Larastan\Rules\OctaneCompatibilityRule' => [['0496']], - 'Larastan\Larastan\Rules\NoEnvCallsOutsideOfConfigRule' => [['0497']], - 'Larastan\Larastan\Rules\NoModelMakeRule' => [['0498']], - 'Larastan\Larastan\Rules\NoUnnecessaryCollectionCallRule' => [['0499']], - 'Larastan\Larastan\Rules\ModelAppendsRule' => [['0500']], - 'Larastan\Larastan\Types\GenericEloquentBuilderTypeNodeResolverExtension' => [['0501']], - 'Larastan\Larastan\ReturnTypes\AppEnvironmentReturnTypeExtension' => [['0502']], - 'Larastan\Larastan\Types\ModelProperty\ModelPropertyTypeNodeResolverExtension' => [['0503']], - 'Larastan\Larastan\Properties\MigrationHelper' => [['0504']], - 'Larastan\Larastan\Properties\SquashedMigrationHelper' => [['0505']], - 'Larastan\Larastan\Properties\ModelCastHelper' => [['0506']], - 'Larastan\Larastan\Properties\ModelPropertyHelper' => [['0507']], - 'Larastan\Larastan\Rules\ModelRuleHelper' => [['0508']], - 'Larastan\Larastan\Methods\BuilderHelper' => [['0509']], - 'Larastan\Larastan\Rules\RelationExistenceRule' => [['0510']], - 'Larastan\Larastan\Rules\CheckDispatchArgumentTypesCompatibleWithClassConstructorRule' => [['0511', '0512']], - 'Larastan\Larastan\Properties\Schema\PhpMyAdminDataTypeToPhpTypeConverter' => [['0513']], - 'Larastan\Larastan\LarastanStubFilesExtension' => [['0514']], - 'Larastan\Larastan\Rules\UnusedViewsRule' => [['0515']], - 'Larastan\Larastan\Collectors\UsedViewFunctionCollector' => [['0516']], - 'Larastan\Larastan\Collectors\UsedEmailViewCollector' => [['0517']], - 'Larastan\Larastan\Collectors\UsedViewMakeCollector' => [['0518']], - 'Larastan\Larastan\Collectors\UsedViewFacadeMakeCollector' => [['0519']], - 'Larastan\Larastan\Collectors\UsedRouteFacadeViewCollector' => [['0520']], - 'Larastan\Larastan\Collectors\UsedViewInAnotherViewCollector' => [['0521']], - 'Larastan\Larastan\Support\ViewFileHelper' => [['0522']], - 'Larastan\Larastan\ReturnTypes\ApplicationMakeDynamicReturnTypeExtension' => [['0523']], - 'Larastan\Larastan\ReturnTypes\ContainerMakeDynamicReturnTypeExtension' => [['0524']], - 'Larastan\Larastan\ReturnTypes\ConsoleCommand\ArgumentDynamicReturnTypeExtension' => [['0525']], - 'Larastan\Larastan\ReturnTypes\ConsoleCommand\HasArgumentDynamicReturnTypeExtension' => [['0526']], - 'Larastan\Larastan\ReturnTypes\ConsoleCommand\OptionDynamicReturnTypeExtension' => [['0527']], - 'Larastan\Larastan\ReturnTypes\ConsoleCommand\HasOptionDynamicReturnTypeExtension' => [['0528']], - 'Larastan\Larastan\ReturnTypes\TranslatorGetReturnTypeExtension' => [['0529']], - 'Larastan\Larastan\ReturnTypes\TransHelperReturnTypeExtension' => [['0530']], - 'Larastan\Larastan\ReturnTypes\DoubleUnderscoreHelperReturnTypeExtension' => [['0531']], - 'Larastan\Larastan\ReturnTypes\AppMakeHelper' => [['0532']], - 'Larastan\Larastan\Internal\ConsoleApplicationResolver' => [['0533']], - 'Larastan\Larastan\Internal\ConsoleApplicationHelper' => [['0534']], - 'Larastan\Larastan\Support\HigherOrderCollectionProxyHelper' => [['0535']], - 'Carbon\PHPStan\MacroExtension' => [['0536']], - 'PHPStan\Rules\Deprecations\DeprecatedClassHelper' => [['0537']], - 'PHPStan\DependencyInjection\LazyDeprecatedScopeResolverProvider' => [['0538']], - 'PHPStan\Rules\Deprecations\DeprecatedScopeHelper' => [['0539']], - 'PHPStan\Rules\Deprecations\DeprecatedScopeResolver' => [['0540']], - 'PHPStan\Rules\Deprecations\DefaultDeprecatedScopeResolver' => [['0540']], - 'PHPStan\Rules\Deprecations\CallWithDeprecatedIniOptionRule' => [['0541']], - 'PHPStan\PhpDoc\TypeNodeResolverAwareExtension' => [['0542']], - 'PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension' => [['0542']], - 'PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension' => [['0543']], - 'PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension' => [['0544']], - 'PHPStan\Type\StaticMethodTypeSpecifyingExtension' => [['0545']], - 'PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension' => [['0545']], - 'PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension' => [['0546']], - 'PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension' => [['0547']], - 'PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension' => [['0548']], - 'PHPStan\Rules\PHPUnit\CoversHelper' => [['0549']], - 'PHPStan\Rules\PHPUnit\AnnotationHelper' => [['0550']], - 'PHPStan\Rules\PHPUnit\DataProviderHelper' => [['0551']], - 'PHPStan\Rules\PHPUnit\DataProviderHelperFactory' => [['0552']], - 'PHPStan\Rules\PHPUnit\DataProviderDeclarationRule' => [['0553']], - 'PHPStan\Rules\PHPUnit\AssertEqualsIsDiscouragedRule' => [['0554']], - ]; - - - public function __construct(array $params = []) - { - parent::__construct($params); - } - - - public function createService01(): PhpParser\BuilderFactory - { - return new PhpParser\BuilderFactory; - } - - - public function createService02(): PHPStan\Parser\LexerFactory - { - return new PHPStan\Parser\LexerFactory($this->getService('026')); - } - - - public function createService03(): PhpParser\NodeVisitor\NameResolver - { - return new PhpParser\NodeVisitor\NameResolver(options: ['preserveOriginalNames' => true]); - } - - - public function createService04(): PHPStan\Parser\AnonymousClassVisitor - { - return new PHPStan\Parser\AnonymousClassVisitor; - } - - - public function createService05(): PHPStan\Parser\ArrayFilterArgVisitor - { - return new PHPStan\Parser\ArrayFilterArgVisitor; - } - - - public function createService06(): PHPStan\Parser\ArrayFindArgVisitor - { - return new PHPStan\Parser\ArrayFindArgVisitor; - } - - - public function createService07(): PHPStan\Parser\ArrayMapArgVisitor - { - return new PHPStan\Parser\ArrayMapArgVisitor; - } - - - public function createService08(): PHPStan\Parser\ArrayWalkArgVisitor - { - return new PHPStan\Parser\ArrayWalkArgVisitor; - } - - - public function createService09(): PHPStan\Parser\ClosureArgVisitor - { - return new PHPStan\Parser\ClosureArgVisitor; - } - - - public function createService010(): PHPStan\Parser\ClosureBindToVarVisitor - { - return new PHPStan\Parser\ClosureBindToVarVisitor; - } - - - public function createService011(): PHPStan\Parser\ClosureBindArgVisitor - { - return new PHPStan\Parser\ClosureBindArgVisitor; - } - - - public function createService012(): PHPStan\Parser\CurlSetOptArgVisitor - { - return new PHPStan\Parser\CurlSetOptArgVisitor; - } - - - public function createService013(): PHPStan\Parser\ArrowFunctionArgVisitor - { - return new PHPStan\Parser\ArrowFunctionArgVisitor; - } - - - public function createService014(): PHPStan\Parser\MagicConstantParamDefaultVisitor - { - return new PHPStan\Parser\MagicConstantParamDefaultVisitor; - } - - - public function createService015(): PHPStan\Parser\NewAssignedToPropertyVisitor - { - return new PHPStan\Parser\NewAssignedToPropertyVisitor; - } - - - public function createService016(): PHPStan\Parser\ParentStmtTypesVisitor - { - return new PHPStan\Parser\ParentStmtTypesVisitor; - } - - - public function createService017(): PHPStan\Parser\StandaloneThrowExprVisitor - { - return new PHPStan\Parser\StandaloneThrowExprVisitor; - } - - - public function createService018(): PHPStan\Parser\TryCatchTypeVisitor - { - return new PHPStan\Parser\TryCatchTypeVisitor; - } - - - public function createService019(): PHPStan\Parser\LastConditionVisitor - { - return new PHPStan\Parser\LastConditionVisitor; - } - - - public function createService020(): PHPStan\Parser\TypeTraverserInstanceofVisitor - { - return new PHPStan\Parser\TypeTraverserInstanceofVisitor; - } - - - public function createService021(): PHPStan\Parser\VariadicMethodsVisitor - { - return new PHPStan\Parser\VariadicMethodsVisitor; - } - - - public function createService022(): PHPStan\Parser\VariadicFunctionsVisitor - { - return new PHPStan\Parser\VariadicFunctionsVisitor; - } - - - public function createService023(): PHPStan\Node\Printer\ExprPrinter - { - return new PHPStan\Node\Printer\ExprPrinter($this->getService('024')); - } - - - public function createService024(): PHPStan\Node\Printer\Printer - { - return new PHPStan\Node\Printer\Printer; - } - - - public function createService025(): PHPStan\Broker\AnonymousClassNameHelper - { - return new PHPStan\Broker\AnonymousClassNameHelper($this->getService('084'), $this->getService('simpleRelativePathHelper')); - } - - - public function createService026(): PHPStan\Php\PhpVersion - { - return $this->getService('027')->create(); - } - - - public function createService027(): PHPStan\Php\PhpVersionFactory - { - return $this->getService('028')->create(); - } - - - public function createService028(): PHPStan\Php\PhpVersionFactoryFactory - { - return new PHPStan\Php\PhpVersionFactoryFactory(null, ['/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify']); - } - - - public function createService029(): PHPStan\Php\ComposerPhpVersionFactory - { - return new PHPStan\Php\ComposerPhpVersionFactory(['/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify']); - } - - - public function createService030(): PHPStan\PhpDocParser\ParserConfig - { - return new PHPStan\PhpDocParser\ParserConfig(['lines' => true]); - } - - - public function createService031(): PHPStan\PhpDocParser\Lexer\Lexer - { - return new PHPStan\PhpDocParser\Lexer\Lexer($this->getService('030')); - } - - - public function createService032(): PHPStan\PhpDocParser\Parser\TypeParser - { - return new PHPStan\PhpDocParser\Parser\TypeParser($this->getService('030'), $this->getService('033')); - } - - - public function createService033(): PHPStan\PhpDocParser\Parser\ConstExprParser - { - return new PHPStan\PhpDocParser\Parser\ConstExprParser($this->getService('030')); - } - - - public function createService034(): PHPStan\PhpDocParser\Parser\PhpDocParser - { - return new PHPStan\PhpDocParser\Parser\PhpDocParser( - $this->getService('030'), - $this->getService('032'), - $this->getService('033') - ); - } - - - public function createService035(): PHPStan\PhpDocParser\Printer\Printer - { - return new PHPStan\PhpDocParser\Printer\Printer; - } - - - public function createService036(): PHPStan\PhpDoc\PhpDocInheritanceResolver - { - return new PHPStan\PhpDoc\PhpDocInheritanceResolver($this->getService('0182'), $this->getService('stubPhpDocProvider')); - } - - - public function createService037(): PHPStan\PhpDoc\PhpDocNodeResolver - { - return new PHPStan\PhpDoc\PhpDocNodeResolver($this->getService('040'), $this->getService('039'), $this->getService('0168')); - } - - - public function createService038(): PHPStan\PhpDoc\PhpDocStringResolver - { - return new PHPStan\PhpDoc\PhpDocStringResolver($this->getService('031'), $this->getService('034')); - } - - - public function createService039(): PHPStan\PhpDoc\ConstExprNodeResolver - { - return new PHPStan\PhpDoc\ConstExprNodeResolver($this->getService('0121'), $this->getService('095')); - } - - - public function createService040(): PHPStan\PhpDoc\TypeNodeResolver - { - return new PHPStan\PhpDoc\TypeNodeResolver( - $this->getService('041'), - $this->getService('0121'), - $this->getService('0184'), - $this->getService('059'), - $this->getService('095') - ); - } - - - public function createService041(): PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider - { - return new PHPStan\PhpDoc\LazyTypeNodeResolverExtensionRegistryProvider($this->getService('074')); - } - - - public function createService042(): PHPStan\PhpDoc\TypeStringResolver - { - return new PHPStan\PhpDoc\TypeStringResolver($this->getService('031'), $this->getService('032'), $this->getService('040')); - } - - - public function createService043(): PHPStan\PhpDoc\StubValidator - { - return new PHPStan\PhpDoc\StubValidator($this->getService('076')); - } - - - public function createService044(): PHPStan\PhpDoc\SocketSelectStubFilesExtension - { - return new PHPStan\PhpDoc\SocketSelectStubFilesExtension($this->getService('026')); - } - - - public function createService045(): PHPStan\PhpDoc\DefaultStubFilesProvider - { - return new PHPStan\PhpDoc\DefaultStubFilesProvider( - $this->getService('074'), - [ - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionAttribute.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionClassConstant.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionFunctionAbstract.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionMethod.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionParameter.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionProperty.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/iterable.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ArrayObject.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/WeakReference.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ext-ds.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ImagickPixel.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/PDOStatement.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/date.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ibm_db2.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/mysqli.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/zip.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/dom.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/spl.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/SplObjectStorage.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/Exception.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/arrayFunctions.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/core.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/typeCheckingFunctions.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/Countable.stub', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/Assert.stub', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/AssertionFailedError.stub', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/ExpectationFailedException.stub', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/Stub.stub', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', - ], - ['/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'] - ); - } - - - public function createService046(): PHPStan\PhpDoc\JsonValidateStubFilesExtension - { - return new PHPStan\PhpDoc\JsonValidateStubFilesExtension($this->getService('026')); - } - - - public function createService047(): PHPStan\PhpDoc\ReflectionClassStubFilesExtension - { - return new PHPStan\PhpDoc\ReflectionClassStubFilesExtension($this->getService('026')); - } - - - public function createService048(): PHPStan\PhpDoc\ReflectionEnumStubFilesExtension - { - return new PHPStan\PhpDoc\ReflectionEnumStubFilesExtension($this->getService('026')); - } - - - public function createService049(): PHPStan\Analyser\Analyser - { - return new PHPStan\Analyser\Analyser( - $this->getService('051'), - $this->getService('registry'), - $this->getService('065'), - $this->getService('058'), - 50 - ); - } - - - public function createService050(): PHPStan\Analyser\AnalyserResultFinalizer - { - return new PHPStan\Analyser\AnalyserResultFinalizer( - $this->getService('registry'), - $this->getService('053'), - $this->getService('057'), - $this->getService('052'), - true - ); - } - - - public function createService051(): PHPStan\Analyser\FileAnalyser - { - return new PHPStan\Analyser\FileAnalyser( - $this->getService('057'), - $this->getService('058'), - $this->getService('defaultAnalysisParser'), - $this->getService('070'), - $this->getService('053'), - $this->getService('052') - ); - } - - - public function createService052(): PHPStan\Analyser\LocalIgnoresProcessor - { - return new PHPStan\Analyser\LocalIgnoresProcessor; - } - - - public function createService053(): PHPStan\Analyser\RuleErrorTransformer - { - return new PHPStan\Analyser\RuleErrorTransformer; - } - - - public function createService054(): PHPStan\Analyser\Ignore\IgnoredErrorHelper - { - return new PHPStan\Analyser\Ignore\IgnoredErrorHelper($this->getService('084'), [], true); - } - - - public function createService055(): PHPStan\Analyser\Ignore\IgnoreLexer - { - return new PHPStan\Analyser\Ignore\IgnoreLexer; - } - - - public function createService056(): PHPStan\Analyser\LazyInternalScopeFactory - { - return new PHPStan\Analyser\LazyInternalScopeFactory($this->getService('074')); - } - - - public function createService057(): PHPStan\Analyser\ScopeFactory - { - return new PHPStan\Analyser\ScopeFactory($this->getService('056')); - } - - - public function createService058(): PHPStan\Analyser\NodeScopeResolver - { - return new PHPStan\Analyser\NodeScopeResolver( - $this->getService('reflectionProvider'), - $this->getService('095'), - $this->getService('nodeScopeResolverReflector'), - $this->getService('077'), - $this->getService('079'), - $this->getService('defaultAnalysisParser'), - $this->getService('0182'), - $this->getService('stubPhpDocProvider'), - $this->getService('026'), - $this->getService('0127'), - $this->getService('093'), - $this->getService('036'), - $this->getService('084'), - $this->getService('typeSpecifier'), - $this->getService('082'), - $this->getService('0175'), - $this->getService('083'), - $this->getService('057'), - true, - true, - true, - ['PHPUnit\Framework\Assert' => ['fail', 'markTestIncomplete', 'markTestSkipped']], - ['abort', 'dd'], - [ - 'stdClass', - 'Illuminate\Http\Request', - 'Illuminate\Support\Optional', - 'Pest\Support\HigherOrderTapProxy', - 'Pest\Expectation', - ], - true, - true - ); - } - - - public function createService059(): PHPStan\Analyser\ConstantResolver - { - return $this->getService('060')->create(); - } - - - public function createService060(): PHPStan\Analyser\ConstantResolverFactory - { - return new PHPStan\Analyser\ConstantResolverFactory($this->getService('0121'), $this->getService('074')); - } - - - public function createService061(): PHPStan\Analyser\ResultCache\ResultCacheManagerFactory - { - return new class ($this) implements PHPStan\Analyser\ResultCache\ResultCacheManagerFactory { - private $container; - - - public function __construct(Container_c5db45e753 $container) - { - $this->container = $container; - } - - - public function create(): PHPStan\Analyser\ResultCache\ResultCacheManager - { - return new PHPStan\Analyser\ResultCache\ResultCacheManager( - $this->container->getService('074'), - $this->container->getService('071'), - $this->container->getService('fileFinderScan'), - $this->container->getService('reflectionProvider'), - $this->container->getService('045'), - $this->container->getService('084'), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/build/phpstan/resultCache.php', - $this->container->getParameter('analysedPaths'), - ['/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'], - '5', - null, - [ - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionUnionType.php', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionAttribute.php', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/Attribute.php', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionIntersectionType.php', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/bootstrap.php', - ], - [], - [], - false - ); - } - }; - } - - - public function createService062(): PHPStan\Analyser\ResultCache\ResultCacheClearer - { - return new PHPStan\Analyser\ResultCache\ResultCacheClearer('/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/build/phpstan/resultCache.php'); - } - - - public function createService063(): PHPStan\Analyser\RicherScopeGetTypeHelper - { - return new PHPStan\Analyser\RicherScopeGetTypeHelper($this->getService('095')); - } - - - public function createService064(): PHPStan\Cache\Cache - { - return new PHPStan\Cache\Cache($this->getService('cacheStorage')); - } - - - public function createService065(): PHPStan\Collectors\Registry - { - return $this->getService('066')->create(); - } - - - public function createService066(): PHPStan\Collectors\RegistryFactory - { - return new PHPStan\Collectors\RegistryFactory($this->getService('074')); - } - - - public function createService067(): PHPStan\Command\AnalyseApplication - { - return new PHPStan\Command\AnalyseApplication( - $this->getService('068'), - $this->getService('050'), - $this->getService('043'), - $this->getService('061'), - $this->getService('054'), - $this->getService('045') - ); - } - - - public function createService068(): PHPStan\Command\AnalyserRunner - { - return new PHPStan\Command\AnalyserRunner( - $this->getService('091'), - $this->getService('049'), - $this->getService('090'), - $this->getService('092') - ); - } - - - public function createService069(): PHPStan\Command\FixerApplication - { - return new PHPStan\Command\FixerApplication( - $this->getService('087'), - $this->getService('054'), - $this->getService('045'), - $this->getParameter('analysedPaths'), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify', - ($this->getParameter('sysGetTempDir')) . '/phpstan-fixer', - ['1.1.1.2'], - ['/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'], - [ - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/parametersSchema.neon', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level5.neon', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level4.neon', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level3.neon', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level2.neon', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level1.neon', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level0.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nesbot/carbon/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/pestphp/pest/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/rules.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/rules.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan.neon.dist', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan-baseline.neon', - ], - null, - [ - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionUnionType.php', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionAttribute.php', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/Attribute.php', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionIntersectionType.php', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/bootstrap.php', - ], - null, - '5' - ); - } - - - public function createService070(): PHPStan\Dependency\DependencyResolver - { - return new PHPStan\Dependency\DependencyResolver( - $this->getService('084'), - $this->getService('reflectionProvider'), - $this->getService('072'), - $this->getService('0182') - ); - } - - - public function createService071(): PHPStan\Dependency\ExportedNodeFetcher - { - return new PHPStan\Dependency\ExportedNodeFetcher($this->getService('defaultAnalysisParser'), $this->getService('073')); - } - - - public function createService072(): PHPStan\Dependency\ExportedNodeResolver - { - return new PHPStan\Dependency\ExportedNodeResolver($this->getService('0182'), $this->getService('023')); - } - - - public function createService073(): PHPStan\Dependency\ExportedNodeVisitor - { - return new PHPStan\Dependency\ExportedNodeVisitor($this->getService('072')); - } - - - public function createService074(): PHPStan\DependencyInjection\Container - { - return new PHPStan\DependencyInjection\MemoizingContainer($this->getService('075')); - } - - - public function createService075(): PHPStan\DependencyInjection\Nette\NetteContainer - { - return new PHPStan\DependencyInjection\Nette\NetteContainer($this); - } - - - public function createService076(): PHPStan\DependencyInjection\DerivativeContainerFactory - { - return new PHPStan\DependencyInjection\DerivativeContainerFactory( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/build/phpstan', - [ - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level5.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../../larastan/larastan/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../../nesbot/carbon/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../../pestphp/pest/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../phpstan-deprecation-rules/rules.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../phpstan-phpunit/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../phpstan-phpunit/rules.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan.neon.dist', - ], - $this->getParameter('analysedPaths'), - ['/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'], - $this->getParameter('analysedPathsFromConfig'), - '5', - null, - null - ); - } - - - public function createService077(): PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider - { - return new PHPStan\DependencyInjection\Reflection\LazyClassReflectionExtensionRegistryProvider($this->getService('074')); - } - - - public function createService078(): PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider - { - return new PHPStan\DependencyInjection\Type\LazyDynamicReturnTypeExtensionRegistryProvider($this->getService('074')); - } - - - public function createService079(): PHPStan\DependencyInjection\Type\ParameterOutTypeExtensionProvider - { - return new PHPStan\DependencyInjection\Type\LazyParameterOutTypeExtensionProvider($this->getService('074')); - } - - - public function createService080(): PHPStan\DependencyInjection\Type\ExpressionTypeResolverExtensionRegistryProvider - { - return new PHPStan\DependencyInjection\Type\LazyExpressionTypeResolverExtensionRegistryProvider($this->getService('074')); - } - - - public function createService081(): PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider - { - return new PHPStan\DependencyInjection\Type\LazyOperatorTypeSpecifyingExtensionRegistryProvider($this->getService('074')); - } - - - public function createService082(): PHPStan\DependencyInjection\Type\DynamicThrowTypeExtensionProvider - { - return new PHPStan\DependencyInjection\Type\LazyDynamicThrowTypeExtensionProvider($this->getService('074')); - } - - - public function createService083(): PHPStan\DependencyInjection\Type\ParameterClosureTypeExtensionProvider - { - return new PHPStan\DependencyInjection\Type\LazyParameterClosureTypeExtensionProvider($this->getService('074')); - } - - - public function createService084(): PHPStan\File\FileHelper - { - return new PHPStan\File\FileHelper('/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'); - } - - - public function createService085(): PHPStan\File\FileExcluderFactory - { - return new PHPStan\File\FileExcluderFactory($this->getService('086'), ['analyseAndScan' => [], 'analyse' => []]); - } - - - public function createService086(): PHPStan\File\FileExcluderRawFactory - { - return new class ($this) implements PHPStan\File\FileExcluderRawFactory { - private $container; - - - public function __construct(Container_c5db45e753 $container) - { - $this->container = $container; - } - - - public function create(array $analyseExcludes): PHPStan\File\FileExcluder - { - return new PHPStan\File\FileExcluder($this->container->getService('084'), $analyseExcludes); - } - }; - } - - - public function createService087(): PHPStan\File\FileMonitor - { - return new PHPStan\File\FileMonitor($this->getService('fileFinderAnalyse')); - } - - - public function createService088(): PHPStan\Parser\DeclarePositionVisitor - { - return new PHPStan\Parser\DeclarePositionVisitor; - } - - - public function createService089(): PHPStan\Parser\ImmediatelyInvokedClosureVisitor - { - return new PHPStan\Parser\ImmediatelyInvokedClosureVisitor; - } - - - public function createService090(): PHPStan\Parallel\ParallelAnalyser - { - return new PHPStan\Parallel\ParallelAnalyser(50, 600.0, 134217728); - } - - - public function createService091(): PHPStan\Parallel\Scheduler - { - return new PHPStan\Parallel\Scheduler(20, 32, 2); - } - - - public function createService092(): PHPStan\Process\CpuCoreCounter - { - return new PHPStan\Process\CpuCoreCounter; - } - - - public function createService093(): PHPStan\Reflection\AttributeReflectionFactory - { - return new PHPStan\Reflection\AttributeReflectionFactory($this->getService('095'), $this->getService('0121')); - } - - - public function createService094(): PHPStan\Reflection\FunctionReflectionFactory - { - return new class ($this) implements PHPStan\Reflection\FunctionReflectionFactory { - private $container; - - - public function __construct(Container_c5db45e753 $container) - { - $this->container = $container; - } - - - public function create( - PHPStan\BetterReflection\Reflection\Adapter\ReflectionFunction $reflection, - PHPStan\Type\Generic\TemplateTypeMap $templateTypeMap, - array $phpDocParameterTypes, - ?PHPStan\Type\Type $phpDocReturnType, - ?PHPStan\Type\Type $phpDocThrowType, - ?string $deprecatedDescription, - bool $isDeprecated, - bool $isInternal, - ?string $filename, - ?bool $isPure, - PHPStan\Reflection\Assertions $asserts, - bool $acceptsNamedArguments, - ?string $phpDocComment, - array $phpDocParameterOutTypes, - array $phpDocParameterImmediatelyInvokedCallable, - array $phpDocParameterClosureThisTypes, - array $attributes - ): PHPStan\Reflection\Php\PhpFunctionReflection { - return new PHPStan\Reflection\Php\PhpFunctionReflection( - $this->container->getService('095'), - $reflection, - $this->container->getService('defaultAnalysisParser'), - $this->container->getService('093'), - $templateTypeMap, - $phpDocParameterTypes, - $phpDocReturnType, - $phpDocThrowType, - $deprecatedDescription, - $isDeprecated, - $isInternal, - $filename, - $isPure, - $asserts, - $acceptsNamedArguments, - $phpDocComment, - $phpDocParameterOutTypes, - $phpDocParameterImmediatelyInvokedCallable, - $phpDocParameterClosureThisTypes, - $attributes - ); - } - }; - } - - - public function createService095(): PHPStan\Reflection\InitializerExprTypeResolver - { - return new PHPStan\Reflection\InitializerExprTypeResolver( - $this->getService('059'), - $this->getService('0121'), - $this->getService('026'), - $this->getService('081'), - $this->getService('0354'), - false - ); - } - - - public function createService096(): PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension - { - return new PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension; - } - - - public function createService097(): PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension - { - return new PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension; - } - - - public function createService098(): PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor; - } - - - public function createService099(): PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher( - $this->getService('098'), - $this->getService('defaultAnalysisParser') - ); - } - - - public function createService0100(): PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker( - $this->getService('0102'), - $this->getService('0103'), - $this->getService('0101'), - $this->getService('026') - ); - } - - - public function createService0101(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory( - $this->getService('099'), - $this->getService('fileFinderScan'), - $this->getService('026'), - $this->getService('064') - ); - } - - - public function createService0102(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository($this->getService('0101')); - } - - - public function createService0103(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory - { - return new class ($this) implements PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory { - private $container; - - - public function __construct(Container_c5db45e753 $container) - { - $this->container = $container; - } - - - public function create(PHPStan\BetterReflection\SourceLocator\Type\Composer\Psr\PsrAutoloaderMapping $mapping): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator($mapping, $this->container->getService('0105')); - } - }; - } - - - public function createService0104(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory - { - return new class ($this) implements PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory { - private $container; - - - public function __construct(Container_c5db45e753 $container) - { - $this->container = $container; - } - - - public function create(string $fileName): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator( - $this->container->getService('099'), - $fileName - ); - } - }; - } - - - public function createService0105(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository($this->getService('0104')); - } - - - public function createService0106(): PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumCaseDynamicReturnTypeExtension - { - return new PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumCaseDynamicReturnTypeExtension( - $this->getService('026'), - 'PHPStan\BetterReflection\Reflection\Adapter\ReflectionEnumBackedCase' - ); - } - - - public function createService0107(): PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumCaseDynamicReturnTypeExtension - { - return new PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumCaseDynamicReturnTypeExtension( - $this->getService('026'), - 'PHPStan\BetterReflection\Reflection\Adapter\ReflectionEnumUnitCase' - ); - } - - - public function createService0108(): PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumDynamicReturnTypeExtension - { - return new PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumDynamicReturnTypeExtension($this->getService('026')); - } - - - public function createService0109(): PHPStan\Reflection\ConstructorsHelper - { - return new PHPStan\Reflection\ConstructorsHelper($this->getService('074'), ['PHPUnit\Framework\TestCase::setUp']); - } - - - public function createService0110(): PHPStan\Reflection\RequireExtension\RequireExtendsMethodsClassReflectionExtension - { - return new PHPStan\Reflection\RequireExtension\RequireExtendsMethodsClassReflectionExtension; - } - - - public function createService0111(): PHPStan\Reflection\RequireExtension\RequireExtendsPropertiesClassReflectionExtension - { - return new PHPStan\Reflection\RequireExtension\RequireExtendsPropertiesClassReflectionExtension; - } - - - public function createService0112(): PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension - { - return new PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension(['Eloquent']); - } - - - public function createService0113(): PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension - { - return new PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension(['Eloquent']); - } - - - public function createService0114(): PHPStan\Reflection\Php\PhpClassReflectionExtension - { - return new PHPStan\Reflection\Php\PhpClassReflectionExtension( - $this->getService('057'), - $this->getService('058'), - $this->getService('0115'), - $this->getService('036'), - $this->getService('096'), - $this->getService('097'), - $this->getService('0127'), - $this->getService('defaultAnalysisParser'), - $this->getService('stubPhpDocProvider'), - $this->getService('0121'), - $this->getService('0182'), - $this->getService('093'), - false - ); - } - - - public function createService0115(): PHPStan\Reflection\Php\PhpMethodReflectionFactory - { - return new class ($this) implements PHPStan\Reflection\Php\PhpMethodReflectionFactory { - private $container; - - - public function __construct(Container_c5db45e753 $container) - { - $this->container = $container; - } - - - public function create( - PHPStan\Reflection\ClassReflection $declaringClass, - ?PHPStan\Reflection\ClassReflection $declaringTrait, - PHPStan\BetterReflection\Reflection\Adapter\ReflectionMethod $reflection, - PHPStan\Type\Generic\TemplateTypeMap $templateTypeMap, - array $phpDocParameterTypes, - ?PHPStan\Type\Type $phpDocReturnType, - ?PHPStan\Type\Type $phpDocThrowType, - ?string $deprecatedDescription, - bool $isDeprecated, - bool $isInternal, - bool $isFinal, - ?bool $isPure, - PHPStan\Reflection\Assertions $asserts, - ?PHPStan\Type\Type $selfOutType, - ?string $phpDocComment, - array $phpDocParameterOutTypes, - array $immediatelyInvokedCallableParameters, - array $phpDocClosureThisTypeParameters, - bool $acceptsNamedArguments, - array $attributes - ): PHPStan\Reflection\Php\PhpMethodReflection { - return new PHPStan\Reflection\Php\PhpMethodReflection( - $this->container->getService('095'), - $declaringClass, - $declaringTrait, - $reflection, - $this->container->getService('reflectionProvider'), - $this->container->getService('093'), - $this->container->getService('defaultAnalysisParser'), - $templateTypeMap, - $phpDocParameterTypes, - $phpDocReturnType, - $phpDocThrowType, - $deprecatedDescription, - $isDeprecated, - $isInternal, - $isFinal, - $isPure, - $asserts, - $acceptsNamedArguments, - $selfOutType, - $phpDocComment, - $phpDocParameterOutTypes, - $immediatelyInvokedCallableParameters, - $phpDocClosureThisTypeParameters, - $attributes - ); - } - }; - } - - - public function createService0116(): PHPStan\Reflection\Php\Soap\SoapClientMethodsClassReflectionExtension - { - return new PHPStan\Reflection\Php\Soap\SoapClientMethodsClassReflectionExtension; - } - - - public function createService0117(): PHPStan\Reflection\Php\EnumAllowedSubTypesClassReflectionExtension - { - return new PHPStan\Reflection\Php\EnumAllowedSubTypesClassReflectionExtension; - } - - - public function createService0118(): PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension - { - return new PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension( - $this->getService('reflectionProvider'), - [ - 'stdClass', - 'Illuminate\Http\Request', - 'Illuminate\Support\Optional', - 'Pest\Support\HigherOrderTapProxy', - 'Pest\Expectation', - ], - $this->getService('097') - ); - } - - - public function createService0119(): PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension - { - return new PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension( - $this->getService('026'), - 'PHPStan\Reflection\ClassReflection', - 'getNativeReflection' - ); - } - - - public function createService0120(): PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension - { - return new PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension( - $this->getService('026'), - 'PHPStan\Reflection\Php\BuiltinMethodReflection', - 'getDeclaringClass' - ); - } - - - public function createService0121(): PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider - { - return new PHPStan\Reflection\ReflectionProvider\LazyReflectionProviderProvider($this->getService('074')); - } - - - public function createService0122(): PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider - { - return new PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider( - $this->getService('0127'), - $this->getService('betterReflectionReflector'), - $this->getService('0182'), - $this->getService('stubPhpDocProvider'), - $this->getService('093') - ); - } - - - public function createService0123(): PHPStan\Reflection\SignatureMap\SignatureMapParser - { - return new PHPStan\Reflection\SignatureMap\SignatureMapParser($this->getService('042')); - } - - - public function createService0124(): PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider - { - return new PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider( - $this->getService('0123'), - $this->getService('095'), - $this->getService('026'), - false - ); - } - - - public function createService0125(): PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider - { - return new PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider( - $this->getService('0124'), - $this->getService('099'), - $this->getService('0182'), - $this->getService('026'), - $this->getService('095'), - $this->getService('0121') - ); - } - - - public function createService0126(): PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory - { - return new PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory( - $this->getService('026'), - $this->getService('0124'), - $this->getService('0125') - ); - } - - - public function createService0127(): PHPStan\Reflection\SignatureMap\SignatureMapProvider - { - return $this->getService('0126')->create(); - } - - - public function createService0128(): PHPStan\Rules\Api\ApiRuleHelper - { - return new PHPStan\Rules\Api\ApiRuleHelper; - } - - - public function createService0129(): PHPStan\Rules\AttributesCheck - { - return new PHPStan\Rules\AttributesCheck( - $this->getService('reflectionProvider'), - $this->getService('0146'), - $this->getService('0131'), - true - ); - } - - - public function createService0130(): PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck - { - return new PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck($this->getService('0179'), false, false, false); - } - - - public function createService0131(): PHPStan\Rules\ClassNameCheck - { - return new PHPStan\Rules\ClassNameCheck($this->getService('0132'), $this->getService('0133')); - } - - - public function createService0132(): PHPStan\Rules\ClassCaseSensitivityCheck - { - return new PHPStan\Rules\ClassCaseSensitivityCheck($this->getService('reflectionProvider'), false); - } - - - public function createService0133(): PHPStan\Rules\ClassForbiddenNameCheck - { - return new PHPStan\Rules\ClassForbiddenNameCheck($this->getService('074')); - } - - - public function createService0134(): PHPStan\Rules\Classes\LocalTypeAliasesCheck - { - return new PHPStan\Rules\Classes\LocalTypeAliasesCheck( - [], - $this->getService('reflectionProvider'), - $this->getService('040'), - $this->getService('0162'), - $this->getService('0131'), - $this->getService('0168'), - $this->getService('0152'), - false, - true - ); - } - - - public function createService0135(): PHPStan\Rules\Classes\MethodTagCheck - { - return new PHPStan\Rules\Classes\MethodTagCheck( - $this->getService('reflectionProvider'), - $this->getService('0131'), - $this->getService('0152'), - $this->getService('0162'), - $this->getService('0168'), - true, - false - ); - } - - - public function createService0136(): PHPStan\Rules\Classes\MixinCheck - { - return new PHPStan\Rules\Classes\MixinCheck( - $this->getService('reflectionProvider'), - $this->getService('0131'), - $this->getService('0152'), - $this->getService('0162'), - $this->getService('0168'), - true, - false - ); - } - - - public function createService0137(): PHPStan\Rules\Classes\PropertyTagCheck - { - return new PHPStan\Rules\Classes\PropertyTagCheck( - $this->getService('reflectionProvider'), - $this->getService('0131'), - $this->getService('0152'), - $this->getService('0162'), - $this->getService('0168'), - true, - false - ); - } - - - public function createService0138(): PHPStan\Rules\Comparison\ConstantConditionRuleHelper - { - return new PHPStan\Rules\Comparison\ConstantConditionRuleHelper($this->getService('0139'), true); - } - - - public function createService0139(): PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper - { - return new PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper( - $this->getService('reflectionProvider'), - $this->getService('typeSpecifier'), - [ - 'stdClass', - 'Illuminate\Http\Request', - 'Illuminate\Support\Optional', - 'Pest\Support\HigherOrderTapProxy', - 'Pest\Expectation', - ], - true - ); - } - - - public function createService0140(): PHPStan\Rules\Exceptions\DefaultExceptionTypeResolver - { - return new PHPStan\Rules\Exceptions\DefaultExceptionTypeResolver( - $this->getService('reflectionProvider'), - ['#^PHPUnit\\\#', '#^SebastianBergmann\\\#'], - [], - [], - [] - ); - } - - - public function createService0141(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule - { - return new PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule($this->getService('0144')); - } - - - public function createService0142(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule - { - return new PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule($this->getService('0144')); - } - - - public function createService0143(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInPropertyHookThrowsRule - { - return new PHPStan\Rules\Exceptions\MissingCheckedExceptionInPropertyHookThrowsRule($this->getService('0144')); - } - - - public function createService0144(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck - { - return new PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck($this->getService('exceptionTypeResolver')); - } - - - public function createService0145(): PHPStan\Rules\Exceptions\TooWideThrowTypeCheck - { - return new PHPStan\Rules\Exceptions\TooWideThrowTypeCheck(true); - } - - - public function createService0146(): PHPStan\Rules\FunctionCallParametersCheck - { - return new PHPStan\Rules\FunctionCallParametersCheck( - $this->getService('0179'), - $this->getService('0163'), - $this->getService('0168'), - $this->getService('0177'), - true, - true, - true, - false - ); - } - - - public function createService0147(): PHPStan\Rules\FunctionDefinitionCheck - { - return new PHPStan\Rules\FunctionDefinitionCheck( - $this->getService('reflectionProvider'), - $this->getService('0131'), - $this->getService('0168'), - $this->getService('026'), - true, - false - ); - } - - - public function createService0148(): PHPStan\Rules\FunctionReturnTypeCheck - { - return new PHPStan\Rules\FunctionReturnTypeCheck($this->getService('0179')); - } - - - public function createService0149(): PHPStan\Rules\ParameterCastableToStringCheck - { - return new PHPStan\Rules\ParameterCastableToStringCheck($this->getService('0179')); - } - - - public function createService0150(): PHPStan\Rules\Generics\CrossCheckInterfacesHelper - { - return new PHPStan\Rules\Generics\CrossCheckInterfacesHelper; - } - - - public function createService0151(): PHPStan\Rules\Generics\GenericAncestorsCheck - { - return new PHPStan\Rules\Generics\GenericAncestorsCheck( - $this->getService('reflectionProvider'), - $this->getService('0152'), - $this->getService('0155'), - $this->getService('0168'), - [], - false - ); - } - - - public function createService0152(): PHPStan\Rules\Generics\GenericObjectTypeCheck - { - return new PHPStan\Rules\Generics\GenericObjectTypeCheck; - } - - - public function createService0153(): PHPStan\Rules\Generics\MethodTagTemplateTypeCheck - { - return new PHPStan\Rules\Generics\MethodTagTemplateTypeCheck($this->getService('0182'), $this->getService('0154')); - } - - - public function createService0154(): PHPStan\Rules\Generics\TemplateTypeCheck - { - return new PHPStan\Rules\Generics\TemplateTypeCheck( - $this->getService('reflectionProvider'), - $this->getService('0131'), - $this->getService('0152'), - $this->getService('0183'), - true - ); - } - - - public function createService0155(): PHPStan\Rules\Generics\VarianceCheck - { - return new PHPStan\Rules\Generics\VarianceCheck; - } - - - public function createService0156(): PHPStan\Rules\IssetCheck - { - return new PHPStan\Rules\IssetCheck($this->getService('0176'), $this->getService('0177'), true, true); - } - - - public function createService0157(): PHPStan\Rules\Methods\MethodCallCheck - { - return new PHPStan\Rules\Methods\MethodCallCheck( - $this->getService('reflectionProvider'), - $this->getService('0179'), - false, - true - ); - } - - - public function createService0158(): PHPStan\Rules\Methods\StaticMethodCallCheck - { - return new PHPStan\Rules\Methods\StaticMethodCallCheck( - $this->getService('reflectionProvider'), - $this->getService('0179'), - $this->getService('0131'), - false, - true - ); - } - - - public function createService0159(): PHPStan\Rules\Methods\MethodSignatureRule - { - return new PHPStan\Rules\Methods\MethodSignatureRule($this->getService('0114'), false, false); - } - - - public function createService0160(): PHPStan\Rules\Methods\MethodParameterComparisonHelper - { - return new PHPStan\Rules\Methods\MethodParameterComparisonHelper($this->getService('026')); - } - - - public function createService0161(): PHPStan\Rules\Methods\MethodVisibilityComparisonHelper - { - return new PHPStan\Rules\Methods\MethodVisibilityComparisonHelper; - } - - - public function createService0162(): PHPStan\Rules\MissingTypehintCheck - { - return new PHPStan\Rules\MissingTypehintCheck(false, []); - } - - - public function createService0163(): PHPStan\Rules\NullsafeCheck - { - return new PHPStan\Rules\NullsafeCheck; - } - - - public function createService0164(): PHPStan\Rules\Constants\LazyAlwaysUsedClassConstantsExtensionProvider - { - return new PHPStan\Rules\Constants\LazyAlwaysUsedClassConstantsExtensionProvider($this->getService('074')); - } - - - public function createService0165(): PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider - { - return new PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider($this->getService('074')); - } - - - public function createService0166(): PHPStan\Rules\PhpDoc\ConditionalReturnTypeRuleHelper - { - return new PHPStan\Rules\PhpDoc\ConditionalReturnTypeRuleHelper; - } - - - public function createService0167(): PHPStan\Rules\PhpDoc\AssertRuleHelper - { - return new PHPStan\Rules\PhpDoc\AssertRuleHelper( - $this->getService('095'), - $this->getService('reflectionProvider'), - $this->getService('0168'), - $this->getService('0131'), - $this->getService('0162'), - $this->getService('0152'), - true, - false - ); - } - - - public function createService0168(): PHPStan\Rules\PhpDoc\UnresolvableTypeHelper - { - return new PHPStan\Rules\PhpDoc\UnresolvableTypeHelper; - } - - - public function createService0169(): PHPStan\Rules\PhpDoc\GenericCallableRuleHelper - { - return new PHPStan\Rules\PhpDoc\GenericCallableRuleHelper($this->getService('0154')); - } - - - public function createService0170(): PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck - { - return new PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck( - $this->getService('0152'), - $this->getService('0168'), - $this->getService('0169') - ); - } - - - public function createService0171(): PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper - { - return new PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper(false, false); - } - - - public function createService0172(): PHPStan\Rules\Playground\NeverRuleHelper - { - return new PHPStan\Rules\Playground\NeverRuleHelper; - } - - - public function createService0173(): PHPStan\Rules\Properties\AccessPropertiesCheck - { - return new PHPStan\Rules\Properties\AccessPropertiesCheck( - $this->getService('reflectionProvider'), - $this->getService('0179'), - $this->getService('026'), - true, - false - ); - } - - - public function createService0174(): PHPStan\Rules\Properties\UninitializedPropertyRule - { - return new PHPStan\Rules\Properties\UninitializedPropertyRule($this->getService('0109')); - } - - - public function createService0175(): PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider - { - return new PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider($this->getService('074')); - } - - - public function createService0176(): PHPStan\Rules\Properties\PropertyDescriptor - { - return new PHPStan\Rules\Properties\PropertyDescriptor; - } - - - public function createService0177(): PHPStan\Rules\Properties\PropertyReflectionFinder - { - return new PHPStan\Rules\Properties\PropertyReflectionFinder; - } - - - public function createService0178(): PHPStan\Rules\Pure\FunctionPurityCheck - { - return new PHPStan\Rules\Pure\FunctionPurityCheck; - } - - - public function createService0179(): PHPStan\Rules\RuleLevelHelper - { - return new PHPStan\Rules\RuleLevelHelper($this->getService('reflectionProvider'), false, false, false, false, false, false); - } - - - public function createService0180(): PHPStan\Rules\UnusedFunctionParametersCheck - { - return new PHPStan\Rules\UnusedFunctionParametersCheck($this->getService('reflectionProvider'), false); - } - - - public function createService0181(): PHPStan\Rules\TooWideTypehints\TooWideParameterOutTypeCheck - { - return new PHPStan\Rules\TooWideTypehints\TooWideParameterOutTypeCheck; - } - - - public function createService0182(): PHPStan\Type\FileTypeMapper - { - return new PHPStan\Type\FileTypeMapper( - $this->getService('0121'), - $this->getService('defaultAnalysisParser'), - $this->getService('038'), - $this->getService('037'), - $this->getService('025'), - $this->getService('084') - ); - } - - - public function createService0183(): PHPStan\Type\TypeAliasResolver - { - return new PHPStan\Type\UsefulTypeAliasResolver( - [], - $this->getService('042'), - $this->getService('040'), - $this->getService('reflectionProvider') - ); - } - - - public function createService0184(): PHPStan\Type\TypeAliasResolverProvider - { - return new PHPStan\Type\LazyTypeAliasResolverProvider($this->getService('074')); - } - - - public function createService0185(): PHPStan\Type\BitwiseFlagHelper - { - return new PHPStan\Type\BitwiseFlagHelper($this->getService('reflectionProvider')); - } - - - public function createService0186(): PHPStan\Type\Php\AbsFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\AbsFunctionDynamicReturnTypeExtension; - } - - - public function createService0187(): PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension; - } - - - public function createService0188(): PHPStan\Type\Php\ArrayChangeKeyCaseFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayChangeKeyCaseFunctionReturnTypeExtension; - } - - - public function createService0189(): PHPStan\Type\Php\ArrayIntersectKeyFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayIntersectKeyFunctionReturnTypeExtension($this->getService('026')); - } - - - public function createService0190(): PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension($this->getService('026')); - } - - - public function createService0191(): PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension($this->getService('026')); - } - - - public function createService0192(): PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension($this->getService('026')); - } - - - public function createService0193(): PHPStan\Type\Php\ArrayCurrentDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayCurrentDynamicReturnTypeExtension; - } - - - public function createService0194(): PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension($this->getService('026')); - } - - - public function createService0195(): PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension($this->getService('026')); - } - - - public function createService0196(): PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper - { - return new PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper($this->getService('reflectionProvider')); - } - - - public function createService0197(): PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension($this->getService('0196')); - } - - - public function createService0198(): PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension($this->getService('026')); - } - - - public function createService0199(): PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension($this->getService('0196')); - } - - - public function createService0200(): PHPStan\Type\Php\ArrayFindKeyFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayFindKeyFunctionReturnTypeExtension; - } - - - public function createService0201(): PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension; - } - - - public function createService0202(): PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension; - } - - - public function createService0203(): PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension; - } - - - public function createService0204(): PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension; - } - - - public function createService0205(): PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension($this->getService('026')); - } - - - public function createService0206(): PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension; - } - - - public function createService0207(): PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension; - } - - - public function createService0208(): PHPStan\Type\Php\ArrayNextDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayNextDynamicReturnTypeExtension; - } - - - public function createService0209(): PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension; - } - - - public function createService0210(): PHPStan\Type\Php\ArrayRandFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayRandFunctionReturnTypeExtension; - } - - - public function createService0211(): PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension; - } - - - public function createService0212(): PHPStan\Type\Php\ArrayReplaceFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayReplaceFunctionReturnTypeExtension; - } - - - public function createService0213(): PHPStan\Type\Php\ArrayReverseFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayReverseFunctionReturnTypeExtension($this->getService('026')); - } - - - public function createService0214(): PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension; - } - - - public function createService0215(): PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension($this->getService('026')); - } - - - public function createService0216(): PHPStan\Type\Php\ArraySpliceFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArraySpliceFunctionReturnTypeExtension; - } - - - public function createService0217(): PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension($this->getService('026')); - } - - - public function createService0218(): PHPStan\Type\Php\ArraySearchFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\ArraySearchFunctionTypeSpecifyingExtension; - } - - - public function createService0219(): PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension($this->getService('026')); - } - - - public function createService0220(): PHPStan\Type\Php\ArraySumFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArraySumFunctionDynamicReturnTypeExtension; - } - - - public function createService0221(): PHPStan\Type\Php\AssertThrowTypeExtension - { - return new PHPStan\Type\Php\AssertThrowTypeExtension; - } - - - public function createService0222(): PHPStan\Type\Php\BackedEnumFromMethodDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\BackedEnumFromMethodDynamicReturnTypeExtension; - } - - - public function createService0223(): PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension; - } - - - public function createService0224(): PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension - { - return new PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension($this->getService('026')); - } - - - public function createService0225(): PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension; - } - - - public function createService0226(): PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension; - } - - - public function createService0227(): PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension; - } - - - public function createService0228(): PHPStan\Type\Php\CompactFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\CompactFunctionReturnTypeExtension(true); - } - - - public function createService0229(): PHPStan\Type\Php\ConstantFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ConstantFunctionReturnTypeExtension($this->getService('0230')); - } - - - public function createService0230(): PHPStan\Type\Php\ConstantHelper - { - return new PHPStan\Type\Php\ConstantHelper; - } - - - public function createService0231(): PHPStan\Type\Php\CountFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\CountFunctionReturnTypeExtension; - } - - - public function createService0232(): PHPStan\Type\Php\CountCharsFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\CountCharsFunctionDynamicReturnTypeExtension($this->getService('026')); - } - - - public function createService0233(): PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension; - } - - - public function createService0234(): PHPStan\Type\Php\CurlGetinfoFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\CurlGetinfoFunctionDynamicReturnTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0235(): PHPStan\Type\Php\DateFunctionReturnTypeHelper - { - return new PHPStan\Type\Php\DateFunctionReturnTypeHelper; - } - - - public function createService0236(): PHPStan\Type\Php\DateFormatFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\DateFormatFunctionReturnTypeExtension($this->getService('0235')); - } - - - public function createService0237(): PHPStan\Type\Php\DateFormatMethodReturnTypeExtension - { - return new PHPStan\Type\Php\DateFormatMethodReturnTypeExtension($this->getService('0235')); - } - - - public function createService0238(): PHPStan\Type\Php\DateFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\DateFunctionReturnTypeExtension($this->getService('0235')); - } - - - public function createService0239(): PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension - { - return new PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension($this->getService('026')); - } - - - public function createService0240(): PHPStan\Type\Php\DateIntervalDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\DateIntervalDynamicReturnTypeExtension; - } - - - public function createService0241(): PHPStan\Type\Php\DateTimeCreateDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\DateTimeCreateDynamicReturnTypeExtension; - } - - - public function createService0242(): PHPStan\Type\Php\DateTimeDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\DateTimeDynamicReturnTypeExtension; - } - - - public function createService0243(): PHPStan\Type\Php\DateTimeModifyReturnTypeExtension - { - return new PHPStan\Type\Php\DateTimeModifyReturnTypeExtension($this->getService('026'), 'DateTime'); - } - - - public function createService0244(): PHPStan\Type\Php\DateTimeModifyReturnTypeExtension - { - return new PHPStan\Type\Php\DateTimeModifyReturnTypeExtension($this->getService('026'), 'DateTimeImmutable'); - } - - - public function createService0245(): PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension - { - return new PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension($this->getService('026')); - } - - - public function createService0246(): PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension - { - return new PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension($this->getService('026')); - } - - - public function createService0247(): PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension - { - return new PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension($this->getService('026')); - } - - - public function createService0248(): PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension - { - return new PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension($this->getService('026')); - } - - - public function createService0249(): PHPStan\Type\Php\DsMapDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\DsMapDynamicReturnTypeExtension; - } - - - public function createService0250(): PHPStan\Type\Php\DsMapDynamicMethodThrowTypeExtension - { - return new PHPStan\Type\Php\DsMapDynamicMethodThrowTypeExtension; - } - - - public function createService0251(): PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension; - } - - - public function createService0252(): PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension($this->getService('026')); - } - - - public function createService0253(): PHPStan\Type\Php\FilterFunctionReturnTypeHelper - { - return new PHPStan\Type\Php\FilterFunctionReturnTypeHelper($this->getService('reflectionProvider'), $this->getService('026')); - } - - - public function createService0254(): PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension($this->getService('0253')); - } - - - public function createService0255(): PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension($this->getService('0253')); - } - - - public function createService0256(): PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension( - $this->getService('0253'), - $this->getService('reflectionProvider') - ); - } - - - public function createService0257(): PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension; - } - - - public function createService0258(): PHPStan\Type\Php\GetClassDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\GetClassDynamicReturnTypeExtension; - } - - - public function createService0259(): PHPStan\Type\Php\GetDebugTypeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\GetDebugTypeFunctionReturnTypeExtension; - } - - - public function createService0260(): PHPStan\Type\Php\GetDefinedVarsFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\GetDefinedVarsFunctionReturnTypeExtension; - } - - - public function createService0261(): PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0262(): PHPStan\Type\Php\GettypeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\GettypeFunctionReturnTypeExtension; - } - - - public function createService0263(): PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension; - } - - - public function createService0264(): PHPStan\Type\Php\HashFunctionsReturnTypeExtension - { - return new PHPStan\Type\Php\HashFunctionsReturnTypeExtension($this->getService('026')); - } - - - public function createService0265(): PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension($this->getService('026')); - } - - - public function createService0266(): PHPStan\Type\Php\IntdivThrowTypeExtension - { - return new PHPStan\Type\Php\IntdivThrowTypeExtension; - } - - - public function createService0267(): PHPStan\Type\Php\IniGetReturnTypeExtension - { - return new PHPStan\Type\Php\IniGetReturnTypeExtension; - } - - - public function createService0268(): PHPStan\Type\Php\JsonThrowTypeExtension - { - return new PHPStan\Type\Php\JsonThrowTypeExtension($this->getService('reflectionProvider'), $this->getService('0185')); - } - - - public function createService0269(): PHPStan\Type\Php\OpenSslEncryptParameterOutTypeExtension - { - return new PHPStan\Type\Php\OpenSslEncryptParameterOutTypeExtension; - } - - - public function createService0270(): PHPStan\Type\Php\ParseStrParameterOutTypeExtension - { - return new PHPStan\Type\Php\ParseStrParameterOutTypeExtension; - } - - - public function createService0271(): PHPStan\Type\Php\PregMatchTypeSpecifyingExtension - { - return new PHPStan\Type\Php\PregMatchTypeSpecifyingExtension($this->getService('0274')); - } - - - public function createService0272(): PHPStan\Type\Php\PregMatchParameterOutTypeExtension - { - return new PHPStan\Type\Php\PregMatchParameterOutTypeExtension($this->getService('0274')); - } - - - public function createService0273(): PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension - { - return new PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension($this->getService('0274')); - } - - - public function createService0274(): PHPStan\Type\Php\RegexArrayShapeMatcher - { - return new PHPStan\Type\Php\RegexArrayShapeMatcher( - $this->getService('0275'), - $this->getService('0276'), - $this->getService('026') - ); - } - - - public function createService0275(): PHPStan\Type\Regex\RegexGroupParser - { - return new PHPStan\Type\Regex\RegexGroupParser($this->getService('026'), $this->getService('0276')); - } - - - public function createService0276(): PHPStan\Type\Regex\RegexExpressionHelper - { - return new PHPStan\Type\Regex\RegexExpressionHelper($this->getService('095')); - } - - - public function createService0277(): PHPStan\Type\Php\ReflectionClassConstructorThrowTypeExtension - { - return new PHPStan\Type\Php\ReflectionClassConstructorThrowTypeExtension; - } - - - public function createService0278(): PHPStan\Type\Php\ReflectionFunctionConstructorThrowTypeExtension - { - return new PHPStan\Type\Php\ReflectionFunctionConstructorThrowTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0279(): PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension - { - return new PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0280(): PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension - { - return new PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0281(): PHPStan\Type\Php\StrContainingTypeSpecifyingExtension - { - return new PHPStan\Type\Php\StrContainingTypeSpecifyingExtension; - } - - - public function createService0282(): PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension - { - return new PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension; - } - - - public function createService0283(): PHPStan\Type\Php\SimpleXMLElementConstructorThrowTypeExtension - { - return new PHPStan\Type\Php\SimpleXMLElementConstructorThrowTypeExtension; - } - - - public function createService0284(): PHPStan\Type\Php\StatDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\StatDynamicReturnTypeExtension; - } - - - public function createService0285(): PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension - { - return new PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension; - } - - - public function createService0286(): PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension - { - return new PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension($this->getService('0177')); - } - - - public function createService0287(): PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension($this->getService('026')); - } - - - public function createService0288(): PHPStan\Type\Php\NumberFormatFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\NumberFormatFunctionDynamicReturnTypeExtension; - } - - - public function createService0289(): PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0290(): PHPStan\Type\Php\PregFilterFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\PregFilterFunctionReturnTypeExtension; - } - - - public function createService0291(): PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension($this->getService('0185')); - } - - - public function createService0292(): PHPStan\Type\Php\ReflectionClassIsSubclassOfTypeSpecifyingExtension - { - return new PHPStan\Type\Php\ReflectionClassIsSubclassOfTypeSpecifyingExtension; - } - - - public function createService0293(): PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension; - } - - - public function createService0294(): PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension; - } - - - public function createService0295(): PHPStan\Type\Php\LtrimFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\LtrimFunctionReturnTypeExtension; - } - - - public function createService0296(): PHPStan\Type\Php\MbFunctionsReturnTypeExtension - { - return new PHPStan\Type\Php\MbFunctionsReturnTypeExtension($this->getService('026')); - } - - - public function createService0297(): PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension; - } - - - public function createService0298(): PHPStan\Type\Php\MbSubstituteCharacterDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\MbSubstituteCharacterDynamicReturnTypeExtension($this->getService('026')); - } - - - public function createService0299(): PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension($this->getService('026')); - } - - - public function createService0300(): PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension; - } - - - public function createService0301(): PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension; - } - - - public function createService0302(): PHPStan\Type\Php\ImplodeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ImplodeFunctionReturnTypeExtension; - } - - - public function createService0303(): PHPStan\Type\Php\NonEmptyStringFunctionsReturnTypeExtension - { - return new PHPStan\Type\Php\NonEmptyStringFunctionsReturnTypeExtension; - } - - - public function createService0304(): PHPStan\Type\Php\SetTypeFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\SetTypeFunctionTypeSpecifyingExtension; - } - - - public function createService0305(): PHPStan\Type\Php\StrCaseFunctionsReturnTypeExtension - { - return new PHPStan\Type\Php\StrCaseFunctionsReturnTypeExtension; - } - - - public function createService0306(): PHPStan\Type\Php\StrlenFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrlenFunctionReturnTypeExtension; - } - - - public function createService0307(): PHPStan\Type\Php\StrIncrementDecrementFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrIncrementDecrementFunctionReturnTypeExtension; - } - - - public function createService0308(): PHPStan\Type\Php\StrPadFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrPadFunctionReturnTypeExtension; - } - - - public function createService0309(): PHPStan\Type\Php\StrRepeatFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrRepeatFunctionReturnTypeExtension; - } - - - public function createService0310(): PHPStan\Type\Php\SubstrDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\SubstrDynamicReturnTypeExtension($this->getService('026')); - } - - - public function createService0311(): PHPStan\Type\Php\ThrowableReturnTypeExtension - { - return new PHPStan\Type\Php\ThrowableReturnTypeExtension; - } - - - public function createService0312(): PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension; - } - - - public function createService0313(): PHPStan\Type\Php\TriggerErrorDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\TriggerErrorDynamicReturnTypeExtension($this->getService('026')); - } - - - public function createService0314(): PHPStan\Type\Php\TrimFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\TrimFunctionDynamicReturnTypeExtension; - } - - - public function createService0315(): PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension(null, $this->getService('029')); - } - - - public function createService0316(): PHPStan\Type\Php\PowFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\PowFunctionReturnTypeExtension; - } - - - public function createService0317(): PHPStan\Type\Php\RoundFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\RoundFunctionReturnTypeExtension($this->getService('026')); - } - - - public function createService0318(): PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension; - } - - - public function createService0319(): PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension; - } - - - public function createService0320(): PHPStan\Type\Php\RangeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\RangeFunctionReturnTypeExtension; - } - - - public function createService0321(): PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension; - } - - - public function createService0322(): PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension; - } - - - public function createService0323(): PHPStan\Type\Php\ClassImplementsFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ClassImplementsFunctionReturnTypeExtension; - } - - - public function createService0324(): PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension - { - return new PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension; - } - - - public function createService0325(): PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension - { - return new PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension($this->getService('0230')); - } - - - public function createService0326(): PHPStan\Type\Php\FunctionExistsFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\FunctionExistsFunctionTypeSpecifyingExtension; - } - - - public function createService0327(): PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension; - } - - - public function createService0328(): PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension; - } - - - public function createService0329(): PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension($this->getService('0285')); - } - - - public function createService0330(): PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension; - } - - - public function createService0331(): PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension($this->getService('0334')); - } - - - public function createService0332(): PHPStan\Type\Php\IteratorToArrayFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\IteratorToArrayFunctionReturnTypeExtension; - } - - - public function createService0333(): PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension($this->getService('0334')); - } - - - public function createService0334(): PHPStan\Type\Php\IsAFunctionTypeSpecifyingHelper - { - return new PHPStan\Type\Php\IsAFunctionTypeSpecifyingHelper; - } - - - public function createService0335(): PHPStan\Type\Php\CtypeDigitFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\CtypeDigitFunctionTypeSpecifyingExtension; - } - - - public function createService0336(): PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension( - $this->getService('reflectionProvider'), - $this->getService('0185') - ); - } - - - public function createService0337(): PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension( - $this->getService('reflectionProvider'), - true, - [ - 'stdClass', - 'Illuminate\Http\Request', - 'Illuminate\Support\Optional', - 'Pest\Support\HigherOrderTapProxy', - 'Pest\Expectation', - ] - ); - } - - - public function createService0338(): PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension - { - return new PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension; - } - - - public function createService0339(): PHPStan\Type\Php\SimpleXMLElementXpathMethodReturnTypeExtension - { - return new PHPStan\Type\Php\SimpleXMLElementXpathMethodReturnTypeExtension; - } - - - public function createService0340(): PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension($this->getService('026')); - } - - - public function createService0341(): PHPStan\Type\Php\StrTokFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrTokFunctionReturnTypeExtension; - } - - - public function createService0342(): PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension; - } - - - public function createService0343(): PHPStan\Type\Php\SscanfFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\SscanfFunctionDynamicReturnTypeExtension; - } - - - public function createService0344(): PHPStan\Type\Php\StrvalFamilyFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrvalFamilyFunctionReturnTypeExtension; - } - - - public function createService0345(): PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension; - } - - - public function createService0346(): PHPStan\Type\Php\XMLReaderOpenReturnTypeExtension - { - return new PHPStan\Type\Php\XMLReaderOpenReturnTypeExtension; - } - - - public function createService0347(): PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension - { - return new PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension('ReflectionClass'); - } - - - public function createService0348(): PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension - { - return new PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension('ReflectionClassConstant'); - } - - - public function createService0349(): PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension - { - return new PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension('ReflectionFunctionAbstract'); - } - - - public function createService0350(): PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension - { - return new PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension('ReflectionParameter'); - } - - - public function createService0351(): PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension - { - return new PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension('ReflectionProperty'); - } - - - public function createService0352(): PHPStan\Type\Php\DatePeriodConstructorReturnTypeExtension - { - return new PHPStan\Type\Php\DatePeriodConstructorReturnTypeExtension; - } - - - public function createService0353(): PHPStan\Type\ClosureTypeFactory - { - return new PHPStan\Type\ClosureTypeFactory( - $this->getService('095'), - $this->getService('0360'), - $this->getService('originalBetterReflectionReflector'), - $this->getService('currentPhpVersionPhpParser') - ); - } - - - public function createService0354(): PHPStan\Type\Constant\OversizedArrayBuilder - { - return new PHPStan\Type\Constant\OversizedArrayBuilder; - } - - - public function createService0355(): PHPStan\Rules\Functions\PrintfHelper - { - return new PHPStan\Rules\Functions\PrintfHelper($this->getService('026')); - } - - - public function createService0356(): PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory - { - return new PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory( - $this->getService('phpParserDecorator'), - $this->getService('php8PhpParser'), - $this->getService('0359'), - $this->getService('0360'), - $this->getService('0105'), - $this->getService('0102'), - $this->getService('0100'), - $this->getService('0103'), - $this->getService('099'), - [], - [], - $this->getParameter('analysedPaths'), - ['/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'], - $this->getParameter('analysedPathsFromConfig'), - false - ); - } - - - public function createService0357(): PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory - { - return new class ($this) implements PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory { - private $container; - - - public function __construct(Container_c5db45e753 $container) - { - $this->container = $container; - } - - - public function create(PHPStan\BetterReflection\Reflector\Reflector $reflector): PHPStan\Reflection\BetterReflection\BetterReflectionProvider - { - return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider( - $this->container->getService('0121'), - $this->container->getService('095'), - $this->container->getService('077'), - $reflector, - $this->container->getService('0182'), - $this->container->getService('036'), - $this->container->getService('026'), - $this->container->getService('0122'), - $this->container->getService('stubPhpDocProvider'), - $this->container->getService('094'), - $this->container->getService('relativePathHelper'), - $this->container->getService('025'), - $this->container->getService('084'), - $this->container->getService('0359'), - $this->container->getService('0127'), - $this->container->getService('093'), - [ - 'stdClass', - 'Illuminate\Http\Request', - 'Illuminate\Support\Optional', - 'Pest\Support\HigherOrderTapProxy', - 'Pest\Expectation', - ] - ); - } - }; - } - - - public function createService0358(): PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory - { - return new PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory( - $this->getService('php8PhpParser'), - $this->getService('024'), - $this->getService('026') - ); - } - - - public function createService0359(): PHPStan\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber - { - return $this->getService('0358')->create(); - } - - - public function createService0360(): PHPStan\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber - { - return $this->getService('0361')->create(); - } - - - public function createService0361(): PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory - { - return new PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory( - $this->getService('024'), - $this->getService('026') - ); - } - - - public function createService0362(): PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter( - $this->getService('errorFormatter.github'), - $this->getService('errorFormatter.teamcity') - ); - } - - - public function createService0363(): PHPStan\Rules\Classes\ExistingClassInClassExtendsRule - { - return new PHPStan\Rules\Classes\ExistingClassInClassExtendsRule( - $this->getService('0131'), - $this->getService('reflectionProvider') - ); - } - - - public function createService0364(): PHPStan\Rules\Classes\ExistingClassInInstanceOfRule - { - return new PHPStan\Rules\Classes\ExistingClassInInstanceOfRule( - $this->getService('reflectionProvider'), - $this->getService('0131'), - true - ); - } - - - public function createService0365(): PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule - { - return new PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule( - $this->getService('reflectionProvider'), - $this->getService('0131'), - true - ); - } - - - public function createService0366(): PHPStan\Rules\Functions\CallToNonExistentFunctionRule - { - return new PHPStan\Rules\Functions\CallToNonExistentFunctionRule($this->getService('reflectionProvider'), false); - } - - - public function createService0367(): PHPStan\Rules\Constants\OverridingConstantRule - { - return new PHPStan\Rules\Constants\OverridingConstantRule(true); - } - - - public function createService0368(): PHPStan\Rules\Methods\OverridingMethodRule - { - return new PHPStan\Rules\Methods\OverridingMethodRule( - $this->getService('026'), - $this->getService('0159'), - true, - $this->getService('0160'), - $this->getService('0161'), - $this->getService('0114'), - false - ); - } - - - public function createService0369(): PHPStan\Rules\Missing\MissingReturnRule - { - return new PHPStan\Rules\Missing\MissingReturnRule(false, true); - } - - - public function createService0370(): PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule - { - return new PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule( - $this->getService('reflectionProvider'), - $this->getService('0131'), - false - ); - } - - - public function createService0371(): PHPStan\Rules\Namespaces\ExistingNamesInUseRule - { - return new PHPStan\Rules\Namespaces\ExistingNamesInUseRule( - $this->getService('reflectionProvider'), - $this->getService('0131'), - false - ); - } - - - public function createService0372(): PHPStan\Rules\Properties\AccessPropertiesRule - { - return new PHPStan\Rules\Properties\AccessPropertiesRule($this->getService('0173')); - } - - - public function createService0373(): PHPStan\Rules\Properties\AccessStaticPropertiesRule - { - return new PHPStan\Rules\Properties\AccessStaticPropertiesRule( - $this->getService('reflectionProvider'), - $this->getService('0179'), - $this->getService('0131') - ); - } - - - public function createService0374(): PHPStan\Rules\Properties\ExistingClassesInPropertiesRule - { - return new PHPStan\Rules\Properties\ExistingClassesInPropertiesRule( - $this->getService('reflectionProvider'), - $this->getService('0131'), - $this->getService('0168'), - $this->getService('026'), - true, - false - ); - } - - - public function createService0375(): PHPStan\Rules\Functions\FunctionCallableRule - { - return new PHPStan\Rules\Functions\FunctionCallableRule( - $this->getService('reflectionProvider'), - $this->getService('0179'), - $this->getService('026'), - false, - false - ); - } - - - public function createService0376(): PHPStan\Rules\Properties\OverridingPropertyRule - { - return new PHPStan\Rules\Properties\OverridingPropertyRule($this->getService('026'), true, false); - } - - - public function createService0377(): PHPStan\Rules\Properties\SetPropertyHookParameterRule - { - return new PHPStan\Rules\Properties\SetPropertyHookParameterRule($this->getService('0162'), true, false); - } - - - public function createService0378(): PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule - { - return new PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule( - $this->getService('0179'), - $this->getService('0176'), - $this->getService('0177'), - false - ); - } - - - public function createService0379(): PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule - { - return new PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule( - $this->getService('0176'), - $this->getService('0177'), - $this->getService('0179'), - false - ); - } - - - public function createService0380(): PHPStan\Rules\Variables\CompactVariablesRule - { - return new PHPStan\Rules\Variables\CompactVariablesRule(true); - } - - - public function createService0381(): PHPStan\Rules\Variables\DefinedVariableRule - { - return new PHPStan\Rules\Variables\DefinedVariableRule(true, true); - } - - - public function createService0382(): PHPStan\Rules\Keywords\RequireFileExistsRule - { - return new PHPStan\Rules\Keywords\RequireFileExistsRule('/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'); - } - - - public function createService0383(): PHPStan\Rules\Classes\MixinRule - { - return new PHPStan\Rules\Classes\MixinRule($this->getService('0136')); - } - - - public function createService0384(): PHPStan\Rules\PhpDoc\RequireExtendsCheck - { - return new PHPStan\Rules\PhpDoc\RequireExtendsCheck($this->getService('0131'), true); - } - - - public function createService0385(): PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule - { - return new PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule( - $this->getService('reflectionProvider'), - $this->getService('0131'), - true - ); - } - - - public function createService0386(): PHPStan\Rules\Functions\CallCallablesRule - { - return new PHPStan\Rules\Functions\CallCallablesRule($this->getService('0146'), $this->getService('0179'), false); - } - - - public function createService0387(): PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule - { - return new PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule($this->getService('031'), $this->getService('034')); - } - - - public function createService0388(): PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule - { - return new PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule( - $this->getService('0182'), - $this->getService('reflectionProvider'), - $this->getService('0131'), - $this->getService('0152'), - $this->getService('0162'), - $this->getService('0168'), - true, - false - ); - } - - - public function createService0389(): PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule - { - return new PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule($this->getService('031'), $this->getService('034')); - } - - - public function createService0390(): PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule - { - return new PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule($this->getService('0179'), false); - } - - - public function createService0391(): PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule - { - return new PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule(false); - } - - - public function createService0392(): PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule - { - return new PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule( - $this->getService('0179'), - $this->getService('0130'), - false - ); - } - - - public function createService0393(): PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule - { - return new PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule( - $this->getService('exceptionTypeResolver'), - false - ); - } - - - public function createService0394(): PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule - { - return new PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule( - $this->getService('exceptionTypeResolver'), - false - ); - } - - - public function createService0395(): PHPStan\Rules\Exceptions\ThrowsVoidPropertyHookWithExplicitThrowPointRule - { - return new PHPStan\Rules\Exceptions\ThrowsVoidPropertyHookWithExplicitThrowPointRule( - $this->getService('exceptionTypeResolver'), - false - ); - } - - - public function createService0396(): PHPStan\Rules\Generators\YieldFromTypeRule - { - return new PHPStan\Rules\Generators\YieldFromTypeRule($this->getService('0179'), false); - } - - - public function createService0397(): PHPStan\Rules\Generators\YieldInGeneratorRule - { - return new PHPStan\Rules\Generators\YieldInGeneratorRule(false); - } - - - public function createService0398(): PHPStan\Rules\Classes\ImpossibleInstanceOfRule - { - return new PHPStan\Rules\Classes\ImpossibleInstanceOfRule(true, false, true); - } - - - public function createService0399(): PHPStan\Rules\Comparison\BooleanAndConstantConditionRule - { - return new PHPStan\Rules\Comparison\BooleanAndConstantConditionRule($this->getService('0138'), true, false, true); - } - - - public function createService0400(): PHPStan\Rules\Comparison\BooleanOrConstantConditionRule - { - return new PHPStan\Rules\Comparison\BooleanOrConstantConditionRule($this->getService('0138'), true, false, true); - } - - - public function createService0401(): PHPStan\Rules\Comparison\BooleanNotConstantConditionRule - { - return new PHPStan\Rules\Comparison\BooleanNotConstantConditionRule($this->getService('0138'), true, false, true); - } - - - public function createService0402(): PHPStan\Rules\DeadCode\ConstructorWithoutImpurePointsCollector - { - return new PHPStan\Rules\DeadCode\ConstructorWithoutImpurePointsCollector; - } - - - public function createService0403(): PHPStan\Rules\DeadCode\PossiblyPureNewCollector - { - return new PHPStan\Rules\DeadCode\PossiblyPureNewCollector($this->getService('reflectionProvider')); - } - - - public function createService0404(): PHPStan\Rules\DeadCode\FunctionWithoutImpurePointsCollector - { - return new PHPStan\Rules\DeadCode\FunctionWithoutImpurePointsCollector; - } - - - public function createService0405(): PHPStan\Rules\DeadCode\PossiblyPureFuncCallCollector - { - return new PHPStan\Rules\DeadCode\PossiblyPureFuncCallCollector($this->getService('reflectionProvider')); - } - - - public function createService0406(): PHPStan\Rules\DeadCode\MethodWithoutImpurePointsCollector - { - return new PHPStan\Rules\DeadCode\MethodWithoutImpurePointsCollector; - } - - - public function createService0407(): PHPStan\Rules\DeadCode\PossiblyPureMethodCallCollector - { - return new PHPStan\Rules\DeadCode\PossiblyPureMethodCallCollector; - } - - - public function createService0408(): PHPStan\Rules\DeadCode\PossiblyPureStaticCallCollector - { - return new PHPStan\Rules\DeadCode\PossiblyPureStaticCallCollector; - } - - - public function createService0409(): PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule - { - return new PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule($this->getService('0175'), [], [], false); - } - - - public function createService0410(): PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule - { - return new PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule($this->getService('0138'), true, true); - } - - - public function createService0411(): PHPStan\Rules\Comparison\ElseIfConstantConditionRule - { - return new PHPStan\Rules\Comparison\ElseIfConstantConditionRule($this->getService('0138'), true, false, true); - } - - - public function createService0412(): PHPStan\Rules\Comparison\IfConstantConditionRule - { - return new PHPStan\Rules\Comparison\IfConstantConditionRule($this->getService('0138'), true, true); - } - - - public function createService0413(): PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule - { - return new PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule($this->getService('0139'), true, false, true); - } - - - public function createService0414(): PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule - { - return new PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule($this->getService('0139'), true, false, true); - } - - - public function createService0415(): PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule - { - return new PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule($this->getService('0139'), true, false, true); - } - - - public function createService0416(): PHPStan\Rules\Comparison\LogicalXorConstantConditionRule - { - return new PHPStan\Rules\Comparison\LogicalXorConstantConditionRule($this->getService('0138'), true, false, true); - } - - - public function createService0417(): PHPStan\Rules\Comparison\MatchExpressionRule - { - return new PHPStan\Rules\Comparison\MatchExpressionRule($this->getService('0138'), false, true); - } - - - public function createService0418(): PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule - { - return new PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule(true, true); - } - - - public function createService0419(): PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule - { - return new PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule($this->getService('063'), true, false, true); - } - - - public function createService0420(): PHPStan\Rules\Comparison\ConstantLooseComparisonRule - { - return new PHPStan\Rules\Comparison\ConstantLooseComparisonRule(true, false, true); - } - - - public function createService0421(): PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule - { - return new PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule($this->getService('0138'), true, true); - } - - - public function createService0422(): PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule - { - return new PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule($this->getService('0138'), true, true); - } - - - public function createService0423(): PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule - { - return new PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule($this->getService('0138'), true, true); - } - - - public function createService0424(): PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule - { - return new PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule($this->getService('0145')); - } - - - public function createService0425(): PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule - { - return new PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule($this->getService('0182'), $this->getService('0145')); - } - - - public function createService0426(): PHPStan\Rules\Exceptions\TooWidePropertyHookThrowTypeRule - { - return new PHPStan\Rules\Exceptions\TooWidePropertyHookThrowTypeRule($this->getService('0182'), $this->getService('0145')); - } - - - public function createService0427(): PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule(false); - } - - - public function createService0428(): PHPStan\Rules\Properties\NullsafePropertyFetchRule - { - return new PHPStan\Rules\Properties\NullsafePropertyFetchRule; - } - - - public function createService0429(): PHPStan\Rules\Traits\TraitDeclarationCollector - { - return new PHPStan\Rules\Traits\TraitDeclarationCollector; - } - - - public function createService0430(): PHPStan\Rules\Traits\TraitUseCollector - { - return new PHPStan\Rules\Traits\TraitUseCollector; - } - - - public function createService0431(): PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule - { - return new PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule($this->getService('exceptionTypeResolver'), true); - } - - - public function createService0432(): PHPStan\Rules\Functions\RandomIntParametersRule - { - return new PHPStan\Rules\Functions\RandomIntParametersRule( - $this->getService('reflectionProvider'), - $this->getService('026'), - false - ); - } - - - public function createService0433(): PHPStan\Rules\Functions\ArrayFilterRule - { - return new PHPStan\Rules\Functions\ArrayFilterRule($this->getService('reflectionProvider'), true, true); - } - - - public function createService0434(): PHPStan\Rules\Functions\ArrayValuesRule - { - return new PHPStan\Rules\Functions\ArrayValuesRule($this->getService('reflectionProvider'), true, true); - } - - - public function createService0435(): PHPStan\Rules\Functions\ParameterCastableToNumberRule - { - return new PHPStan\Rules\Functions\ParameterCastableToNumberRule( - $this->getService('reflectionProvider'), - $this->getService('0149') - ); - } - - - public function createService0436(): Larastan\Larastan\Methods\RelationForwardsCallsExtension - { - return new Larastan\Larastan\Methods\RelationForwardsCallsExtension( - $this->getService('0509'), - $this->getService('reflectionProvider') - ); - } - - - public function createService0437(): Larastan\Larastan\Methods\ModelForwardsCallsExtension - { - return new Larastan\Larastan\Methods\ModelForwardsCallsExtension( - $this->getService('0509'), - $this->getService('reflectionProvider'), - $this->getService('0438') - ); - } - - - public function createService0438(): Larastan\Larastan\Methods\EloquentBuilderForwardsCallsExtension - { - return new Larastan\Larastan\Methods\EloquentBuilderForwardsCallsExtension( - $this->getService('0509'), - $this->getService('reflectionProvider') - ); - } - - - public function createService0439(): Larastan\Larastan\Methods\HigherOrderTapProxyExtension - { - return new Larastan\Larastan\Methods\HigherOrderTapProxyExtension; - } - - - public function createService0440(): Larastan\Larastan\Methods\HigherOrderCollectionProxyExtension - { - return new Larastan\Larastan\Methods\HigherOrderCollectionProxyExtension($this->getService('0535')); - } - - - public function createService0441(): Larastan\Larastan\Methods\StorageMethodsClassReflectionExtension - { - return new Larastan\Larastan\Methods\StorageMethodsClassReflectionExtension($this->getService('reflectionProvider')); - } - - - public function createService0442(): Larastan\Larastan\Methods\Extension - { - return new Larastan\Larastan\Methods\Extension($this->getService('0115'), $this->getService('reflectionProvider')); - } - - - public function createService0443(): Larastan\Larastan\Methods\ModelFactoryMethodsClassReflectionExtension - { - return new Larastan\Larastan\Methods\ModelFactoryMethodsClassReflectionExtension($this->getService('reflectionProvider')); - } - - - public function createService0444(): Larastan\Larastan\Methods\RedirectResponseMethodsClassReflectionExtension - { - return new Larastan\Larastan\Methods\RedirectResponseMethodsClassReflectionExtension; - } - - - public function createService0445(): Larastan\Larastan\Methods\MacroMethodsClassReflectionExtension - { - return new Larastan\Larastan\Methods\MacroMethodsClassReflectionExtension( - $this->getService('reflectionProvider'), - $this->getService('0353') - ); - } - - - public function createService0446(): Larastan\Larastan\Methods\ViewWithMethodsClassReflectionExtension - { - return new Larastan\Larastan\Methods\ViewWithMethodsClassReflectionExtension; - } - - - public function createService0447(): Larastan\Larastan\Properties\ModelAccessorExtension - { - return new Larastan\Larastan\Properties\ModelAccessorExtension($this->getService('0507')); - } - - - public function createService0448(): Larastan\Larastan\Properties\ModelPropertyExtension - { - return new Larastan\Larastan\Properties\ModelPropertyExtension($this->getService('0507')); - } - - - public function createService0449(): Larastan\Larastan\Properties\HigherOrderCollectionProxyPropertyExtension - { - return new Larastan\Larastan\Properties\HigherOrderCollectionProxyPropertyExtension($this->getService('0535')); - } - - - public function createService0450(): Larastan\Larastan\ReturnTypes\HigherOrderTapProxyExtension - { - return new Larastan\Larastan\ReturnTypes\HigherOrderTapProxyExtension; - } - - - public function createService0451(): Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension('Illuminate\Contracts\Container\Container'); - } - - - public function createService0452(): Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension('Illuminate\Container\Container'); - } - - - public function createService0453(): Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension('Illuminate\Foundation\Application'); - } - - - public function createService0454(): Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension('Illuminate\Contracts\Foundation\Application'); - } - - - public function createService0455(): Larastan\Larastan\Properties\ModelRelationsExtension - { - return new Larastan\Larastan\Properties\ModelRelationsExtension($this->getService('0474')); - } - - - public function createService0456(): Larastan\Larastan\ReturnTypes\ModelOnlyDynamicMethodReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\ModelOnlyDynamicMethodReturnTypeExtension; - } - - - public function createService0457(): Larastan\Larastan\ReturnTypes\ModelFactoryDynamicStaticMethodReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\ModelFactoryDynamicStaticMethodReturnTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0458(): Larastan\Larastan\ReturnTypes\ModelDynamicStaticMethodReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\ModelDynamicStaticMethodReturnTypeExtension( - $this->getService('0509'), - $this->getService('0474'), - $this->getService('reflectionProvider') - ); - } - - - public function createService0459(): Larastan\Larastan\ReturnTypes\AppMakeDynamicReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\AppMakeDynamicReturnTypeExtension($this->getService('0532')); - } - - - public function createService0460(): Larastan\Larastan\ReturnTypes\AuthExtension - { - return new Larastan\Larastan\ReturnTypes\AuthExtension; - } - - - public function createService0461(): Larastan\Larastan\ReturnTypes\GuardDynamicStaticMethodReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\GuardDynamicStaticMethodReturnTypeExtension; - } - - - public function createService0462(): Larastan\Larastan\ReturnTypes\AuthManagerExtension - { - return new Larastan\Larastan\ReturnTypes\AuthManagerExtension; - } - - - public function createService0463(): Larastan\Larastan\ReturnTypes\DateExtension - { - return new Larastan\Larastan\ReturnTypes\DateExtension; - } - - - public function createService0464(): Larastan\Larastan\ReturnTypes\GuardExtension - { - return new Larastan\Larastan\ReturnTypes\GuardExtension; - } - - - public function createService0465(): Larastan\Larastan\ReturnTypes\RequestFileExtension - { - return new Larastan\Larastan\ReturnTypes\RequestFileExtension; - } - - - public function createService0466(): Larastan\Larastan\ReturnTypes\RequestRouteExtension - { - return new Larastan\Larastan\ReturnTypes\RequestRouteExtension; - } - - - public function createService0467(): Larastan\Larastan\ReturnTypes\RequestUserExtension - { - return new Larastan\Larastan\ReturnTypes\RequestUserExtension; - } - - - public function createService0468(): Larastan\Larastan\ReturnTypes\EloquentBuilderExtension - { - return new Larastan\Larastan\ReturnTypes\EloquentBuilderExtension( - $this->getService('reflectionProvider'), - $this->getService('0474') - ); - } - - - public function createService0469(): Larastan\Larastan\ReturnTypes\RelationFindExtension - { - return new Larastan\Larastan\ReturnTypes\RelationFindExtension( - $this->getService('reflectionProvider'), - $this->getService('0474') - ); - } - - - public function createService0470(): Larastan\Larastan\ReturnTypes\RelationCollectionExtension - { - return new Larastan\Larastan\ReturnTypes\RelationCollectionExtension( - $this->getService('reflectionProvider'), - $this->getService('0474') - ); - } - - - public function createService0471(): Larastan\Larastan\ReturnTypes\ModelFindExtension - { - return new Larastan\Larastan\ReturnTypes\ModelFindExtension($this->getService('reflectionProvider'), $this->getService('0474')); - } - - - public function createService0472(): Larastan\Larastan\ReturnTypes\BuilderModelFindExtension - { - return new Larastan\Larastan\ReturnTypes\BuilderModelFindExtension( - $this->getService('reflectionProvider'), - $this->getService('0474') - ); - } - - - public function createService0473(): Larastan\Larastan\ReturnTypes\TestCaseExtension - { - return new Larastan\Larastan\ReturnTypes\TestCaseExtension; - } - - - public function createService0474(): Larastan\Larastan\Support\CollectionHelper - { - return new Larastan\Larastan\Support\CollectionHelper($this->getService('reflectionProvider')); - } - - - public function createService0475(): Larastan\Larastan\ReturnTypes\Helpers\AuthExtension - { - return new Larastan\Larastan\ReturnTypes\Helpers\AuthExtension; - } - - - public function createService0476(): Larastan\Larastan\ReturnTypes\Helpers\CollectExtension - { - return new Larastan\Larastan\ReturnTypes\Helpers\CollectExtension($this->getService('0474')); - } - - - public function createService0477(): Larastan\Larastan\ReturnTypes\Helpers\NowAndTodayExtension - { - return new Larastan\Larastan\ReturnTypes\Helpers\NowAndTodayExtension; - } - - - public function createService0478(): Larastan\Larastan\ReturnTypes\Helpers\ResponseExtension - { - return new Larastan\Larastan\ReturnTypes\Helpers\ResponseExtension; - } - - - public function createService0479(): Larastan\Larastan\ReturnTypes\Helpers\ValidatorExtension - { - return new Larastan\Larastan\ReturnTypes\Helpers\ValidatorExtension; - } - - - public function createService0480(): Larastan\Larastan\ReturnTypes\Helpers\LiteralExtension - { - return new Larastan\Larastan\ReturnTypes\Helpers\LiteralExtension; - } - - - public function createService0481(): Larastan\Larastan\ReturnTypes\CollectionFilterRejectDynamicReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\CollectionFilterRejectDynamicReturnTypeExtension; - } - - - public function createService0482(): Larastan\Larastan\ReturnTypes\CollectionWhereNotNullDynamicReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\CollectionWhereNotNullDynamicReturnTypeExtension; - } - - - public function createService0483(): Larastan\Larastan\ReturnTypes\NewModelQueryDynamicMethodReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\NewModelQueryDynamicMethodReturnTypeExtension($this->getService('0509')); - } - - - public function createService0484(): Larastan\Larastan\ReturnTypes\FactoryDynamicMethodReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\FactoryDynamicMethodReturnTypeExtension; - } - - - public function createService0485(): Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension - { - return new Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension(false, 'abort'); - } - - - public function createService0486(): Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension - { - return new Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension(true, 'abort'); - } - - - public function createService0487(): Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension - { - return new Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension(false, 'throw'); - } - - - public function createService0488(): Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension - { - return new Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension(true, 'throw'); - } - - - public function createService0489(): Larastan\Larastan\ReturnTypes\Helpers\AppExtension - { - return new Larastan\Larastan\ReturnTypes\Helpers\AppExtension($this->getService('0532')); - } - - - public function createService0490(): Larastan\Larastan\ReturnTypes\Helpers\ValueExtension - { - return new Larastan\Larastan\ReturnTypes\Helpers\ValueExtension; - } - - - public function createService0491(): Larastan\Larastan\ReturnTypes\Helpers\StrExtension - { - return new Larastan\Larastan\ReturnTypes\Helpers\StrExtension; - } - - - public function createService0492(): Larastan\Larastan\ReturnTypes\Helpers\TapExtension - { - return new Larastan\Larastan\ReturnTypes\Helpers\TapExtension; - } - - - public function createService0493(): Larastan\Larastan\ReturnTypes\StorageDynamicStaticMethodReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\StorageDynamicStaticMethodReturnTypeExtension; - } - - - public function createService0494(): Larastan\Larastan\Types\GenericEloquentCollectionTypeNodeResolverExtension - { - return new Larastan\Larastan\Types\GenericEloquentCollectionTypeNodeResolverExtension($this->getService('040')); - } - - - public function createService0495(): Larastan\Larastan\Types\ViewStringTypeNodeResolverExtension - { - return new Larastan\Larastan\Types\ViewStringTypeNodeResolverExtension; - } - - - public function createService0496(): Larastan\Larastan\Rules\OctaneCompatibilityRule - { - return new Larastan\Larastan\Rules\OctaneCompatibilityRule; - } - - - public function createService0497(): Larastan\Larastan\Rules\NoEnvCallsOutsideOfConfigRule - { - return new Larastan\Larastan\Rules\NoEnvCallsOutsideOfConfigRule; - } - - - public function createService0498(): Larastan\Larastan\Rules\NoModelMakeRule - { - return new Larastan\Larastan\Rules\NoModelMakeRule($this->getService('reflectionProvider')); - } - - - public function createService0499(): Larastan\Larastan\Rules\NoUnnecessaryCollectionCallRule - { - return new Larastan\Larastan\Rules\NoUnnecessaryCollectionCallRule( - $this->getService('reflectionProvider'), - $this->getService('0448'), - [], - [] - ); - } - - - public function createService0500(): Larastan\Larastan\Rules\ModelAppendsRule - { - return new Larastan\Larastan\Rules\ModelAppendsRule($this->getService('0507')); - } - - - public function createService0501(): Larastan\Larastan\Types\GenericEloquentBuilderTypeNodeResolverExtension - { - return new Larastan\Larastan\Types\GenericEloquentBuilderTypeNodeResolverExtension($this->getService('reflectionProvider')); - } - - - public function createService0502(): Larastan\Larastan\ReturnTypes\AppEnvironmentReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\AppEnvironmentReturnTypeExtension; - } - - - public function createService0503(): Larastan\Larastan\Types\ModelProperty\ModelPropertyTypeNodeResolverExtension - { - return new Larastan\Larastan\Types\ModelProperty\ModelPropertyTypeNodeResolverExtension( - $this->getService('040'), - true, - $this->getService('0507') - ); - } - - - public function createService0504(): Larastan\Larastan\Properties\MigrationHelper - { - return new Larastan\Larastan\Properties\MigrationHelper( - $this->getService('currentPhpVersionSimpleDirectParser'), - [], - $this->getService('084'), - false, - $this->getService('reflectionProvider') - ); - } - - - public function createService0505(): Larastan\Larastan\Properties\SquashedMigrationHelper - { - return new Larastan\Larastan\Properties\SquashedMigrationHelper([], $this->getService('084'), $this->getService('0513'), false); - } - - - public function createService0506(): Larastan\Larastan\Properties\ModelCastHelper - { - return new Larastan\Larastan\Properties\ModelCastHelper($this->getService('reflectionProvider')); - } - - - public function createService0507(): Larastan\Larastan\Properties\ModelPropertyHelper - { - return new Larastan\Larastan\Properties\ModelPropertyHelper( - $this->getService('042'), - $this->getService('0504'), - $this->getService('0505'), - $this->getService('0506') - ); - } - - - public function createService0508(): Larastan\Larastan\Rules\ModelRuleHelper - { - return new Larastan\Larastan\Rules\ModelRuleHelper; - } - - - public function createService0509(): Larastan\Larastan\Methods\BuilderHelper - { - return new Larastan\Larastan\Methods\BuilderHelper($this->getService('reflectionProvider'), true, $this->getService('0445')); - } - - - public function createService0510(): Larastan\Larastan\Rules\RelationExistenceRule - { - return new Larastan\Larastan\Rules\RelationExistenceRule($this->getService('0508')); - } - - - public function createService0511(): Larastan\Larastan\Rules\CheckDispatchArgumentTypesCompatibleWithClassConstructorRule - { - return new Larastan\Larastan\Rules\CheckDispatchArgumentTypesCompatibleWithClassConstructorRule( - $this->getService('reflectionProvider'), - $this->getService('0146'), - 'Illuminate\Foundation\Bus\Dispatchable' - ); - } - - - public function createService0512(): Larastan\Larastan\Rules\CheckDispatchArgumentTypesCompatibleWithClassConstructorRule - { - return new Larastan\Larastan\Rules\CheckDispatchArgumentTypesCompatibleWithClassConstructorRule( - $this->getService('reflectionProvider'), - $this->getService('0146'), - 'Illuminate\Foundation\Events\Dispatchable' - ); - } - - - public function createService0513(): Larastan\Larastan\Properties\Schema\PhpMyAdminDataTypeToPhpTypeConverter - { - return new Larastan\Larastan\Properties\Schema\PhpMyAdminDataTypeToPhpTypeConverter; - } - - - public function createService0514(): Larastan\Larastan\LarastanStubFilesExtension - { - return new Larastan\Larastan\LarastanStubFilesExtension; - } - - - public function createService0515(): Larastan\Larastan\Rules\UnusedViewsRule - { - return new Larastan\Larastan\Rules\UnusedViewsRule($this->getService('0521'), $this->getService('0522')); - } - - - public function createService0516(): Larastan\Larastan\Collectors\UsedViewFunctionCollector - { - return new Larastan\Larastan\Collectors\UsedViewFunctionCollector; - } - - - public function createService0517(): Larastan\Larastan\Collectors\UsedEmailViewCollector - { - return new Larastan\Larastan\Collectors\UsedEmailViewCollector; - } - - - public function createService0518(): Larastan\Larastan\Collectors\UsedViewMakeCollector - { - return new Larastan\Larastan\Collectors\UsedViewMakeCollector; - } - - - public function createService0519(): Larastan\Larastan\Collectors\UsedViewFacadeMakeCollector - { - return new Larastan\Larastan\Collectors\UsedViewFacadeMakeCollector; - } - - - public function createService0520(): Larastan\Larastan\Collectors\UsedRouteFacadeViewCollector - { - return new Larastan\Larastan\Collectors\UsedRouteFacadeViewCollector; - } - - - public function createService0521(): Larastan\Larastan\Collectors\UsedViewInAnotherViewCollector - { - return new Larastan\Larastan\Collectors\UsedViewInAnotherViewCollector( - $this->getService('currentPhpVersionSimpleDirectParser'), - $this->getService('0522') - ); - } - - - public function createService0522(): Larastan\Larastan\Support\ViewFileHelper - { - return new Larastan\Larastan\Support\ViewFileHelper([], $this->getService('084')); - } - - - public function createService0523(): Larastan\Larastan\ReturnTypes\ApplicationMakeDynamicReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\ApplicationMakeDynamicReturnTypeExtension($this->getService('0532')); - } - - - public function createService0524(): Larastan\Larastan\ReturnTypes\ContainerMakeDynamicReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\ContainerMakeDynamicReturnTypeExtension($this->getService('0532')); - } - - - public function createService0525(): Larastan\Larastan\ReturnTypes\ConsoleCommand\ArgumentDynamicReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\ConsoleCommand\ArgumentDynamicReturnTypeExtension( - $this->getService('0533'), - $this->getService('0534') - ); - } - - - public function createService0526(): Larastan\Larastan\ReturnTypes\ConsoleCommand\HasArgumentDynamicReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\ConsoleCommand\HasArgumentDynamicReturnTypeExtension($this->getService('0533')); - } - - - public function createService0527(): Larastan\Larastan\ReturnTypes\ConsoleCommand\OptionDynamicReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\ConsoleCommand\OptionDynamicReturnTypeExtension( - $this->getService('0533'), - $this->getService('0534') - ); - } - - - public function createService0528(): Larastan\Larastan\ReturnTypes\ConsoleCommand\HasOptionDynamicReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\ConsoleCommand\HasOptionDynamicReturnTypeExtension($this->getService('0533')); - } - - - public function createService0529(): Larastan\Larastan\ReturnTypes\TranslatorGetReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\TranslatorGetReturnTypeExtension; - } - - - public function createService0530(): Larastan\Larastan\ReturnTypes\TransHelperReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\TransHelperReturnTypeExtension; - } - - - public function createService0531(): Larastan\Larastan\ReturnTypes\DoubleUnderscoreHelperReturnTypeExtension - { - return new Larastan\Larastan\ReturnTypes\DoubleUnderscoreHelperReturnTypeExtension; - } - - - public function createService0532(): Larastan\Larastan\ReturnTypes\AppMakeHelper - { - return new Larastan\Larastan\ReturnTypes\AppMakeHelper; - } - - - public function createService0533(): Larastan\Larastan\Internal\ConsoleApplicationResolver - { - return new Larastan\Larastan\Internal\ConsoleApplicationResolver; - } - - - public function createService0534(): Larastan\Larastan\Internal\ConsoleApplicationHelper - { - return new Larastan\Larastan\Internal\ConsoleApplicationHelper($this->getService('0533')); - } - - - public function createService0535(): Larastan\Larastan\Support\HigherOrderCollectionProxyHelper - { - return new Larastan\Larastan\Support\HigherOrderCollectionProxyHelper($this->getService('reflectionProvider')); - } - - - public function createService0536(): Carbon\PHPStan\MacroExtension - { - return new Carbon\PHPStan\MacroExtension($this->getService('reflectionProvider'), $this->getService('0353')); - } - - - public function createService0537(): PHPStan\Rules\Deprecations\DeprecatedClassHelper - { - return new PHPStan\Rules\Deprecations\DeprecatedClassHelper($this->getService('reflectionProvider')); - } - - - public function createService0538(): PHPStan\DependencyInjection\LazyDeprecatedScopeResolverProvider - { - return new PHPStan\DependencyInjection\LazyDeprecatedScopeResolverProvider($this->getService('074')); - } - - - public function createService0539(): PHPStan\Rules\Deprecations\DeprecatedScopeHelper - { - return $this->getService('0538')->get(); - } - - - public function createService0540(): PHPStan\Rules\Deprecations\DefaultDeprecatedScopeResolver - { - return new PHPStan\Rules\Deprecations\DefaultDeprecatedScopeResolver; - } - - - public function createService0541(): PHPStan\Rules\Deprecations\CallWithDeprecatedIniOptionRule - { - return new PHPStan\Rules\Deprecations\CallWithDeprecatedIniOptionRule( - $this->getService('reflectionProvider'), - $this->getService('0539'), - $this->getService('026') - ); - } - - - public function createService0542(): PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension - { - return new PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension; - } - - - public function createService0543(): PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension; - } - - - public function createService0544(): PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension - { - return new PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension; - } - - - public function createService0545(): PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension - { - return new PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension; - } - - - public function createService0546(): PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension - { - return new PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension; - } - - - public function createService0547(): PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension - { - return new PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension; - } - - - public function createService0548(): PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension - { - return new PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension; - } - - - public function createService0549(): PHPStan\Rules\PHPUnit\CoversHelper - { - return new PHPStan\Rules\PHPUnit\CoversHelper($this->getService('reflectionProvider')); - } - - - public function createService0550(): PHPStan\Rules\PHPUnit\AnnotationHelper - { - return new PHPStan\Rules\PHPUnit\AnnotationHelper; - } - - - public function createService0551(): PHPStan\Rules\PHPUnit\DataProviderHelper - { - return $this->getService('0552')->create(); - } - - - public function createService0552(): PHPStan\Rules\PHPUnit\DataProviderHelperFactory - { - return new PHPStan\Rules\PHPUnit\DataProviderHelperFactory($this->getService('reflectionProvider'), $this->getService('0182')); - } - - - public function createService0553(): PHPStan\Rules\PHPUnit\DataProviderDeclarationRule - { - return new PHPStan\Rules\PHPUnit\DataProviderDeclarationRule($this->getService('0551'), false, true); - } - - - public function createService0554(): PHPStan\Rules\PHPUnit\AssertEqualsIsDiscouragedRule - { - return new PHPStan\Rules\PHPUnit\AssertEqualsIsDiscouragedRule; - } - - - public function createServiceBetterReflectionProvider(): PHPStan\Reflection\BetterReflection\BetterReflectionProvider - { - return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider( - $this->getService('0121'), - $this->getService('095'), - $this->getService('077'), - $this->getService('betterReflectionReflector'), - $this->getService('0182'), - $this->getService('036'), - $this->getService('026'), - $this->getService('0122'), - $this->getService('stubPhpDocProvider'), - $this->getService('094'), - $this->getService('relativePathHelper'), - $this->getService('025'), - $this->getService('084'), - $this->getService('0359'), - $this->getService('0127'), - $this->getService('093'), - [ - 'stdClass', - 'Illuminate\Http\Request', - 'Illuminate\Support\Optional', - 'Pest\Support\HigherOrderTapProxy', - 'Pest\Expectation', - ] - ); - } - - - public function createServiceBetterReflectionReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector - { - return new PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector($this->getService('originalBetterReflectionReflector')); - } - - - public function createServiceBetterReflectionSourceLocator(): PHPStan\BetterReflection\SourceLocator\Type\SourceLocator - { - return $this->getService('0356')->create(); - } - - - public function createServiceCacheStorage(): PHPStan\Cache\FileCacheStorage - { - return new PHPStan\Cache\FileCacheStorage('/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/build/phpstan/cache/PHPStan'); - } - - - public function createServiceContainer(): Container_c5db45e753 - { - return $this; - } - - - public function createServiceCurrentPhpVersionLexer(): PhpParser\Lexer - { - return $this->getService('02')->create(); - } - - - public function createServiceCurrentPhpVersionPhpParser(): PhpParser\ParserAbstract - { - return $this->getService('currentPhpVersionPhpParserFactory')->create(); - } - - - public function createServiceCurrentPhpVersionPhpParserFactory(): PHPStan\Parser\PhpParserFactory - { - return new PHPStan\Parser\PhpParserFactory($this->getService('currentPhpVersionLexer'), $this->getService('026')); - } - - - public function createServiceCurrentPhpVersionRichParser(): PHPStan\Parser\RichParser - { - return new PHPStan\Parser\RichParser( - $this->getService('currentPhpVersionPhpParser'), - $this->getService('03'), - $this->getService('074'), - $this->getService('055') - ); - } - - - public function createServiceCurrentPhpVersionSimpleDirectParser(): PHPStan\Parser\SimpleParser - { - return new PHPStan\Parser\SimpleParser( - $this->getService('currentPhpVersionPhpParser'), - $this->getService('03'), - $this->getService('021'), - $this->getService('022') - ); - } - - - public function createServiceCurrentPhpVersionSimpleParser(): PHPStan\Parser\CleaningParser - { - return new PHPStan\Parser\CleaningParser($this->getService('currentPhpVersionSimpleDirectParser'), $this->getService('026')); - } - - - public function createServiceDefaultAnalysisParser(): PHPStan\Parser\CachedParser - { - return new PHPStan\Parser\CachedParser($this->getService('pathRoutingParser'), 256); - } - - - 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')); - } - - - 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'), - $this->getService('simpleRelativePathHelper'), - $this->getService('0362'), - true, - null, - null - ); - } - - - public function createServiceErrorFormatter__teamcity(): PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter($this->getService('simpleRelativePathHelper')); - } - - - public function createServiceExceptionTypeResolver(): PHPStan\Rules\Exceptions\ExceptionTypeResolver - { - return $this->getService('0140'); - } - - - public function createServiceFileExcluderAnalyse(): PHPStan\File\FileExcluder - { - return $this->getService('085')->createAnalyseFileExcluder(); - } - - - public function createServiceFileExcluderScan(): PHPStan\File\FileExcluder - { - return $this->getService('085')->createScanFileExcluder(); - } - - - public function createServiceFileFinderAnalyse(): PHPStan\File\FileFinder - { - return new PHPStan\File\FileFinder($this->getService('fileExcluderAnalyse'), $this->getService('084'), ['php']); - } - - - public function createServiceFileFinderScan(): PHPStan\File\FileFinder - { - return new PHPStan\File\FileFinder($this->getService('fileExcluderScan'), $this->getService('084'), ['php']); - } - - - public function createServiceFreshStubParser(): PHPStan\Parser\StubParser - { - return new PHPStan\Parser\StubParser($this->getService('php8PhpParser'), $this->getService('03')); - } - - - public function createServiceNodeScopeResolverReflector(): PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector - { - return $this->getService('betterReflectionReflector'); - } - - - public function createServiceOriginalBetterReflectionReflector(): PHPStan\BetterReflection\Reflector\DefaultReflector - { - return new PHPStan\BetterReflection\Reflector\DefaultReflector($this->getService('betterReflectionSourceLocator')); - } - - - public function createServiceParentDirectoryRelativePathHelper(): PHPStan\File\ParentDirectoryRelativePathHelper - { - return new PHPStan\File\ParentDirectoryRelativePathHelper('/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'); - } - - - public function createServicePathRoutingParser(): PHPStan\Parser\PathRoutingParser - { - return new PHPStan\Parser\PathRoutingParser( - $this->getService('084'), - $this->getService('currentPhpVersionRichParser'), - $this->getService('currentPhpVersionSimpleParser'), - $this->getService('php8Parser') - ); - } - - - public function createServicePhp8Lexer(): PhpParser\Lexer\Emulative - { - return $this->getService('02')->createEmulative(); - } - - - public function createServicePhp8Parser(): PHPStan\Parser\SimpleParser - { - return new PHPStan\Parser\SimpleParser( - $this->getService('php8PhpParser'), - $this->getService('03'), - $this->getService('021'), - $this->getService('022') - ); - } - - - public function createServicePhp8PhpParser(): PhpParser\Parser\Php8 - { - return new PhpParser\Parser\Php8($this->getService('php8Lexer')); - } - - - public function createServicePhpParserDecorator(): PHPStan\Parser\PhpParserDecorator - { - return new PHPStan\Parser\PhpParserDecorator($this->getService('defaultAnalysisParser')); - } - - - public function createServicePhpstanDiagnoseExtension(): PHPStan\Diagnose\PHPStanDiagnoseExtension - { - return new PHPStan\Diagnose\PHPStanDiagnoseExtension( - $this->getService('026'), - null, - $this->getService('084'), - ['/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'], - [ - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/parametersSchema.neon', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level5.neon', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level4.neon', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level3.neon', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level2.neon', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level1.neon', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level0.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nesbot/carbon/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/pestphp/pest/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/rules.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/rules.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan.neon.dist', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan-baseline.neon', - ], - $this->getService('029') - ); - } - - - 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('betterReflectionProvider')); - } - - - public function createServiceRegistry(): PHPStan\Rules\LazyRegistry - { - return new PHPStan\Rules\LazyRegistry($this->getService('074')); - } - - - public function createServiceRelativePathHelper(): PHPStan\File\RelativePathHelper - { - return new PHPStan\File\FuzzyRelativePathHelper( - $this->getService('parentDirectoryRelativePathHelper'), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify', - $this->getParameter('analysedPaths') - ); - } - - - public function createServiceRules__0(): PHPStan\Rules\Debug\DebugScopeRule - { - return new PHPStan\Rules\Debug\DebugScopeRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__1(): PHPStan\Rules\Debug\DumpPhpDocTypeRule - { - return new PHPStan\Rules\Debug\DumpPhpDocTypeRule($this->getService('reflectionProvider'), $this->getService('035')); - } - - - public function createServiceRules__10(): PHPStan\Rules\Api\ApiInterfaceExtendsRule - { - return new PHPStan\Rules\Api\ApiInterfaceExtendsRule($this->getService('0128'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__100(): PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyRule - { - return new PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyRule; - } - - - public function createServiceRules__101(): PHPStan\Rules\Regexp\RegularExpressionPatternRule - { - return new PHPStan\Rules\Regexp\RegularExpressionPatternRule($this->getService('0276')); - } - - - public function createServiceRules__102(): PHPStan\Rules\Traits\ConflictingTraitConstantsRule - { - return new PHPStan\Rules\Traits\ConflictingTraitConstantsRule($this->getService('095'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__103(): PHPStan\Rules\Traits\ConstantsInTraitsRule - { - return new PHPStan\Rules\Traits\ConstantsInTraitsRule($this->getService('026')); - } - - - public function createServiceRules__104(): PHPStan\Rules\Traits\TraitAttributesRule - { - return new PHPStan\Rules\Traits\TraitAttributesRule($this->getService('0129')); - } - - - public function createServiceRules__105(): PHPStan\Rules\Types\InvalidTypesInUnionRule - { - return new PHPStan\Rules\Types\InvalidTypesInUnionRule; - } - - - public function createServiceRules__106(): PHPStan\Rules\Variables\UnsetRule - { - return new PHPStan\Rules\Variables\UnsetRule; - } - - - public function createServiceRules__107(): PHPStan\Rules\Whitespace\FileWhitespaceRule - { - return new PHPStan\Rules\Whitespace\FileWhitespaceRule; - } - - - public function createServiceRules__108(): PHPStan\Rules\Classes\UnusedConstructorParametersRule - { - return new PHPStan\Rules\Classes\UnusedConstructorParametersRule($this->getService('0180')); - } - - - public function createServiceRules__109(): PHPStan\Rules\Constants\ConstantRule - { - return new PHPStan\Rules\Constants\ConstantRule; - } - - - public function createServiceRules__11(): PHPStan\Rules\Api\ApiMethodCallRule - { - return new PHPStan\Rules\Api\ApiMethodCallRule($this->getService('0128')); - } - - - public function createServiceRules__110(): PHPStan\Rules\Functions\UnusedClosureUsesRule - { - return new PHPStan\Rules\Functions\UnusedClosureUsesRule($this->getService('0180')); - } - - - public function createServiceRules__111(): PHPStan\Rules\Variables\EmptyRule - { - return new PHPStan\Rules\Variables\EmptyRule($this->getService('0156')); - } - - - public function createServiceRules__112(): PHPStan\Rules\Variables\IssetRule - { - return new PHPStan\Rules\Variables\IssetRule($this->getService('0156')); - } - - - public function createServiceRules__113(): PHPStan\Rules\Variables\NullCoalesceRule - { - return new PHPStan\Rules\Variables\NullCoalesceRule($this->getService('0156')); - } - - - public function createServiceRules__114(): PHPStan\Rules\Cast\EchoRule - { - return new PHPStan\Rules\Cast\EchoRule($this->getService('0179')); - } - - - public function createServiceRules__115(): PHPStan\Rules\Cast\InvalidCastRule - { - return new PHPStan\Rules\Cast\InvalidCastRule($this->getService('reflectionProvider'), $this->getService('0179')); - } - - - public function createServiceRules__116(): PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule - { - return new PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule($this->getService('023'), $this->getService('0179')); - } - - - public function createServiceRules__117(): PHPStan\Rules\Cast\PrintRule - { - return new PHPStan\Rules\Cast\PrintRule($this->getService('0179')); - } - - - public function createServiceRules__118(): PHPStan\Rules\Classes\AccessPrivateConstantThroughStaticRule - { - return new PHPStan\Rules\Classes\AccessPrivateConstantThroughStaticRule; - } - - - public function createServiceRules__119(): PHPStan\Rules\Classes\MethodTagRule - { - return new PHPStan\Rules\Classes\MethodTagRule($this->getService('0135')); - } - - - public function createServiceRules__12(): PHPStan\Rules\Api\ApiStaticCallRule - { - return new PHPStan\Rules\Api\ApiStaticCallRule($this->getService('0128'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__120(): PHPStan\Rules\Classes\MethodTagTraitRule - { - return new PHPStan\Rules\Classes\MethodTagTraitRule($this->getService('0135'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__121(): PHPStan\Rules\Classes\MethodTagTraitUseRule - { - return new PHPStan\Rules\Classes\MethodTagTraitUseRule($this->getService('0135')); - } - - - public function createServiceRules__122(): PHPStan\Rules\Classes\PropertyTagRule - { - return new PHPStan\Rules\Classes\PropertyTagRule($this->getService('0137')); - } - - - public function createServiceRules__123(): PHPStan\Rules\Classes\PropertyTagTraitRule - { - return new PHPStan\Rules\Classes\PropertyTagTraitRule($this->getService('0137'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__124(): PHPStan\Rules\Classes\PropertyTagTraitUseRule - { - return new PHPStan\Rules\Classes\PropertyTagTraitUseRule($this->getService('0137')); - } - - - public function createServiceRules__125(): PHPStan\Rules\Classes\MixinTraitRule - { - return new PHPStan\Rules\Classes\MixinTraitRule($this->getService('0136'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__126(): PHPStan\Rules\Classes\MixinTraitUseRule - { - return new PHPStan\Rules\Classes\MixinTraitUseRule($this->getService('0136')); - } - - - public function createServiceRules__127(): PHPStan\Rules\Comparison\UsageOfVoidMatchExpressionRule - { - return new PHPStan\Rules\Comparison\UsageOfVoidMatchExpressionRule; - } - - - public function createServiceRules__128(): PHPStan\Rules\Constants\ValueAssignedToClassConstantRule - { - return new PHPStan\Rules\Constants\ValueAssignedToClassConstantRule; - } - - - public function createServiceRules__129(): PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule - { - return new PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule; - } - - - public function createServiceRules__13(): PHPStan\Rules\Api\ApiTraitUseRule - { - return new PHPStan\Rules\Api\ApiTraitUseRule($this->getService('0128'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__130(): PHPStan\Rules\Functions\IncompatibleArrowFunctionDefaultParameterTypeRule - { - return new PHPStan\Rules\Functions\IncompatibleArrowFunctionDefaultParameterTypeRule; - } - - - public function createServiceRules__131(): PHPStan\Rules\Functions\IncompatibleClosureDefaultParameterTypeRule - { - return new PHPStan\Rules\Functions\IncompatibleClosureDefaultParameterTypeRule; - } - - - public function createServiceRules__132(): PHPStan\Rules\Generics\ClassAncestorsRule - { - return new PHPStan\Rules\Generics\ClassAncestorsRule($this->getService('0151'), $this->getService('0150')); - } - - - public function createServiceRules__133(): PHPStan\Rules\Generics\ClassTemplateTypeRule - { - return new PHPStan\Rules\Generics\ClassTemplateTypeRule($this->getService('0154')); - } - - - public function createServiceRules__134(): PHPStan\Rules\Generics\EnumAncestorsRule - { - return new PHPStan\Rules\Generics\EnumAncestorsRule($this->getService('0151'), $this->getService('0150')); - } - - - public function createServiceRules__135(): PHPStan\Rules\Generics\EnumTemplateTypeRule - { - return new PHPStan\Rules\Generics\EnumTemplateTypeRule; - } - - - public function createServiceRules__136(): PHPStan\Rules\Generics\FunctionTemplateTypeRule - { - return new PHPStan\Rules\Generics\FunctionTemplateTypeRule($this->getService('0182'), $this->getService('0154')); - } - - - public function createServiceRules__137(): PHPStan\Rules\Generics\FunctionSignatureVarianceRule - { - return new PHPStan\Rules\Generics\FunctionSignatureVarianceRule($this->getService('0155')); - } - - - public function createServiceRules__138(): PHPStan\Rules\Generics\InterfaceAncestorsRule - { - return new PHPStan\Rules\Generics\InterfaceAncestorsRule($this->getService('0151'), $this->getService('0150')); - } - - - public function createServiceRules__139(): PHPStan\Rules\Generics\InterfaceTemplateTypeRule - { - return new PHPStan\Rules\Generics\InterfaceTemplateTypeRule($this->getService('0154')); - } - - - public function createServiceRules__14(): PHPStan\Rules\Api\GetTemplateTypeRule - { - return new PHPStan\Rules\Api\GetTemplateTypeRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__140(): PHPStan\Rules\Generics\MethodTemplateTypeRule - { - return new PHPStan\Rules\Generics\MethodTemplateTypeRule($this->getService('0182'), $this->getService('0154')); - } - - - public function createServiceRules__141(): PHPStan\Rules\Generics\MethodTagTemplateTypeRule - { - return new PHPStan\Rules\Generics\MethodTagTemplateTypeRule($this->getService('0153')); - } - - - public function createServiceRules__142(): PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule - { - return new PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule( - $this->getService('0153'), - $this->getService('reflectionProvider') - ); - } - - - public function createServiceRules__143(): PHPStan\Rules\Generics\MethodSignatureVarianceRule - { - return new PHPStan\Rules\Generics\MethodSignatureVarianceRule($this->getService('0155')); - } - - - public function createServiceRules__144(): PHPStan\Rules\Generics\PropertyVarianceRule - { - return new PHPStan\Rules\Generics\PropertyVarianceRule($this->getService('0155')); - } - - - public function createServiceRules__145(): PHPStan\Rules\Generics\TraitTemplateTypeRule - { - return new PHPStan\Rules\Generics\TraitTemplateTypeRule($this->getService('0182'), $this->getService('0154')); - } - - - public function createServiceRules__146(): PHPStan\Rules\Generics\UsedTraitsRule - { - return new PHPStan\Rules\Generics\UsedTraitsRule($this->getService('0182'), $this->getService('0151')); - } - - - public function createServiceRules__147(): PHPStan\Rules\Methods\CallPrivateMethodThroughStaticRule - { - return new PHPStan\Rules\Methods\CallPrivateMethodThroughStaticRule; - } - - - public function createServiceRules__148(): PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule - { - return new PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule; - } - - - public function createServiceRules__149(): PHPStan\Rules\Operators\InvalidBinaryOperationRule - { - return new PHPStan\Rules\Operators\InvalidBinaryOperationRule($this->getService('023'), $this->getService('0179')); - } - - - public function createServiceRules__15(): PHPStan\Rules\Api\NodeConnectingVisitorAttributesRule - { - return new PHPStan\Rules\Api\NodeConnectingVisitorAttributesRule; - } - - - public function createServiceRules__150(): PHPStan\Rules\Operators\InvalidComparisonOperationRule - { - return new PHPStan\Rules\Operators\InvalidComparisonOperationRule($this->getService('0179')); - } - - - public function createServiceRules__151(): PHPStan\Rules\Operators\InvalidUnaryOperationRule - { - return new PHPStan\Rules\Operators\InvalidUnaryOperationRule($this->getService('0179')); - } - - - public function createServiceRules__152(): PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule - { - return new PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule($this->getService('0166')); - } - - - public function createServiceRules__153(): PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule - { - return new PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule($this->getService('0166')); - } - - - public function createServiceRules__154(): PHPStan\Rules\PhpDoc\FunctionAssertRule - { - return new PHPStan\Rules\PhpDoc\FunctionAssertRule($this->getService('0167')); - } - - - public function createServiceRules__155(): PHPStan\Rules\PhpDoc\MethodAssertRule - { - return new PHPStan\Rules\PhpDoc\MethodAssertRule($this->getService('0167')); - } - - - public function createServiceRules__156(): PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule - { - return new PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule($this->getService('0168'), $this->getService('0152')); - } - - - public function createServiceRules__157(): PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule - { - return new PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule($this->getService('0152'), $this->getService('0168')); - } - - - public function createServiceRules__158(): PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule - { - return new PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule($this->getService('0182'), $this->getService('0170')); - } - - - public function createServiceRules__159(): PHPStan\Rules\PhpDoc\IncompatiblePropertyHookPhpDocTypeRule - { - return new PHPStan\Rules\PhpDoc\IncompatiblePropertyHookPhpDocTypeRule($this->getService('0182'), $this->getService('0170')); - } - - - public function createServiceRules__16(): PHPStan\Rules\Api\OldPhpParser4ClassRule - { - return new PHPStan\Rules\Api\OldPhpParser4ClassRule; - } - - - public function createServiceRules__160(): PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule - { - return new PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule( - $this->getService('0152'), - $this->getService('0168'), - $this->getService('0169') - ); - } - - - public function createServiceRules__161(): PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule - { - return new PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule($this->getService('0182')); - } - - - public function createServiceRules__162(): PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule - { - return new PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule($this->getService('0182')); - } - - - public function createServiceRules__163(): PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule - { - return new PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule($this->getService('0171')); - } - - - public function createServiceRules__164(): PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule - { - return new PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule($this->getService('0182'), $this->getService('0171')); - } - - - public function createServiceRules__165(): PHPStan\Rules\Properties\AccessPrivatePropertyThroughStaticRule - { - return new PHPStan\Rules\Properties\AccessPrivatePropertyThroughStaticRule; - } - - - public function createServiceRules__166(): PHPStan\Rules\Classes\RequireImplementsRule - { - return new PHPStan\Rules\Classes\RequireImplementsRule; - } - - - public function createServiceRules__167(): PHPStan\Rules\Classes\RequireExtendsRule - { - return new PHPStan\Rules\Classes\RequireExtendsRule; - } - - - public function createServiceRules__168(): PHPStan\Rules\PhpDoc\RequireImplementsDefinitionClassRule - { - return new PHPStan\Rules\PhpDoc\RequireImplementsDefinitionClassRule; - } - - - public function createServiceRules__169(): PHPStan\Rules\PhpDoc\RequireExtendsDefinitionClassRule - { - return new PHPStan\Rules\PhpDoc\RequireExtendsDefinitionClassRule($this->getService('0384')); - } - - - public function createServiceRules__17(): PHPStan\Rules\Api\PhpStanNamespaceIn3rdPartyPackageRule - { - return new PHPStan\Rules\Api\PhpStanNamespaceIn3rdPartyPackageRule($this->getService('0128')); - } - - - public function createServiceRules__170(): PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule - { - return new PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule( - $this->getService('reflectionProvider'), - $this->getService('0384') - ); - } - - - public function createServiceRules__171(): PHPStan\Rules\Pure\PureFunctionRule - { - return new PHPStan\Rules\Pure\PureFunctionRule($this->getService('0178')); - } - - - public function createServiceRules__172(): PHPStan\Rules\Pure\PureMethodRule - { - return new PHPStan\Rules\Pure\PureMethodRule($this->getService('0178')); - } - - - public function createServiceRules__173(): PHPStan\Rules\Arrays\ArrayDestructuringRule - { - return new PHPStan\Rules\Arrays\ArrayDestructuringRule($this->getService('0179'), $this->getService('0130')); - } - - - public function createServiceRules__174(): PHPStan\Rules\Arrays\ArrayUnpackingRule - { - return new PHPStan\Rules\Arrays\ArrayUnpackingRule($this->getService('026'), $this->getService('0179')); - } - - - public function createServiceRules__175(): PHPStan\Rules\Arrays\IterableInForeachRule - { - return new PHPStan\Rules\Arrays\IterableInForeachRule($this->getService('0179')); - } - - - public function createServiceRules__176(): PHPStan\Rules\Arrays\OffsetAccessAssignmentRule - { - return new PHPStan\Rules\Arrays\OffsetAccessAssignmentRule($this->getService('0179')); - } - - - public function createServiceRules__177(): PHPStan\Rules\Arrays\OffsetAccessAssignOpRule - { - return new PHPStan\Rules\Arrays\OffsetAccessAssignOpRule($this->getService('0179')); - } - - - public function createServiceRules__178(): PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule - { - return new PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule($this->getService('0179')); - } - - - public function createServiceRules__179(): PHPStan\Rules\Arrays\UnpackIterableInArrayRule - { - return new PHPStan\Rules\Arrays\UnpackIterableInArrayRule($this->getService('0179')); - } - - - public function createServiceRules__18(): PHPStan\Rules\Api\RuntimeReflectionInstantiationRule - { - return new PHPStan\Rules\Api\RuntimeReflectionInstantiationRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__180(): PHPStan\Rules\Exceptions\ThrowExprTypeRule - { - return new PHPStan\Rules\Exceptions\ThrowExprTypeRule($this->getService('0179')); - } - - - public function createServiceRules__181(): PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule - { - return new PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule($this->getService('0148')); - } - - - public function createServiceRules__182(): PHPStan\Rules\Functions\ClosureReturnTypeRule - { - return new PHPStan\Rules\Functions\ClosureReturnTypeRule($this->getService('0148')); - } - - - public function createServiceRules__183(): PHPStan\Rules\Functions\ReturnTypeRule - { - return new PHPStan\Rules\Functions\ReturnTypeRule($this->getService('0148')); - } - - - public function createServiceRules__184(): PHPStan\Rules\Generators\YieldTypeRule - { - return new PHPStan\Rules\Generators\YieldTypeRule($this->getService('0179')); - } - - - public function createServiceRules__185(): PHPStan\Rules\Methods\ReturnTypeRule - { - return new PHPStan\Rules\Methods\ReturnTypeRule($this->getService('0148')); - } - - - public function createServiceRules__186(): PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule - { - return new PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule($this->getService('0179')); - } - - - public function createServiceRules__187(): PHPStan\Rules\Properties\GetNonVirtualPropertyHookReadRule - { - return new PHPStan\Rules\Properties\GetNonVirtualPropertyHookReadRule; - } - - - public function createServiceRules__188(): PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule - { - return new PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule($this->getService('0177'), $this->getService('0109')); - } - - - public function createServiceRules__189(): PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule - { - return new PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule($this->getService('0177'), $this->getService('0109')); - } - - - public function createServiceRules__19(): PHPStan\Rules\Api\RuntimeReflectionFunctionRule - { - return new PHPStan\Rules\Api\RuntimeReflectionFunctionRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__190(): PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule - { - return new PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule($this->getService('0177')); - } - - - public function createServiceRules__191(): PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule - { - return new PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule($this->getService('0177')); - } - - - public function createServiceRules__192(): PHPStan\Rules\Properties\SetNonVirtualPropertyHookAssignRule - { - return new PHPStan\Rules\Properties\SetNonVirtualPropertyHookAssignRule; - } - - - public function createServiceRules__193(): PHPStan\Rules\Properties\TypesAssignedToPropertiesRule - { - return new PHPStan\Rules\Properties\TypesAssignedToPropertiesRule($this->getService('0179'), $this->getService('0177')); - } - - - public function createServiceRules__194(): PHPStan\Rules\Variables\ParameterOutAssignedTypeRule - { - return new PHPStan\Rules\Variables\ParameterOutAssignedTypeRule($this->getService('0179')); - } - - - public function createServiceRules__195(): PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule - { - return new PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule($this->getService('0179')); - } - - - public function createServiceRules__196(): PHPStan\Rules\Variables\VariableCloningRule - { - return new PHPStan\Rules\Variables\VariableCloningRule($this->getService('0179')); - } - - - public function createServiceRules__197(): PHPStan\Rules\Arrays\DeadForeachRule - { - return new PHPStan\Rules\Arrays\DeadForeachRule; - } - - - public function createServiceRules__198(): PHPStan\Rules\DeadCode\CallToConstructorStatementWithoutImpurePointsRule - { - return new PHPStan\Rules\DeadCode\CallToConstructorStatementWithoutImpurePointsRule; - } - - - public function createServiceRules__199(): PHPStan\Rules\DeadCode\CallToFunctionStatementWithoutImpurePointsRule - { - return new PHPStan\Rules\DeadCode\CallToFunctionStatementWithoutImpurePointsRule; - } - - - public function createServiceRules__2(): PHPStan\Rules\Debug\DumpTypeRule - { - return new PHPStan\Rules\Debug\DumpTypeRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__20(): PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule - { - return new PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule($this->getService('023')); - } - - - public function createServiceRules__200(): PHPStan\Rules\DeadCode\CallToMethodStatementWithoutImpurePointsRule - { - return new PHPStan\Rules\DeadCode\CallToMethodStatementWithoutImpurePointsRule; - } - - - public function createServiceRules__201(): PHPStan\Rules\DeadCode\CallToStaticMethodStatementWithoutImpurePointsRule - { - return new PHPStan\Rules\DeadCode\CallToStaticMethodStatementWithoutImpurePointsRule; - } - - - public function createServiceRules__202(): PHPStan\Rules\DeadCode\NoopRule - { - return new PHPStan\Rules\DeadCode\NoopRule($this->getService('023')); - } - - - public function createServiceRules__203(): PHPStan\Rules\DeadCode\UnreachableStatementRule - { - return new PHPStan\Rules\DeadCode\UnreachableStatementRule; - } - - - public function createServiceRules__204(): PHPStan\Rules\DeadCode\UnusedPrivateConstantRule - { - return new PHPStan\Rules\DeadCode\UnusedPrivateConstantRule($this->getService('0164')); - } - - - public function createServiceRules__205(): PHPStan\Rules\DeadCode\UnusedPrivateMethodRule - { - return new PHPStan\Rules\DeadCode\UnusedPrivateMethodRule($this->getService('0165')); - } - - - public function createServiceRules__206(): PHPStan\Rules\Exceptions\OverwrittenExitPointByFinallyRule - { - return new PHPStan\Rules\Exceptions\OverwrittenExitPointByFinallyRule; - } - - - public function createServiceRules__207(): PHPStan\Rules\Functions\CallToFunctionStatementWithoutSideEffectsRule - { - return new PHPStan\Rules\Functions\CallToFunctionStatementWithoutSideEffectsRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__208(): PHPStan\Rules\Functions\UselessFunctionReturnValueRule - { - return new PHPStan\Rules\Functions\UselessFunctionReturnValueRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__209(): PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule - { - return new PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__21(): PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule - { - return new PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule; - } - - - public function createServiceRules__210(): PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule - { - return new PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule($this->getService('0179')); - } - - - public function createServiceRules__211(): PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule - { - return new PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule( - $this->getService('0179'), - $this->getService('reflectionProvider') - ); - } - - - public function createServiceRules__212(): PHPStan\Rules\Methods\NullsafeMethodCallRule - { - return new PHPStan\Rules\Methods\NullsafeMethodCallRule; - } - - - public function createServiceRules__213(): PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule; - } - - - public function createServiceRules__214(): PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule; - } - - - public function createServiceRules__215(): PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule; - } - - - public function createServiceRules__216(): PHPStan\Rules\TooWideTypehints\TooWideFunctionParameterOutTypeRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideFunctionParameterOutTypeRule($this->getService('0181')); - } - - - public function createServiceRules__217(): PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule($this->getService('0181')); - } - - - public function createServiceRules__218(): PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule - { - return new PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule($this->getService('0175'), $this->getService('0177')); - } - - - public function createServiceRules__219(): PHPStan\Rules\Traits\NotAnalysedTraitRule - { - return new PHPStan\Rules\Traits\NotAnalysedTraitRule; - } - - - public function createServiceRules__22(): PHPStan\Rules\Cast\UnsetCastRule - { - return new PHPStan\Rules\Cast\UnsetCastRule($this->getService('026')); - } - - - public function createServiceRules__220(): PHPStan\Rules\DateTimeInstantiationRule - { - return new PHPStan\Rules\DateTimeInstantiationRule; - } - - - public function createServiceRules__221(): PHPStan\Rules\Functions\CallUserFuncRule - { - return new PHPStan\Rules\Functions\CallUserFuncRule($this->getService('reflectionProvider'), $this->getService('0146')); - } - - - public function createServiceRules__222(): PHPStan\Rules\Functions\ParameterCastableToStringRule - { - return new PHPStan\Rules\Functions\ParameterCastableToStringRule( - $this->getService('reflectionProvider'), - $this->getService('0149') - ); - } - - - public function createServiceRules__223(): PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule - { - return new PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule( - $this->getService('reflectionProvider'), - $this->getService('0149') - ); - } - - - public function createServiceRules__224(): PHPStan\Rules\Functions\SortParameterCastableToStringRule - { - return new PHPStan\Rules\Functions\SortParameterCastableToStringRule( - $this->getService('reflectionProvider'), - $this->getService('0149') - ); - } - - - public function createServiceRules__225(): PHPStan\Rules\Regexp\RegularExpressionQuotingRule - { - return new PHPStan\Rules\Regexp\RegularExpressionQuotingRule($this->getService('reflectionProvider'), $this->getService('0276')); - } - - - public function createServiceRules__226(): Larastan\Larastan\Rules\UselessConstructs\NoUselessWithFunctionCallsRule - { - return new Larastan\Larastan\Rules\UselessConstructs\NoUselessWithFunctionCallsRule; - } - - - public function createServiceRules__227(): Larastan\Larastan\Rules\UselessConstructs\NoUselessValueFunctionCallsRule - { - return new Larastan\Larastan\Rules\UselessConstructs\NoUselessValueFunctionCallsRule; - } - - - public function createServiceRules__228(): Larastan\Larastan\Rules\DeferrableServiceProviderMissingProvidesRule - { - return new Larastan\Larastan\Rules\DeferrableServiceProviderMissingProvidesRule; - } - - - public function createServiceRules__229(): Larastan\Larastan\Rules\ConsoleCommand\UndefinedArgumentOrOptionRule - { - return new Larastan\Larastan\Rules\ConsoleCommand\UndefinedArgumentOrOptionRule($this->getService('0533')); - } - - - public function createServiceRules__23(): PHPStan\Rules\Classes\AllowedSubTypesRule - { - return new PHPStan\Rules\Classes\AllowedSubTypesRule; - } - - - public function createServiceRules__230(): PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule - { - return new PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule( - $this->getService('reflectionProvider'), - $this->getService('0539') - ); - } - - - public function createServiceRules__231(): PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule - { - return new PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule( - $this->getService('reflectionProvider'), - $this->getService('0179'), - $this->getService('0539') - ); - } - - - public function createServiceRules__232(): PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule - { - return new PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule( - $this->getService('reflectionProvider'), - $this->getService('0539') - ); - } - - - public function createServiceRules__233(): PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule - { - return new PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule( - $this->getService('reflectionProvider'), - $this->getService('0539') - ); - } - - - public function createServiceRules__234(): PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule - { - return new PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule( - $this->getService('reflectionProvider'), - $this->getService('0179'), - $this->getService('0539') - ); - } - - - public function createServiceRules__235(): PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule - { - return new PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule( - $this->getService('reflectionProvider'), - $this->getService('0179'), - $this->getService('0539') - ); - } - - - public function createServiceRules__236(): PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule - { - return new PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule( - $this->getService('reflectionProvider'), - $this->getService('0539') - ); - } - - - public function createServiceRules__237(): PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule - { - return new PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule( - $this->getService('reflectionProvider'), - $this->getService('0539') - ); - } - - - public function createServiceRules__238(): PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule - { - return new PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule( - $this->getService('reflectionProvider'), - $this->getService('0539') - ); - } - - - public function createServiceRules__239(): PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule - { - return new PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__24(): PHPStan\Rules\Classes\ClassAttributesRule - { - return new PHPStan\Rules\Classes\ClassAttributesRule($this->getService('0129')); - } - - - public function createServiceRules__240(): PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule - { - return new PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule( - $this->getService('reflectionProvider'), - $this->getService('0179'), - $this->getService('0539') - ); - } - - - public function createServiceRules__241(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule - { - return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule( - $this->getService('0537'), - $this->getService('0539') - ); - } - - - public function createServiceRules__242(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule - { - return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule( - $this->getService('0537'), - $this->getService('0539') - ); - } - - - public function createServiceRules__243(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule - { - return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule( - $this->getService('0537'), - $this->getService('0539') - ); - } - - - public function createServiceRules__244(): PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule - { - return new PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule($this->getService('0539')); - } - - - public function createServiceRules__245(): PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule - { - return new PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule( - $this->getService('reflectionProvider'), - $this->getService('0539') - ); - } - - - public function createServiceRules__246(): PHPStan\Rules\PHPUnit\AssertSameBooleanExpectedRule - { - return new PHPStan\Rules\PHPUnit\AssertSameBooleanExpectedRule; - } - - - public function createServiceRules__247(): PHPStan\Rules\PHPUnit\AssertSameNullExpectedRule - { - return new PHPStan\Rules\PHPUnit\AssertSameNullExpectedRule; - } - - - public function createServiceRules__248(): PHPStan\Rules\PHPUnit\AssertSameWithCountRule - { - return new PHPStan\Rules\PHPUnit\AssertSameWithCountRule; - } - - - public function createServiceRules__249(): PHPStan\Rules\PHPUnit\ClassCoversExistsRule - { - return new PHPStan\Rules\PHPUnit\ClassCoversExistsRule($this->getService('0549'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__25(): PHPStan\Rules\Classes\ClassConstantAttributesRule - { - return new PHPStan\Rules\Classes\ClassConstantAttributesRule($this->getService('0129')); - } - - - public function createServiceRules__250(): PHPStan\Rules\PHPUnit\ClassMethodCoversExistsRule - { - return new PHPStan\Rules\PHPUnit\ClassMethodCoversExistsRule($this->getService('0549'), $this->getService('0182')); - } - - - public function createServiceRules__251(): PHPStan\Rules\PHPUnit\MockMethodCallRule - { - return new PHPStan\Rules\PHPUnit\MockMethodCallRule; - } - - - public function createServiceRules__252(): PHPStan\Rules\PHPUnit\NoMissingSpaceInClassAnnotationRule - { - return new PHPStan\Rules\PHPUnit\NoMissingSpaceInClassAnnotationRule($this->getService('0550')); - } - - - public function createServiceRules__253(): PHPStan\Rules\PHPUnit\NoMissingSpaceInMethodAnnotationRule - { - return new PHPStan\Rules\PHPUnit\NoMissingSpaceInMethodAnnotationRule($this->getService('0550')); - } - - - public function createServiceRules__254(): PHPStan\Rules\PHPUnit\ShouldCallParentMethodsRule - { - return new PHPStan\Rules\PHPUnit\ShouldCallParentMethodsRule; - } - - - public function createServiceRules__26(): PHPStan\Rules\Classes\ClassConstantRule - { - return new PHPStan\Rules\Classes\ClassConstantRule( - $this->getService('reflectionProvider'), - $this->getService('0179'), - $this->getService('0131'), - $this->getService('026') - ); - } - - - public function createServiceRules__27(): PHPStan\Rules\Classes\DuplicateDeclarationRule - { - return new PHPStan\Rules\Classes\DuplicateDeclarationRule; - } - - - public function createServiceRules__28(): PHPStan\Rules\Classes\EnumSanityRule - { - return new PHPStan\Rules\Classes\EnumSanityRule; - } - - - public function createServiceRules__29(): PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule - { - return new PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule( - $this->getService('0131'), - $this->getService('reflectionProvider') - ); - } - - - public function createServiceRules__3(): PHPStan\Rules\Debug\FileAssertRule - { - return new PHPStan\Rules\Debug\FileAssertRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__30(): PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule - { - return new PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule( - $this->getService('0131'), - $this->getService('reflectionProvider') - ); - } - - - public function createServiceRules__31(): PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule - { - return new PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule( - $this->getService('0131'), - $this->getService('reflectionProvider') - ); - } - - - public function createServiceRules__32(): PHPStan\Rules\Classes\ExistingClassInTraitUseRule - { - return new PHPStan\Rules\Classes\ExistingClassInTraitUseRule($this->getService('0131'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__33(): PHPStan\Rules\Classes\InstantiationRule - { - return new PHPStan\Rules\Classes\InstantiationRule( - $this->getService('reflectionProvider'), - $this->getService('0146'), - $this->getService('0131') - ); - } - - - public function createServiceRules__34(): PHPStan\Rules\Classes\InstantiationCallableRule - { - return new PHPStan\Rules\Classes\InstantiationCallableRule; - } - - - public function createServiceRules__35(): PHPStan\Rules\Classes\InvalidPromotedPropertiesRule - { - return new PHPStan\Rules\Classes\InvalidPromotedPropertiesRule($this->getService('026')); - } - - - public function createServiceRules__36(): PHPStan\Rules\Classes\LocalTypeAliasesRule - { - return new PHPStan\Rules\Classes\LocalTypeAliasesRule($this->getService('0134')); - } - - - public function createServiceRules__37(): PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule - { - return new PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule($this->getService('0134')); - } - - - public function createServiceRules__38(): PHPStan\Rules\Classes\LocalTypeTraitAliasesRule - { - return new PHPStan\Rules\Classes\LocalTypeTraitAliasesRule($this->getService('0134'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__39(): PHPStan\Rules\Classes\NewStaticRule - { - return new PHPStan\Rules\Classes\NewStaticRule; - } - - - public function createServiceRules__4(): PHPStan\Rules\Api\ApiInstanceofRule - { - return new PHPStan\Rules\Api\ApiInstanceofRule($this->getService('0128'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__40(): PHPStan\Rules\Classes\NonClassAttributeClassRule - { - return new PHPStan\Rules\Classes\NonClassAttributeClassRule; - } - - - public function createServiceRules__41(): PHPStan\Rules\Classes\ReadOnlyClassRule - { - return new PHPStan\Rules\Classes\ReadOnlyClassRule($this->getService('026')); - } - - - public function createServiceRules__42(): PHPStan\Rules\Classes\TraitAttributeClassRule - { - return new PHPStan\Rules\Classes\TraitAttributeClassRule; - } - - - public function createServiceRules__43(): PHPStan\Rules\Constants\ClassAsClassConstantRule - { - return new PHPStan\Rules\Constants\ClassAsClassConstantRule; - } - - - public function createServiceRules__44(): PHPStan\Rules\Constants\DynamicClassConstantFetchRule - { - return new PHPStan\Rules\Constants\DynamicClassConstantFetchRule($this->getService('026'), $this->getService('0179')); - } - - - public function createServiceRules__45(): PHPStan\Rules\Constants\FinalConstantRule - { - return new PHPStan\Rules\Constants\FinalConstantRule($this->getService('026')); - } - - - public function createServiceRules__46(): PHPStan\Rules\Constants\MagicConstantContextRule - { - return new PHPStan\Rules\Constants\MagicConstantContextRule; - } - - - public function createServiceRules__47(): PHPStan\Rules\Constants\NativeTypedClassConstantRule - { - return new PHPStan\Rules\Constants\NativeTypedClassConstantRule($this->getService('026')); - } - - - public function createServiceRules__48(): PHPStan\Rules\EnumCases\EnumCaseAttributesRule - { - return new PHPStan\Rules\EnumCases\EnumCaseAttributesRule($this->getService('0129')); - } - - - public function createServiceRules__49(): PHPStan\Rules\Exceptions\NoncapturingCatchRule - { - return new PHPStan\Rules\Exceptions\NoncapturingCatchRule; - } - - - public function createServiceRules__5(): PHPStan\Rules\Api\ApiInstanceofTypeRule - { - return new PHPStan\Rules\Api\ApiInstanceofTypeRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__50(): PHPStan\Rules\Exceptions\ThrowExpressionRule - { - return new PHPStan\Rules\Exceptions\ThrowExpressionRule($this->getService('026')); - } - - - public function createServiceRules__51(): PHPStan\Rules\Functions\ArrowFunctionAttributesRule - { - return new PHPStan\Rules\Functions\ArrowFunctionAttributesRule($this->getService('0129')); - } - - - public function createServiceRules__52(): PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule - { - return new PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule($this->getService('0163')); - } - - - public function createServiceRules__53(): PHPStan\Rules\Functions\ClosureAttributesRule - { - return new PHPStan\Rules\Functions\ClosureAttributesRule($this->getService('0129')); - } - - - public function createServiceRules__54(): PHPStan\Rules\Functions\DefineParametersRule - { - return new PHPStan\Rules\Functions\DefineParametersRule($this->getService('026')); - } - - - public function createServiceRules__55(): PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule - { - return new PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule( - $this->getService('0147'), - $this->getService('026') - ); - } - - - public function createServiceRules__56(): PHPStan\Rules\Functions\CallToFunctionParametersRule - { - return new PHPStan\Rules\Functions\CallToFunctionParametersRule( - $this->getService('reflectionProvider'), - $this->getService('0146') - ); - } - - - public function createServiceRules__57(): PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule - { - return new PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule($this->getService('0147')); - } - - - public function createServiceRules__58(): PHPStan\Rules\Functions\ExistingClassesInTypehintsRule - { - return new PHPStan\Rules\Functions\ExistingClassesInTypehintsRule($this->getService('0147')); - } - - - public function createServiceRules__59(): PHPStan\Rules\Functions\FunctionAttributesRule - { - return new PHPStan\Rules\Functions\FunctionAttributesRule($this->getService('0129')); - } - - - public function createServiceRules__6(): PHPStan\Rules\Api\ApiInstantiationRule - { - return new PHPStan\Rules\Api\ApiInstantiationRule($this->getService('0128'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__60(): PHPStan\Rules\Functions\InnerFunctionRule - { - return new PHPStan\Rules\Functions\InnerFunctionRule; - } - - - public function createServiceRules__61(): PHPStan\Rules\Functions\InvalidLexicalVariablesInClosureUseRule - { - return new PHPStan\Rules\Functions\InvalidLexicalVariablesInClosureUseRule; - } - - - public function createServiceRules__62(): PHPStan\Rules\Functions\ParamAttributesRule - { - return new PHPStan\Rules\Functions\ParamAttributesRule($this->getService('0129')); - } - - - public function createServiceRules__63(): PHPStan\Rules\Functions\PrintfArrayParametersRule - { - return new PHPStan\Rules\Functions\PrintfArrayParametersRule($this->getService('0355'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__64(): PHPStan\Rules\Functions\PrintfParametersRule - { - return new PHPStan\Rules\Functions\PrintfParametersRule($this->getService('0355'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__65(): PHPStan\Rules\Functions\RedefinedParametersRule - { - return new PHPStan\Rules\Functions\RedefinedParametersRule; - } - - - public function createServiceRules__66(): PHPStan\Rules\Functions\ReturnNullsafeByRefRule - { - return new PHPStan\Rules\Functions\ReturnNullsafeByRefRule($this->getService('0163')); - } - - - public function createServiceRules__67(): PHPStan\Rules\Ignore\IgnoreParseErrorRule - { - return new PHPStan\Rules\Ignore\IgnoreParseErrorRule; - } - - - public function createServiceRules__68(): PHPStan\Rules\Functions\VariadicParametersDeclarationRule - { - return new PHPStan\Rules\Functions\VariadicParametersDeclarationRule; - } - - - public function createServiceRules__69(): PHPStan\Rules\Keywords\ContinueBreakInLoopRule - { - return new PHPStan\Rules\Keywords\ContinueBreakInLoopRule; - } - - - public function createServiceRules__7(): PHPStan\Rules\Api\ApiClassConstFetchRule - { - return new PHPStan\Rules\Api\ApiClassConstFetchRule($this->getService('0128'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__70(): PHPStan\Rules\Keywords\DeclareStrictTypesRule - { - return new PHPStan\Rules\Keywords\DeclareStrictTypesRule($this->getService('023')); - } - - - public function createServiceRules__71(): PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule - { - return new PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule; - } - - - public function createServiceRules__72(): PHPStan\Rules\Methods\AbstractPrivateMethodRule - { - return new PHPStan\Rules\Methods\AbstractPrivateMethodRule; - } - - - public function createServiceRules__73(): PHPStan\Rules\Methods\CallMethodsRule - { - return new PHPStan\Rules\Methods\CallMethodsRule($this->getService('0157'), $this->getService('0146')); - } - - - public function createServiceRules__74(): PHPStan\Rules\Methods\CallStaticMethodsRule - { - return new PHPStan\Rules\Methods\CallStaticMethodsRule($this->getService('0158'), $this->getService('0146')); - } - - - public function createServiceRules__75(): PHPStan\Rules\Methods\ConsistentConstructorRule - { - return new PHPStan\Rules\Methods\ConsistentConstructorRule($this->getService('0160'), $this->getService('0161')); - } - - - public function createServiceRules__76(): PHPStan\Rules\Methods\ConstructorReturnTypeRule - { - return new PHPStan\Rules\Methods\ConstructorReturnTypeRule; - } - - - public function createServiceRules__77(): PHPStan\Rules\Methods\ExistingClassesInTypehintsRule - { - return new PHPStan\Rules\Methods\ExistingClassesInTypehintsRule($this->getService('0147')); - } - - - public function createServiceRules__78(): PHPStan\Rules\Methods\FinalPrivateMethodRule - { - return new PHPStan\Rules\Methods\FinalPrivateMethodRule; - } - - - public function createServiceRules__79(): PHPStan\Rules\Methods\MethodCallableRule - { - return new PHPStan\Rules\Methods\MethodCallableRule($this->getService('0157'), $this->getService('026')); - } - - - public function createServiceRules__8(): PHPStan\Rules\Api\ApiClassExtendsRule - { - return new PHPStan\Rules\Api\ApiClassExtendsRule($this->getService('0128'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__80(): PHPStan\Rules\Methods\MethodVisibilityInInterfaceRule - { - return new PHPStan\Rules\Methods\MethodVisibilityInInterfaceRule; - } - - - public function createServiceRules__81(): PHPStan\Rules\Methods\MissingMagicSerializationMethodsRule - { - return new PHPStan\Rules\Methods\MissingMagicSerializationMethodsRule($this->getService('026')); - } - - - public function createServiceRules__82(): PHPStan\Rules\Methods\MissingMethodImplementationRule - { - return new PHPStan\Rules\Methods\MissingMethodImplementationRule; - } - - - public function createServiceRules__83(): PHPStan\Rules\Methods\MethodAttributesRule - { - return new PHPStan\Rules\Methods\MethodAttributesRule($this->getService('0129')); - } - - - public function createServiceRules__84(): PHPStan\Rules\Methods\StaticMethodCallableRule - { - return new PHPStan\Rules\Methods\StaticMethodCallableRule($this->getService('0158'), $this->getService('026')); - } - - - public function createServiceRules__85(): PHPStan\Rules\Names\UsedNamesRule - { - return new PHPStan\Rules\Names\UsedNamesRule; - } - - - public function createServiceRules__86(): PHPStan\Rules\Operators\InvalidAssignVarRule - { - return new PHPStan\Rules\Operators\InvalidAssignVarRule($this->getService('0163')); - } - - - public function createServiceRules__87(): PHPStan\Rules\Operators\InvalidIncDecOperationRule - { - return new PHPStan\Rules\Operators\InvalidIncDecOperationRule($this->getService('0179')); - } - - - public function createServiceRules__88(): PHPStan\Rules\Properties\AccessPropertiesInAssignRule - { - return new PHPStan\Rules\Properties\AccessPropertiesInAssignRule($this->getService('0173')); - } - - - public function createServiceRules__89(): PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule - { - return new PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule($this->getService('0373')); - } - - - public function createServiceRules__9(): PHPStan\Rules\Api\ApiClassImplementsRule - { - return new PHPStan\Rules\Api\ApiClassImplementsRule($this->getService('0128'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__90(): PHPStan\Rules\Properties\ExistingClassesInPropertyHookTypehintsRule - { - return new PHPStan\Rules\Properties\ExistingClassesInPropertyHookTypehintsRule($this->getService('0147')); - } - - - public function createServiceRules__91(): PHPStan\Rules\Properties\InvalidCallablePropertyTypeRule - { - return new PHPStan\Rules\Properties\InvalidCallablePropertyTypeRule; - } - - - public function createServiceRules__92(): PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule - { - return new PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule($this->getService('0109')); - } - - - public function createServiceRules__93(): PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule - { - return new PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule($this->getService('0109')); - } - - - public function createServiceRules__94(): PHPStan\Rules\Properties\PropertiesInInterfaceRule - { - return new PHPStan\Rules\Properties\PropertiesInInterfaceRule($this->getService('026')); - } - - - public function createServiceRules__95(): PHPStan\Rules\Properties\PropertyAssignRefRule - { - return new PHPStan\Rules\Properties\PropertyAssignRefRule($this->getService('026'), $this->getService('0177')); - } - - - public function createServiceRules__96(): PHPStan\Rules\Properties\PropertyAttributesRule - { - return new PHPStan\Rules\Properties\PropertyAttributesRule($this->getService('0129')); - } - - - public function createServiceRules__97(): PHPStan\Rules\Properties\PropertyHookAttributesRule - { - return new PHPStan\Rules\Properties\PropertyHookAttributesRule($this->getService('0129')); - } - - - public function createServiceRules__98(): PHPStan\Rules\Properties\PropertyInClassRule - { - return new PHPStan\Rules\Properties\PropertyInClassRule($this->getService('026')); - } - - - public function createServiceRules__99(): PHPStan\Rules\Properties\ReadOnlyPropertyRule - { - return new PHPStan\Rules\Properties\ReadOnlyPropertyRule($this->getService('026')); - } - - - public function createServiceSimpleRelativePathHelper(): PHPStan\File\RelativePathHelper - { - return new PHPStan\File\SimpleRelativePathHelper('/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'); - } - - - public function createServiceStubFileTypeMapper(): PHPStan\Type\FileTypeMapper - { - return new PHPStan\Type\FileTypeMapper( - $this->getService('0121'), - $this->getService('stubParser'), - $this->getService('038'), - $this->getService('037'), - $this->getService('025'), - $this->getService('084') - ); - } - - - public function createServiceStubParser(): PHPStan\Parser\CachedParser - { - return new PHPStan\Parser\CachedParser($this->getService('freshStubParser'), 256); - } - - - public function createServiceStubPhpDocProvider(): PHPStan\PhpDoc\StubPhpDocProvider - { - return new PHPStan\PhpDoc\StubPhpDocProvider( - $this->getService('stubParser'), - $this->getService('stubFileTypeMapper'), - $this->getService('045') - ); - } - - - public function createServiceTypeSpecifier(): PHPStan\Analyser\TypeSpecifier - { - return $this->getService('typeSpecifierFactory')->create(); - } - - - public function createServiceTypeSpecifierFactory(): PHPStan\Analyser\TypeSpecifierFactory - { - return new PHPStan\Analyser\TypeSpecifierFactory($this->getService('074')); - } - - - public function initialize(): void - { - } - - - protected function getStaticParameters(): array - { - return [ - 'bootstrapFiles' => [ - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionUnionType.php', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionAttribute.php', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/Attribute.php', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionIntersectionType.php', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/bootstrap.php', - ], - 'excludePaths' => ['analyseAndScan' => [], 'analyse' => []], - 'level' => 5, - 'paths' => [ - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/config', - ], - 'exceptions' => [ - 'implicitThrows' => true, - 'reportUncheckedExceptionDeadCatch' => true, - 'uncheckedExceptionRegexes' => ['#^PHPUnit\\\#', '#^SebastianBergmann\\\#'], - 'uncheckedExceptionClasses' => [], - 'checkedExceptionRegexes' => [], - 'checkedExceptionClasses' => [], - 'check' => ['missingCheckedExceptionInThrows' => false, 'tooWideThrowType' => true], - ], - 'featureToggles' => [ - 'bleedingEdge' => false, - 'checkParameterCastableToNumberFunctions' => false, - 'skipCheckGenericClasses' => [], - 'stricterFunctionMap' => false, - 'reportPreciseLineForUnusedFunctionParameter' => false, - ], - 'fileExtensions' => ['php'], - 'checkAdvancedIsset' => true, - 'reportAlwaysTrueInLastCondition' => false, - 'checkClassCaseSensitivity' => true, - 'checkExplicitMixed' => false, - 'checkImplicitMixed' => false, - 'checkFunctionArgumentTypes' => true, - 'checkFunctionNameCase' => false, - 'checkInternalClassCaseSensitivity' => false, - 'checkMissingCallableSignature' => false, - 'checkMissingVarTagTypehint' => false, - 'checkArgumentsPassedByReference' => true, - 'checkMaybeUndefinedVariables' => true, - 'checkNullables' => false, - 'checkThisOnly' => false, - 'checkUnionTypes' => false, - 'checkBenevolentUnionTypes' => false, - 'checkExplicitMixedMissingReturn' => false, - 'checkPhpDocMissingReturn' => true, - 'checkPhpDocMethodSignatures' => true, - 'checkExtraArguments' => true, - 'checkMissingTypehints' => false, - 'checkTooWideReturnTypesInProtectedAndPublicMethods' => false, - 'checkUninitializedProperties' => false, - 'checkDynamicProperties' => false, - 'strictRulesInstalled' => false, - 'deprecationRulesInstalled' => true, - 'inferPrivatePropertyTypeFromConstructor' => false, - 'reportMaybes' => false, - 'reportMaybesInMethodSignatures' => false, - 'reportMaybesInPropertyPhpDocTypes' => false, - 'reportStaticMethodSignatures' => false, - 'reportWrongPhpDocTypeInVarTag' => false, - 'reportAnyTypeWideningInVarTag' => false, - 'reportPossiblyNonexistentGeneralArrayOffset' => false, - 'reportPossiblyNonexistentConstantArrayOffset' => false, - 'checkMissingOverrideMethodAttribute' => false, - 'mixinExcludeClasses' => ['Eloquent'], - 'scanFiles' => [], - 'scanDirectories' => [], - 'parallel' => [ - 'jobSize' => 20, - 'processTimeout' => 600.0, - 'maximumNumberOfProcesses' => 32, - 'minimumNumberOfJobsPerProcess' => 2, - 'buffer' => 134217728, - ], - 'phpVersion' => null, - 'polluteScopeWithLoopInitialAssignments' => true, - 'polluteScopeWithAlwaysIterableForeach' => true, - 'polluteScopeWithBlock' => true, - 'propertyAlwaysWrittenTags' => [], - 'propertyAlwaysReadTags' => [], - 'additionalConstructors' => ['PHPUnit\Framework\TestCase::setUp'], - 'treatPhpDocTypesAsCertain' => true, - 'usePathConstantsAsConstantString' => false, - 'rememberPossiblyImpureFunctionValues' => true, - 'tips' => ['treatPhpDocTypesAsCertain' => true], - 'tipsOfTheDay' => true, - 'reportMagicMethods' => true, - 'reportMagicProperties' => true, - 'ignoreErrors' => [], - 'internalErrorsCountLimit' => 50, - 'cache' => ['nodesByStringCountMax' => 256], - 'reportUnmatchedIgnoredErrors' => true, - 'typeAliases' => [], - 'universalObjectCratesClasses' => [ - 'stdClass', - 'Illuminate\Http\Request', - 'Illuminate\Support\Optional', - 'Pest\Support\HigherOrderTapProxy', - 'Pest\Expectation', - ], - 'stubFiles' => [ - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionAttribute.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionClassConstant.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionFunctionAbstract.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionMethod.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionParameter.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionProperty.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/iterable.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ArrayObject.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/WeakReference.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ext-ds.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ImagickPixel.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/PDOStatement.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/date.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/ibm_db2.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/mysqli.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/zip.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/dom.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/spl.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/SplObjectStorage.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/Exception.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/arrayFunctions.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/core.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/typeCheckingFunctions.stub', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/Countable.stub', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/Assert.stub', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/AssertionFailedError.stub', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/ExpectationFailedException.stub', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/InvocationMocker.stub', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/MockBuilder.stub', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/MockObject.stub', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/Stub.stub', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/stubs/TestCase.stub', - ], - 'earlyTerminatingMethodCalls' => ['PHPUnit\Framework\Assert' => ['fail', 'markTestIncomplete', 'markTestSkipped']], - 'earlyTerminatingFunctionCalls' => ['abort', 'dd'], - 'resultCachePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/build/phpstan/resultCache.php', - 'resultCacheChecksProjectExtensionFilesDependencies' => false, - 'dynamicConstantNames' => [ - 'ICONV_IMPL', - 'LIBXML_VERSION', - 'LIBXML_DOTTED_VERSION', - 'Memcached::HAVE_ENCODING', - 'Memcached::HAVE_IGBINARY', - 'Memcached::HAVE_JSON', - 'Memcached::HAVE_MSGPACK', - 'Memcached::HAVE_SASL', - 'Memcached::HAVE_SESSION', - 'PHP_VERSION', - 'PHP_MAJOR_VERSION', - 'PHP_MINOR_VERSION', - 'PHP_RELEASE_VERSION', - 'PHP_VERSION_ID', - 'PHP_EXTRA_VERSION', - 'PHP_WINDOWS_VERSION_MAJOR', - 'PHP_WINDOWS_VERSION_MINOR', - 'PHP_WINDOWS_VERSION_BUILD', - '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', - 'OPENSSL_VERSION_NUMBER', - 'ZEND_DEBUG_BUILD', - 'ZEND_THREAD_SAFE', - 'E_ALL', - ], - 'customRulesetUsed' => false, - 'editorUrl' => null, - 'editorUrlTitle' => null, - 'errorFormat' => null, - 'sourceLocatorPlaygroundMode' => false, - '__validate' => true, - 'checkOctaneCompatibility' => true, - 'noEnvCallsOutsideOfConfig' => false, - 'noModelMake' => true, - 'noUnnecessaryCollectionCall' => true, - 'noUnnecessaryCollectionCallOnly' => [], - 'noUnnecessaryCollectionCallExcept' => [], - 'squashedMigrationsPath' => [], - 'databaseMigrationsPath' => [], - 'disableMigrationScan' => false, - 'disableSchemaScan' => false, - 'viewDirectories' => [], - 'checkModelProperties' => true, - 'checkUnusedViews' => false, - 'checkModelAppends' => true, - 'phpunit' => ['convertUnionToIntersectionType' => true], - 'tmpDir' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/build/phpstan', - 'debugMode' => true, - 'productionMode' => false, - 'tempDir' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/build/phpstan', - 'rootDir' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan', - 'currentWorkingDirectory' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify', - 'cliArgumentsVariablesRegistered' => true, - 'additionalConfigFiles' => [ - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level5.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../../larastan/larastan/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../../nesbot/carbon/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../../pestphp/pest/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../phpstan-deprecation-rules/rules.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../phpstan-phpunit/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../phpstan-phpunit/rules.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan.neon.dist', - ], - 'allConfigFiles' => [ - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/parametersSchema.neon', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level5.neon', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level4.neon', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level3.neon', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level2.neon', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level1.neon', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level0.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nesbot/carbon/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/pestphp/pest/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/rules.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/extension.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/rules.neon', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan.neon.dist', - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan-baseline.neon', - ], - 'composerAutoloaderProjectPaths' => ['/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify'], - 'generateBaselineFile' => null, - 'usedLevel' => '5', - 'cliAutoloadFile' => null, - ]; - } - - - protected function getDynamicParameter($key) - { - switch (true) { - case $key === 'analysedPaths': return null; - case $key === 'analysedPathsFromConfig': return null; - case $key === 'env': return null; - case $key === 'sysGetTempDir': return sys_get_temp_dir(); - case $key === 'pro': return [ - 'dnsServers' => ['1.1.1.2'], - 'tmpDir' => ($this->getParameter('sysGetTempDir')) . '/phpstan-fixer', - ]; - default: return parent::getDynamicParameter($key); - }; - } - - - public function getParameters(): array - { - array_map(function ($key) { $this->getParameter($key); }, [ - 'analysedPaths', - 'analysedPathsFromConfig', - 'env', - 'sysGetTempDir', - 'pro', - ]); - return parent::getParameters(); - } -} diff --git a/build/phpstan/cache/nette.configurator/Container_c5db45e753.php.lock b/build/phpstan/cache/nette.configurator/Container_c5db45e753.php.lock deleted file mode 100644 index e69de29..0000000 diff --git a/build/phpstan/cache/nette.configurator/Container_c5db45e753.php.meta b/build/phpstan/cache/nette.configurator/Container_c5db45e753.php.meta deleted file mode 100644 index 8400e2b..0000000 --- a/build/phpstan/cache/nette.configurator/Container_c5db45e753.php.meta +++ /dev/null @@ -1 +0,0 @@ -a:6:{i:0;i:1;i:1;a:25:{s:122:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.neon";i:1739979920;s:132:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/parametersSchema.neon";i:1739979920;s:129:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level5.neon";i:1739979920;s:129:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level4.neon";i:1739979920;s:129:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level3.neon";i:1739979920;s:129:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level2.neon";i:1739979920;s:129:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level1.neon";i:1739979920;s:129:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/conf/config.level0.neon";i:1739979920;s:143:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../../larastan/larastan/extension.neon";i:1740065115;s:139:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../../nesbot/carbon/extension.neon";i:1740072818;s:138:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../../pestphp/pest/extension.neon";i:1737641009;s:144:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../phpstan-deprecation-rules/rules.neon";i:1732830996;s:138:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../phpstan-phpunit/extension.neon";i:1737551258;s:134:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/extension-installer/src/../../phpstan-phpunit/rules.neon";i:1737551258;s:80:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan.neon.dist";i:1740672339;s:84:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/phpstan-baseline.neon";i:1740672313;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nette/di/src/DI/Extensions/ServicesExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nette/di/src/DI/Extensions/ParametersExtension.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nette/bootstrap/src/Bootstrap/Extensions/PhpExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nette/di/src/DI/Extensions/ExtensionsExtension.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/RulesExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/ConditionalTagsExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/ParametersSchemaExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/ValidateIgnoredErrorsExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/ValidateExcludePathsExtension.php";i:1739979920;}i:2;a:899:{s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Debug/DebugScopeRule.php";i:1739979920;s:124:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Rule.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Debug/DumpPhpDocTypeRule.php";i:1739979920;s:138:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Debug/DumpTypeRule.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Debug/FileAssertRule.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiInstanceofRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiInstanceofTypeRule.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiInstantiationRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiClassConstFetchRule.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiClassExtendsRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiClassImplementsRule.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiInterfaceExtendsRule.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiMethodCallRule.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiStaticCallRule.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiTraitUseRule.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/GetTemplateTypeRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/NodeConnectingVisitorAttributesRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/OldPhpParser4ClassRule.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/PhpStanNamespaceIn3rdPartyPackageRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/RuntimeReflectionInstantiationRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/RuntimeReflectionFunctionRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/DuplicateKeysInLiteralArraysRule.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/OffsetAccessWithoutDimForReadingRule.php";i:1739979920;s:138:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Cast/UnsetCastRule.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/AllowedSubTypesRule.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ClassAttributesRule.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ClassConstantAttributesRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ClassConstantRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/DuplicateDeclarationRule.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/EnumSanityRule.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ExistingClassesInClassImplementsRule.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ExistingClassesInEnumImplementsRule.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ExistingClassesInInterfaceExtendsRule.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ExistingClassInTraitUseRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/InstantiationRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/InstantiationCallableRule.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/InvalidPromotedPropertiesRule.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/LocalTypeAliasesRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/LocalTypeTraitUseAliasesRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/LocalTypeTraitAliasesRule.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/NewStaticRule.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/NonClassAttributeClassRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ReadOnlyClassRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/TraitAttributeClassRule.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/ClassAsClassConstantRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/DynamicClassConstantFetchRule.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/FinalConstantRule.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/MagicConstantContextRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/NativeTypedClassConstantRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/EnumCases/EnumCaseAttributesRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/NoncapturingCatchRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/ThrowExpressionRule.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ArrowFunctionAttributesRule.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ArrowFunctionReturnNullsafeByRefRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ClosureAttributesRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/DefineParametersRule.php";i:1739979920;s:173:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ExistingClassesInArrowFunctionTypehintsRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/CallToFunctionParametersRule.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ExistingClassesInClosureTypehintsRule.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ExistingClassesInTypehintsRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/FunctionAttributesRule.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/InnerFunctionRule.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/InvalidLexicalVariablesInClosureUseRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ParamAttributesRule.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/PrintfArrayParametersRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/PrintfParametersRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/RedefinedParametersRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ReturnNullsafeByRefRule.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Ignore/IgnoreParseErrorRule.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/VariadicParametersDeclarationRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Keywords/ContinueBreakInLoopRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Keywords/DeclareStrictTypesRule.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/AbstractMethodInNonAbstractClassRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/AbstractPrivateMethodRule.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/CallMethodsRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/CallStaticMethodsRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/ConsistentConstructorRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/ConstructorReturnTypeRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/ExistingClassesInTypehintsRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/FinalPrivateMethodRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodCallableRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodVisibilityInInterfaceRule.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MissingMagicSerializationMethodsRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MissingMethodImplementationRule.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodAttributesRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/StaticMethodCallableRule.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Names/UsedNamesRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Operators/InvalidAssignVarRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Operators/InvalidIncDecOperationRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/AccessPropertiesInAssignRule.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/AccessStaticPropertiesInAssignRule.php";i:1739979920;s:173:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ExistingClassesInPropertyHookTypehintsRule.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/InvalidCallablePropertyTypeRule.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/MissingReadOnlyPropertyAssignRule.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/MissingReadOnlyByPhpDocPropertyAssignRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/PropertiesInInterfaceRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/PropertyAssignRefRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/PropertyAttributesRule.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/PropertyHookAttributesRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/PropertyInClassRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadOnlyPropertyRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadOnlyByPhpDocPropertyRule.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Regexp/RegularExpressionPatternRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Traits/ConflictingTraitConstantsRule.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Traits/ConstantsInTraitsRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Traits/TraitAttributesRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Types/InvalidTypesInUnionRule.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/UnsetRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Whitespace/FileWhitespaceRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/UnusedConstructorParametersRule.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/ConstantRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/UnusedClosureUsesRule.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/EmptyRule.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/IssetRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/NullCoalesceRule.php";i:1739979920;s:133:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Cast/EchoRule.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Cast/InvalidCastRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Cast/InvalidPartOfEncapsedStringRule.php";i:1739979920;s:134:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Cast/PrintRule.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/AccessPrivateConstantThroughStaticRule.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MethodTagRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MethodTagTraitRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MethodTagTraitUseRule.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/PropertyTagRule.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/PropertyTagTraitRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/PropertyTagTraitUseRule.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MixinTraitRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MixinTraitUseRule.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/UsageOfVoidMatchExpressionRule.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/ValueAssignedToClassConstantRule.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/IncompatibleDefaultParameterTypeRule.php";i:1739979920;s:179:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/IncompatibleArrowFunctionDefaultParameterTypeRule.php";i:1739979920;s:173:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/IncompatibleClosureDefaultParameterTypeRule.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/ClassAncestorsRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/ClassTemplateTypeRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/EnumAncestorsRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/EnumTemplateTypeRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/FunctionTemplateTypeRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/FunctionSignatureVarianceRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/InterfaceAncestorsRule.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/InterfaceTemplateTypeRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/MethodTemplateTypeRule.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/MethodTagTemplateTypeRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/MethodTagTemplateTypeTraitRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/MethodSignatureVarianceRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/PropertyVarianceRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/TraitTemplateTypeRule.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/UsedTraitsRule.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/CallPrivateMethodThroughStaticRule.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/IncompatibleDefaultParameterTypeRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Operators/InvalidBinaryOperationRule.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Operators/InvalidComparisonOperationRule.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Operators/InvalidUnaryOperationRule.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/FunctionConditionalReturnTypeRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/MethodConditionalReturnTypeRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/FunctionAssertRule.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/MethodAssertRule.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatibleSelfOutTypeRule.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatibleClassConstantPhpDocTypeRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatiblePhpDocTypeRule.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatiblePropertyHookPhpDocTypeRule.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatiblePropertyPhpDocTypeRule.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/InvalidThrowsPhpDocValueRule.php";i:1739979920;s:174:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatibleParamImmediatelyInvokedCallableRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/VarTagChangedExpressionTypeRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/WrongVariableNameInVarTagRule.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/AccessPrivatePropertyThroughStaticRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/RequireImplementsRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/RequireExtendsRule.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/RequireImplementsDefinitionClassRule.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/RequireExtendsDefinitionClassRule.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/RequireExtendsDefinitionTraitRule.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Pure/PureFunctionRule.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Pure/PureMethodRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/ArrayDestructuringRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/ArrayUnpackingRule.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/IterableInForeachRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/OffsetAccessAssignmentRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/OffsetAccessAssignOpRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/OffsetAccessValueAssignmentRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/UnpackIterableInArrayRule.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/ThrowExprTypeRule.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ArrowFunctionReturnTypeRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ClosureReturnTypeRule.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ReturnTypeRule.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generators/YieldTypeRule.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/ReturnTypeRule.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/DefaultValueTypesAssignedToPropertiesRule.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/GetNonVirtualPropertyHookReadRule.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadOnlyPropertyAssignRule.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadOnlyByPhpDocPropertyAssignRule.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadOnlyPropertyAssignRefRule.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadOnlyByPhpDocPropertyAssignRefRule.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/SetNonVirtualPropertyHookAssignRule.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/TypesAssignedToPropertiesRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/ParameterOutAssignedTypeRule.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/ParameterOutExecutionEndTypeRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/VariableCloningRule.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/DeadForeachRule.php";i:1739979920;s:178:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/CallToConstructorStatementWithoutImpurePointsRule.php";i:1739979920;s:175:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/CallToFunctionStatementWithoutImpurePointsRule.php";i:1739979920;s:173:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/CallToMethodStatementWithoutImpurePointsRule.php";i:1739979920;s:179:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/CallToStaticMethodStatementWithoutImpurePointsRule.php";i:1739979920;s:137:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/NoopRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/UnreachableStatementRule.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/UnusedPrivateConstantRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/UnusedPrivateMethodRule.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/OverwrittenExitPointByFinallyRule.php";i:1739979920;s:175:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/CallToFunctionStatementWithoutSideEffectsRule.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/UselessFunctionReturnValueRule.php";i:1739979920;s:176:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/CallToConstructorStatementWithoutSideEffectsRule.php";i:1739979920;s:171:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/CallToMethodStatementWithoutSideEffectsRule.php";i:1739979920;s:177:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/CallToStaticMethodStatementWithoutSideEffectsRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/NullsafeMethodCallRule.php";i:1739979920;s:175:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideArrowFunctionReturnTypehintRule.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideClosureReturnTypehintRule.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideFunctionReturnTypehintRule.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideFunctionParameterOutTypeRule.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideMethodParameterOutTypeRule.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWidePropertyTypeRule.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Traits/NotAnalysedTraitRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DateTimeInstantiationRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/CallUserFuncRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ParameterCastableToStringRule.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ImplodeParameterCastableToStringRule.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/SortParameterCastableToStringRule.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Regexp/RegularExpressionQuotingRule.php";i:1739979920;s:150:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/UselessConstructs/NoUselessWithFunctionCallsRule.php";i:1740065115;s:151:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/UselessConstructs/NoUselessValueFunctionCallsRule.php";i:1740065115;s:146:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/DeferrableServiceProviderMissingProvidesRule.php";i:1740065115;s:146:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/ConsoleCommand/UndefinedArgumentOrOptionRule.php";i:1740065115;s:159:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/AccessDeprecatedPropertyRule.php";i:1732830996;s:165:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/AccessDeprecatedStaticPropertyRule.php";i:1732830996;s:159:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedFunctionRule.php";i:1732830996;s:157:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedMethodRule.php";i:1732830996;s:163:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedStaticMethodRule.php";i:1732830996;s:170:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/FetchingClassConstOfDeprecatedClassRule.php";i:1732830996;s:158:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/FetchingDeprecatedConstRule.php";i:1732830996;s:170:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/ImplementationOfDeprecatedInterfaceRule.php";i:1732830996;s:163:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InheritanceOfDeprecatedClassRule.php";i:1732830996;s:167:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InheritanceOfDeprecatedInterfaceRule.php";i:1732830996;s:165:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InstantiationOfDeprecatedClassRule.php";i:1732830996;s:175:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInClassMethodSignatureRule.php";i:1732830996;s:171:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInClosureSignatureRule.php";i:1732830996;s:172:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInFunctionSignatureRule.php";i:1732830996;s:156:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/UsageOfDeprecatedCastRule.php";i:1732830996;s:157:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/UsageOfDeprecatedTraitRule.php";i:1732830996;s:145:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/AssertSameBooleanExpectedRule.php";i:1737551258;s:142:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/AssertSameNullExpectedRule.php";i:1737551258;s:139:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/AssertSameWithCountRule.php";i:1737551258;s:137:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/ClassCoversExistsRule.php";i:1737551258;s:143:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/ClassMethodCoversExistsRule.php";i:1737551258;s:134:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/MockMethodCallRule.php";i:1737551258;s:151:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/NoMissingSpaceInClassAnnotationRule.php";i:1737551258;s:152:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/NoMissingSpaceInMethodAnnotationRule.php";i:1737551258;s:143:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/ShouldCallParentMethodsRule.php";i:1737551258;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/BuilderFactory.php";i:1739979920;s:133:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/LexerFactory.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/AnonymousClassVisitor.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ArrayFilterArgVisitor.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ArrayFindArgVisitor.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ArrayMapArgVisitor.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ArrayWalkArgVisitor.php";i:1739979920;s:138:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ClosureArgVisitor.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ClosureBindToVarVisitor.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ClosureBindArgVisitor.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/CurlSetOptArgVisitor.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ArrowFunctionArgVisitor.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/MagicConstantParamDefaultVisitor.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/NewAssignedToPropertyVisitor.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ParentStmtTypesVisitor.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/StandaloneThrowExprVisitor.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/TryCatchTypeVisitor.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/LastConditionVisitor.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/TypeTraverserInstanceofVisitor.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/VariadicMethodsVisitor.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/VariadicFunctionsVisitor.php";i:1739979920;s:138:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Node/Printer/ExprPrinter.php";i:1739979920;s:134:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Node/Printer/Printer.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinter.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Broker/AnonymousClassNameHelper.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Php/PhpVersionFactoryFactory.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Php/ComposerPhpVersionFactory.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/phpstan/phpdoc-parser/src/ParserConfig.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/phpstan/phpdoc-parser/src/Lexer/Lexer.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/phpstan/phpdoc-parser/src/Parser/TypeParser.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/phpstan/phpdoc-parser/src/Parser/ConstExprParser.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/phpstan/phpdoc-parser/src/Parser/PhpDocParser.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/phpstan/phpdoc-parser/src/Printer/Printer.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/PhpDocInheritanceResolver.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/PhpDocNodeResolver.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/PhpDocStringResolver.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/ConstExprNodeResolver.php";i:1739979920;s:137:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/TypeNodeResolver.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/TypeStringResolver.php";i:1739979920;s:134:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/StubValidator.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/SocketSelectStubFilesExtension.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/StubFilesExtension.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/DefaultStubFilesProvider.php";i:1739979920;s:138:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/StubFilesProvider.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/JsonValidateStubFilesExtension.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/ReflectionClassStubFilesExtension.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/ReflectionEnumStubFilesExtension.php";i:1739979920;s:131:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/Analyser.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/AnalyserResultFinalizer.php";i:1739979920;s:135:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/FileAnalyser.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/LocalIgnoresProcessor.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/RuleErrorTransformer.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/Ignore/IgnoredErrorHelper.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/Ignore/IgnoreLexer.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/LazyInternalScopeFactory.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/InternalScopeFactory.php";i:1739979920;s:135:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/ScopeFactory.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/NodeScopeResolver.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/ConstantResolverFactory.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/ResultCache/ResultCacheClearer.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/RicherScopeGetTypeHelper.php";i:1739979920;s:125:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Cache/Cache.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Collectors/RegistryFactory.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/AnalyseApplication.php";i:1739979920;s:136:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/AnalyserRunner.php";i:1739979920;s:138:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/FixerApplication.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Dependency/DependencyResolver.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Dependency/ExportedNodeFetcher.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Dependency/ExportedNodeResolver.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Dependency/ExportedNodeVisitor.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Nette/NetteContainer.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Container.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/DerivativeContainerFactory.php";i:1739979920;s:129:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/FileHelper.php";i:1739979920;s:138:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/FileExcluderFactory.php";i:1739979920;s:129:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/FileFinder.php";i:1739979920;s:130:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/FileMonitor.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/DeclarePositionVisitor.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ImmediatelyInvokedClosureVisitor.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parallel/ParallelAnalyser.php";i:1739979920;s:132:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parallel/Scheduler.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Diagnose/DiagnoseExtension.php";i:1739979920;s:136:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Process/CpuCoreCounter.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/AttributeReflectionFactory.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/InitializerExprTypeResolver.php";i:1739979920;s:179:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Annotations/AnnotationsMethodsClassReflectionExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/MethodsClassReflectionExtension.php";i:1739979920;s:182:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Annotations/AnnotationsPropertiesClassReflectionExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/PropertiesClassReflectionExtension.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/CachingVisitor.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/FileNodesFetcher.php";i:1739979920;s:202:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/ComposerJsonAndInstalledJsonSourceLocatorMaker.php";i:1739979920;s:194:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedDirectorySourceLocatorFactory.php";i:1739979920;s:197:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedDirectorySourceLocatorRepository.php";i:1739979920;s:198:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocatorRepository.php";i:1739979920;s:198:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/Type/AdapterReflectionEnumCaseDynamicReturnTypeExtension.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/DynamicMethodReturnTypeExtension.php";i:1739979920;s:194:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/Type/AdapterReflectionEnumDynamicReturnTypeExtension.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ConstructorsHelper.php";i:1739979920;s:187:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/RequireExtension/RequireExtendsMethodsClassReflectionExtension.php";i:1739979920;s:190:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/RequireExtension/RequireExtendsPropertiesClassReflectionExtension.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Mixin/MixinMethodsClassReflectionExtension.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Mixin/MixinPropertiesClassReflectionExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/PhpClassReflectionExtension.php";i:1739979920;s:175:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/Soap/SoapClientMethodsClassReflectionExtension.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/EnumAllowedSubTypesClassReflectionExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/AllowedSubTypesClassReflectionExtension.php";i:1739979920;s:174:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/UniversalObjectCratesClassReflectionExtension.php";i:1739979920;s:185:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/PHPStan/NativeReflectionEnumReturnDynamicReturnTypeExtension.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/SignatureMap/NativeFunctionReflectionProvider.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/SignatureMap/SignatureMapParser.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/SignatureMap/FunctionSignatureMapProvider.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/SignatureMap/SignatureMapProvider.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/SignatureMap/Php8SignatureMapProvider.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/SignatureMap/SignatureMapProviderFactory.php";i:1739979920;s:137:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiRuleHelper.php";i:1739979920;s:135:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/AttributesCheck.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/NonexistentOffsetInArrayDimFetchCheck.php";i:1739979920;s:134:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/ClassNameCheck.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/ClassCaseSensitivityCheck.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/ClassForbiddenNameCheck.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/LocalTypeAliasesCheck.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MethodTagCheck.php";i:1739979920;s:138:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MixinCheck.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/PropertyTagCheck.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ConstantConditionRuleHelper.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ImpossibleCheckTypeHelper.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/DefaultExceptionTypeResolver.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/ExceptionTypeResolver.php";i:1739979920;s:174:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/MissingCheckedExceptionInFunctionThrowsRule.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/MissingCheckedExceptionInMethodThrowsRule.php";i:1739979920;s:178:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/MissingCheckedExceptionInPropertyHookThrowsRule.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/MissingCheckedExceptionInThrowsCheck.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/TooWideThrowTypeCheck.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/FunctionCallParametersCheck.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/FunctionDefinitionCheck.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/FunctionReturnTypeCheck.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/ParameterCastableToStringCheck.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/CrossCheckInterfacesHelper.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/GenericAncestorsCheck.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/GenericObjectTypeCheck.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/MethodTagTemplateTypeCheck.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/TemplateTypeCheck.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/VarianceCheck.php";i:1739979920;s:130:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/IssetCheck.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodCallCheck.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/StaticMethodCallCheck.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodSignatureRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodParameterComparisonHelper.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodVisibilityComparisonHelper.php";i:1739979920;s:140:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/MissingTypehintCheck.php";i:1739979920;s:133:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/NullsafeCheck.php";i:1739979920;s:175:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/LazyAlwaysUsedClassConstantsExtensionProvider.php";i:1739979920;s:171:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/AlwaysUsedClassConstantsExtensionProvider.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/LazyAlwaysUsedMethodExtensionProvider.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/AlwaysUsedMethodExtensionProvider.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/ConditionalReturnTypeRuleHelper.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/AssertRuleHelper.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/UnresolvableTypeHelper.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/GenericCallableRuleHelper.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatiblePhpDocTypeCheck.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/VarTagTypeRuleHelper.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Playground/NeverRuleHelper.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/AccessPropertiesCheck.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/UninitializedPropertyRule.php";i:1739979920;s:171:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/LazyReadWritePropertiesExtensionProvider.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadWritePropertiesExtensionProvider.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/PropertyDescriptor.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/PropertyReflectionFinder.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Pure/FunctionPurityCheck.php";i:1739979920;s:135:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/RuleLevelHelper.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/UnusedFunctionParametersCheck.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideParameterOutTypeCheck.php";i:1739979920;s:133:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/FileTypeMapper.php";i:1739979920;s:136:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/BitwiseFlagHelper.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/AbsFunctionDynamicReturnTypeExtension.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/DynamicFunctionReturnTypeExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArgumentBasedFunctionReturnTypeExtension.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayChangeKeyCaseFunctionReturnTypeExtension.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayIntersectKeyFunctionReturnTypeExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayChunkFunctionReturnTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayColumnFunctionReturnTypeExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayCombineFunctionReturnTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayCurrentDynamicReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFillFunctionReturnTypeExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFillKeysFunctionReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFilterFunctionReturnTypeHelper.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFilterFunctionReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFlipFunctionReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFindFunctionReturnTypeExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFindKeyFunctionReturnTypeExtension.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayKeyDynamicReturnTypeExtension.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayKeyExistsFunctionTypeSpecifyingExtension.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/FunctionTypeSpecifyingExtension.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/TypeSpecifierAwareExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayKeyFirstDynamicReturnTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayKeyLastDynamicReturnTypeExtension.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayKeysFunctionDynamicReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayMapFunctionReturnTypeExtension.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayMergeFunctionDynamicReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayNextDynamicReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayPopFunctionReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayRandFunctionReturnTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayReduceFunctionReturnTypeExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayReplaceFunctionReturnTypeExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayReverseFunctionReturnTypeExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayShiftFunctionReturnTypeExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArraySliceFunctionReturnTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArraySpliceFunctionReturnTypeExtension.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArraySearchFunctionDynamicReturnTypeExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArraySearchFunctionTypeSpecifyingExtension.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayValuesFunctionDynamicReturnTypeExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArraySumFunctionDynamicReturnTypeExtension.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/AssertThrowTypeExtension.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/DynamicFunctionThrowTypeExtension.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/BackedEnumFromMethodDynamicReturnTypeExtension.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/DynamicStaticMethodReturnTypeExtension.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/Base64DecodeDynamicFunctionReturnTypeExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/BcMathStringOrNullReturnTypeExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ClosureBindDynamicReturnTypeExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ClosureBindToDynamicReturnTypeExtension.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ClosureFromCallableDynamicReturnTypeExtension.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/CompactFunctionReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ConstantFunctionReturnTypeExtension.php";i:1739979920;s:137:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ConstantHelper.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/CountFunctionReturnTypeExtension.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/CountCharsFunctionDynamicReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/CountFunctionTypeSpecifyingExtension.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/CurlGetinfoFunctionDynamicReturnTypeExtension.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateFunctionReturnTypeHelper.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateFormatFunctionReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateFormatMethodReturnTypeExtension.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateFunctionReturnTypeExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateIntervalConstructorThrowTypeExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/DynamicStaticMethodThrowTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateIntervalDynamicReturnTypeExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeCreateDynamicReturnTypeExtension.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeDynamicReturnTypeExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeModifyReturnTypeExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeConstructorThrowTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeModifyMethodThrowTypeExtension.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/DynamicMethodThrowTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeSubMethodThrowTypeExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeZoneConstructorThrowTypeExtension.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DsMapDynamicReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DsMapDynamicMethodThrowTypeExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DioStatDynamicFunctionReturnTypeExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ExplodeFunctionDynamicReturnTypeExtension.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/FilterFunctionReturnTypeHelper.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/FilterInputDynamicReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/FilterVarDynamicReturnTypeExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/FilterVarArrayDynamicReturnTypeExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GetCalledClassDynamicReturnTypeExtension.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GetClassDynamicReturnTypeExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GetDebugTypeFunctionReturnTypeExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GetDefinedVarsFunctionReturnTypeExtension.php";i:1739979920;s:171:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GetParentClassDynamicFunctionReturnTypeExtension.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GettypeFunctionReturnTypeExtension.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GettimeofdayDynamicFunctionReturnTypeExtension.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/HashFunctionsReturnTypeExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/HighlightStringDynamicReturnTypeExtension.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IntdivThrowTypeExtension.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IniGetReturnTypeExtension.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/JsonThrowTypeExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/OpenSslEncryptParameterOutTypeExtension.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/FunctionParameterOutTypeExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ParseStrParameterOutTypeExtension.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PregMatchTypeSpecifyingExtension.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PregMatchParameterOutTypeExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PregReplaceCallbackClosureTypeExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/FunctionParameterClosureTypeExtension.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/RegexArrayShapeMatcher.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Regex/RegexGroupParser.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Regex/RegexExpressionHelper.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReflectionClassConstructorThrowTypeExtension.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReflectionFunctionConstructorThrowTypeExtension.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReflectionMethodConstructorThrowTypeExtension.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReflectionPropertyConstructorThrowTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrContainingTypeSpecifyingExtension.php";i:1739979920;s:171:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SimpleXMLElementClassPropertyReflectionExtension.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SimpleXMLElementConstructorThrowTypeExtension.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StatDynamicReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MethodExistsTypeSpecifyingExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PropertyExistsTypeSpecifyingExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MinMaxFunctionReturnTypeExtension.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/NumberFormatFunctionDynamicReturnTypeExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PathinfoFunctionDynamicReturnTypeExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PregFilterFunctionReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PregSplitDynamicReturnTypeExtension.php";i:1739979920;s:173:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReflectionClassIsSubclassOfTypeSpecifyingExtension.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/MethodTypeSpecifyingExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReplaceFunctionsDynamicReturnTypeExtension.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayPointerFunctionsDynamicReturnTypeExtension.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/LtrimFunctionReturnTypeExtension.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MbFunctionsReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MbFunctionsReturnTypeExtensionTrait.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MbConvertEncodingFunctionReturnTypeExtension.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MbSubstituteCharacterDynamicReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MbStrlenFunctionReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MicrotimeFunctionReturnTypeExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/HrtimeFunctionReturnTypeExtension.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ImplodeFunctionReturnTypeExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/NonEmptyStringFunctionsReturnTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SetTypeFunctionTypeSpecifyingExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrCaseFunctionsReturnTypeExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrlenFunctionReturnTypeExtension.php";i:1739979920;s:171:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrIncrementDecrementFunctionReturnTypeExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrPadFunctionReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrRepeatFunctionReturnTypeExtension.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SubstrDynamicReturnTypeExtension.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ThrowableReturnTypeExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ParseUrlFunctionDynamicReturnTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/TriggerErrorDynamicReturnTypeExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/TrimFunctionDynamicReturnTypeExtension.php";i:1739979920;s:171:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/VersionCompareFunctionDynamicReturnTypeExtension.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PowFunctionReturnTypeExtension.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/RoundFunctionReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrtotimeFunctionReturnTypeExtension.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/RandomIntFunctionReturnTypeExtension.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/RangeFunctionReturnTypeExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/AssertFunctionTypeSpecifyingExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ClassExistsFunctionTypeSpecifyingExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ClassImplementsFunctionReturnTypeExtension.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DefineConstantTypeSpecifyingExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DefinedConstantTypeSpecifyingExtension.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/FunctionExistsFunctionTypeSpecifyingExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/InArrayFunctionTypeSpecifyingExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IsArrayFunctionTypeSpecifyingExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IsCallableFunctionTypeSpecifyingExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IsIterableFunctionTypeSpecifyingExtension.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IsSubclassOfFunctionTypeSpecifyingExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IteratorToArrayFunctionReturnTypeExtension.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IsAFunctionTypeSpecifyingExtension.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IsAFunctionTypeSpecifyingHelper.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/CtypeDigitFunctionTypeSpecifyingExtension.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/JsonThrowOnErrorDynamicReturnTypeExtension.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/TypeSpecifyingFunctionsDynamicReturnTypeExtension.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SimpleXMLElementAsXMLMethodReturnTypeExtension.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SimpleXMLElementXpathMethodReturnTypeExtension.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrSplitFunctionReturnTypeExtension.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrTokFunctionReturnTypeExtension.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SprintfFunctionDynamicReturnTypeExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SscanfFunctionDynamicReturnTypeExtension.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrvalFamilyFunctionReturnTypeExtension.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrWordCountFunctionDynamicReturnTypeExtension.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/XMLReaderOpenReturnTypeExtension.php";i:1739979920;s:171:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReflectionGetAttributesMethodReturnTypeExtension.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DatePeriodConstructorReturnTypeExtension.php";i:1739979920;s:137:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/ClosureTypeFactory.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/Constant/OversizedArrayBuilder.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/PrintfHelper.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/TypeSpecifierFactory.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/ParentDirectoryRelativePathHelper.php";i:1739979920;s:137:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/RelativePathHelper.php";i:1739979920;s:136:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Cache/FileCacheStorage.php";i:1739979920;s:132:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Cache/CacheStorage.php";i:1739979920;s:131:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/RichParser.php";i:1739979920;s:127:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/Parser.php";i:1739979920;s:135:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/CleaningParser.php";i:1739979920;s:133:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/SimpleParser.php";i:1739979920;s:133:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/CachedParser.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/PhpParserDecorator.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/Parser.php";i:1739979920;s:137:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/PhpParserFactory.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/ParserAbstract.php";i:1739979920;s:132:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/LazyRegistry.php";i:1739979920;s:128:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Registry.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/StubPhpDocProvider.php";i:1739979920;s:169:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ReflectionProvider/ReflectionProviderFactory.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ReflectionProvider.php";i:1739979920;s:178:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/Reflector/DefaultReflector.php";i:1739979920;s:171:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/Reflector/Reflector.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/Reflector/MemoizingReflector.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/BetterReflectionProvider.php";i:1739979920;s:178:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/BetterReflectionSourceLocatorFactory.php";i:1739979920;s:189:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceStubber/PhpStormStubsSourceStubberFactory.php";i:1739979920;s:206:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/PhpStormStubsSourceStubber.php";i:1739979920;s:193:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/SourceStubber.php";i:1739979920;s:186:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceStubber/ReflectionSourceStubberFactory.php";i:1739979920;s:203:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/ReflectionSourceStubber.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/Parser/Php8.php";i:1739979920;s:138:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/PathRoutingParser.php";i:1739979920;s:131:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Parser/StubParser.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Diagnose/PHPStanDiagnoseExtension.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/CiDetectedErrorFormatter.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/ErrorFormatter.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/RawErrorFormatter.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/TableErrorFormatter.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/CheckstyleErrorFormatter.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/JsonErrorFormatter.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/JunitErrorFormatter.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/GitlabErrorFormatter.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/GithubErrorFormatter.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/TeamcityErrorFormatter.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ExistingClassInClassExtendsRule.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ExistingClassInInstanceOfRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/CaughtExceptionExistenceRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/CallToNonExistentFunctionRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/OverridingConstantRule.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/OverridingMethodRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Missing/MissingReturnRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Namespaces/ExistingNamesInGroupUseRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Namespaces/ExistingNamesInUseRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/AccessPropertiesRule.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/AccessStaticPropertiesRule.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ExistingClassesInPropertiesRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/FunctionCallableRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/OverridingPropertyRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/SetPropertyHookParameterRule.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/WritingToReadOnlyPropertiesRule.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadingWriteOnlyPropertiesRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/CompactVariablesRule.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/DefinedVariableRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Keywords/RequireFileExistsRule.php";i:1739979920;s:137:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MixinRule.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/RequireExtendsCheck.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/RequireImplementsDefinitionTraitRule.php";i:1739979920;s:147:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/CallCallablesRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/InvalidPhpDocTagValueRule.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/InvalidPhpDocVarTagTypeRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/InvalidPHPStanDocTagRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/InvalidKeyInArrayDimFetchRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/InvalidKeyInArrayItemRule.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/NonexistentOffsetInArrayDimFetchRule.php";i:1739979920;s:175:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/ThrowsVoidFunctionWithExplicitThrowPointRule.php";i:1739979920;s:173:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/ThrowsVoidMethodWithExplicitThrowPointRule.php";i:1739979920;s:179:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/ThrowsVoidPropertyHookWithExplicitThrowPointRule.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generators/YieldFromTypeRule.php";i:1739979920;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generators/YieldInGeneratorRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ImpossibleInstanceOfRule.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/BooleanAndConstantConditionRule.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/BooleanOrConstantConditionRule.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/BooleanNotConstantConditionRule.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/ConstructorWithoutImpurePointsCollector.php";i:1739979920;s:134:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Collectors/Collector.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/PossiblyPureNewCollector.php";i:1739979920;s:165:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/FunctionWithoutImpurePointsCollector.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/PossiblyPureFuncCallCollector.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/MethodWithoutImpurePointsCollector.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/PossiblyPureMethodCallCollector.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/PossiblyPureStaticCallCollector.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/UnusedPrivatePropertyRule.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/DoWhileLoopConstantConditionRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ElseIfConstantConditionRule.php";i:1739979920;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/IfConstantConditionRule.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ImpossibleCheckTypeFunctionCallRule.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ImpossibleCheckTypeMethodCallRule.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ImpossibleCheckTypeStaticMethodCallRule.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/LogicalXorConstantConditionRule.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/MatchExpressionRule.php";i:1739979920;s:177:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/NumberComparisonOperatorsConstantConditionRule.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/StrictComparisonOfDifferentTypesRule.php";i:1739979920;s:158:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ConstantLooseComparisonRule.php";i:1739979920;s:167:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/TernaryOperatorConstantConditionRule.php";i:1739979920;s:164:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/WhileLoopAlwaysFalseConditionRule.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/WhileLoopAlwaysTrueConditionRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/TooWideFunctionThrowTypeRule.php";i:1739979920;s:157:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/TooWideMethodThrowTypeRule.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/TooWidePropertyHookThrowTypeRule.php";i:1739979920;s:168:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideMethodReturnTypehintRule.php";i:1739979920;s:156:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/NullsafePropertyFetchRule.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Traits/TraitDeclarationCollector.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Traits/TraitUseCollector.php";i:1739979920;s:161:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/CatchWithUnthrownExceptionRule.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/RandomIntParametersRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ArrayFilterRule.php";i:1739979920;s:145:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ArrayValuesRule.php";i:1739979920;s:159:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ParameterCastableToNumberRule.php";i:1739979920;s:134:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/RelationForwardsCallsExtension.php";i:1740065115;s:131:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/ModelForwardsCallsExtension.php";i:1740065115;s:141:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/EloquentBuilderForwardsCallsExtension.php";i:1740065115;s:132:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/HigherOrderTapProxyExtension.php";i:1740065115;s:139:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/HigherOrderCollectionProxyExtension.php";i:1740065115;s:142:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/StorageMethodsClassReflectionExtension.php";i:1740065115;s:113:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/Extension.php";i:1740065115;s:147:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/ModelFactoryMethodsClassReflectionExtension.php";i:1740065115;s:151:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/RedirectResponseMethodsClassReflectionExtension.php";i:1740065115;s:140:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/MacroMethodsClassReflectionExtension.php";i:1740065115;s:117:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Concerns/HasContainer.php";i:1740065115;s:143:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/ViewWithMethodsClassReflectionExtension.php";i:1740065115;s:129:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Properties/ModelAccessorExtension.php";i:1740065115;s:129:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Properties/ModelPropertyExtension.php";i:1740065115;s:150:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Properties/HigherOrderCollectionProxyPropertyExtension.php";i:1740065115;s:136:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/HigherOrderTapProxyExtension.php";i:1740065115;s:160:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ContainerArrayAccessDynamicMethodReturnTypeExtension.php";i:1740065115;s:130:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Properties/ModelRelationsExtension.php";i:1740065115;s:149:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ModelOnlyDynamicMethodReturnTypeExtension.php";i:1740065115;s:158:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ModelFactoryDynamicStaticMethodReturnTypeExtension.php";i:1740065115;s:151:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ModelDynamicStaticMethodReturnTypeExtension.php";i:1740065115;s:141:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/AppMakeDynamicReturnTypeExtension.php";i:1740065115;s:121:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/AuthExtension.php";i:1740065115;s:119:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Concerns/LoadsAuthModel.php";i:1740065115;s:151:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/GuardDynamicStaticMethodReturnTypeExtension.php";i:1740065115;s:128:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/AuthManagerExtension.php";i:1740065115;s:121:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/DateExtension.php";i:1740065115;s:122:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/GuardExtension.php";i:1740065115;s:128:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/RequestFileExtension.php";i:1740065115;s:129:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/RequestRouteExtension.php";i:1740065115;s:128:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/RequestUserExtension.php";i:1740065115;s:132:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/EloquentBuilderExtension.php";i:1740065115;s:129:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/RelationFindExtension.php";i:1740065115;s:135:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/RelationCollectionExtension.php";i:1740065115;s:126:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ModelFindExtension.php";i:1740065115;s:133:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/BuilderModelFindExtension.php";i:1740065115;s:125:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/TestCaseExtension.php";i:1740065115;s:120:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Support/CollectionHelper.php";i:1740065115;s:129:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/AuthExtension.php";i:1740065115;s:132:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/CollectExtension.php";i:1740065115;s:136:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/NowAndTodayExtension.php";i:1740065115;s:133:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/ResponseExtension.php";i:1740065115;s:134:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/ValidatorExtension.php";i:1740065115;s:132:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/LiteralExtension.php";i:1740065115;s:156:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/CollectionFilterRejectDynamicReturnTypeExtension.php";i:1740065115;s:156:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/CollectionWhereNotNullDynamicReturnTypeExtension.php";i:1740065115;s:153:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/NewModelQueryDynamicMethodReturnTypeExtension.php";i:1740065115;s:147:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/FactoryDynamicMethodReturnTypeExtension.php";i:1740065115;s:140:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Types/AbortIfFunctionTypeSpecifyingExtension.php";i:1740065115;s:128:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/AppExtension.php";i:1740065115;s:130:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/ValueExtension.php";i:1740065115;s:128:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/StrExtension.php";i:1740065115;s:128:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/Helpers/TapExtension.php";i:1740065115;s:153:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/StorageDynamicStaticMethodReturnTypeExtension.php";i:1740065115;s:152:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Types/GenericEloquentCollectionTypeNodeResolverExtension.php";i:1740065115;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/TypeNodeResolverExtension.php";i:1739979920;s:137:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Types/ViewStringTypeNodeResolverExtension.php";i:1740065115;s:125:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/OctaneCompatibilityRule.php";i:1740065115;s:131:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/NoEnvCallsOutsideOfConfigRule.php";i:1740065115;s:117:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/NoModelMakeRule.php";i:1740065115;s:133:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/NoUnnecessaryCollectionCallRule.php";i:1740065115;s:118:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/ModelAppendsRule.php";i:1740065115;s:149:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Types/GenericEloquentBuilderTypeNodeResolverExtension.php";i:1740065115;s:141:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/AppEnvironmentReturnTypeExtension.php";i:1740065115;s:154:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Types/ModelProperty/ModelPropertyTypeNodeResolverExtension.php";i:1740065115;s:122:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Properties/MigrationHelper.php";i:1740065115;s:130:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Properties/SquashedMigrationHelper.php";i:1740065115;s:122:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Properties/ModelCastHelper.php";i:1740065115;s:126:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Properties/ModelPropertyHelper.php";i:1740065115;s:117:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/ModelRuleHelper.php";i:1740065115;s:117:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Methods/BuilderHelper.php";i:1740065115;s:123:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/RelationExistenceRule.php";i:1740065115;s:162:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/CheckDispatchArgumentTypesCompatibleWithClassConstructorRule.php";i:1740065115;s:150:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Properties/Schema/PhpMyAdminDataTypeToPhpTypeConverter.php";i:1740065115;s:122:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/LarastanStubFilesExtension.php";i:1740065115;s:117:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Rules/UnusedViewsRule.php";i:1740065115;s:132:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Collectors/UsedViewFunctionCollector.php";i:1740065115;s:129:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Collectors/UsedEmailViewCollector.php";i:1740065115;s:128:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Collectors/UsedViewMakeCollector.php";i:1740065115;s:134:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Collectors/UsedViewFacadeMakeCollector.php";i:1740065115;s:135:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Collectors/UsedRouteFacadeViewCollector.php";i:1740065115;s:137:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Collectors/UsedViewInAnotherViewCollector.php";i:1740065115;s:118:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Support/ViewFileHelper.php";i:1740065115;s:149:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ApplicationMakeDynamicReturnTypeExtension.php";i:1740065115;s:147:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ContainerMakeDynamicReturnTypeExtension.php";i:1740065115;s:157:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ConsoleCommand/ArgumentDynamicReturnTypeExtension.php";i:1740065115;s:160:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ConsoleCommand/HasArgumentDynamicReturnTypeExtension.php";i:1740065115;s:155:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ConsoleCommand/OptionDynamicReturnTypeExtension.php";i:1740065115;s:158:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/ConsoleCommand/HasOptionDynamicReturnTypeExtension.php";i:1740065115;s:140:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/TranslatorGetReturnTypeExtension.php";i:1740065115;s:138:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/TransHelperReturnTypeExtension.php";i:1740065115;s:149:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/DoubleUnderscoreHelperReturnTypeExtension.php";i:1740065115;s:121:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/ReturnTypes/AppMakeHelper.php";i:1740065115;s:131:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Internal/ConsoleApplicationResolver.php";i:1740065115;s:129:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Internal/ConsoleApplicationHelper.php";i:1740065115;s:136:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/src/Support/HigherOrderCollectionProxyHelper.php";i:1740065115;s:121:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/nesbot/carbon/src/Carbon/PHPStan/MacroExtension.php";i:1740072818;s:152:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/DeprecatedClassHelper.php";i:1732830996;s:167:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/DependencyInjection/LazyDeprecatedScopeResolverProvider.php";i:1732830996;s:161:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/DefaultDeprecatedScopeResolver.php";i:1732830996;s:154:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/DeprecatedScopeResolver.php";i:1732830996;s:162:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallWithDeprecatedIniOptionRule.php";i:1732830996;s:152:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/PhpDoc/PHPUnit/MockObjectTypeNodeResolverExtension.php";i:1737551258;s:151:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/TypeNodeResolverAwareExtension.php";i:1739979920;s:159:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/Assert/AssertFunctionTypeSpecifyingExtension.php";i:1737551258;s:157:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/Assert/AssertMethodTypeSpecifyingExtension.php";i:1737551258;s:163:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/Assert/AssertStaticMethodTypeSpecifyingExtension.php";i:1737551258;s:154:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/StaticMethodTypeSpecifyingExtension.php";i:1739979920;s:157:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/InvocationMockerDynamicReturnTypeExtension.php";i:1737551258;s:152:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/MockBuilderDynamicReturnTypeExtension.php";i:1737551258;s:151:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Type/PHPUnit/MockObjectDynamicReturnTypeExtension.php";i:1737551258;s:128:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/CoversHelper.php";i:1737551258;s:132:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/AnnotationHelper.php";i:1737551258;s:141:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/DataProviderHelperFactory.php";i:1737551258;s:143:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/DataProviderDeclarationRule.php";i:1737551258;s:145:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/AssertEqualsIsDiscouragedRule.php";i:1737551258;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nette/di/src/DI/Container.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nette/utils/src/SmartObject.php";i:1739979920;s:135:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Php/PhpVersionFactory.php";i:1739979920;s:128:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Php/PhpVersion.php";i:1739979920;s:166:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/LazyTypeNodeResolverExtensionRegistryProvider.php";i:1739979920;s:162:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/TypeNodeResolverExtensionRegistryProvider.php";i:1739979920;s:139:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/ConstantResolver.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/ResultCache/ResultCacheManager.php";i:1739979920;s:160:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/ResultCache/ResultCacheManagerFactory.php";i:1739979920;s:133:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Collectors/Registry.php";i:1739979920;s:152:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/MemoizingContainer.php";i:1739979920;s:189:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Reflection/LazyClassReflectionExtensionRegistryProvider.php";i:1739979920;s:185:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Reflection/ClassReflectionExtensionRegistryProvider.php";i:1739979920;s:185:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/LazyDynamicReturnTypeExtensionRegistryProvider.php";i:1739979920;s:181:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/DynamicReturnTypeExtensionRegistryProvider.php";i:1739979920;s:176:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/LazyParameterOutTypeExtensionProvider.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/ParameterOutTypeExtensionProvider.php";i:1739979920;s:190:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/LazyExpressionTypeResolverExtensionRegistryProvider.php";i:1739979920;s:186:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/ExpressionTypeResolverExtensionRegistryProvider.php";i:1739979920;s:190:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/LazyOperatorTypeSpecifyingExtensionRegistryProvider.php";i:1739979920;s:186:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/OperatorTypeSpecifyingExtensionRegistryProvider.php";i:1739979920;s:176:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/LazyDynamicThrowTypeExtensionProvider.php";i:1739979920;s:172:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/DynamicThrowTypeExtensionProvider.php";i:1739979920;s:180:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/LazyParameterClosureTypeExtensionProvider.php";i:1739979920;s:176:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/ParameterClosureTypeExtensionProvider.php";i:1739979920;s:131:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/FileExcluder.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/FileExcluderRawFactory.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/PhpFunctionReflection.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/FunctionReflection.php";i:1739979920;s:150:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/FunctionReflectionFactory.php";i:1739979920;s:185:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedPsrAutoloaderLocator.php";i:1739979920;s:184:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/SourceLocator/Type/SourceLocator.php";i:1739979920;s:192:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedPsrAutoloaderLocatorFactory.php";i:1739979920;s:188:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocator.php";i:1739979920;s:195:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocatorFactory.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/PhpMethodReflection.php";i:1739979920;s:149:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ExtendedMethodReflection.php";i:1739979920;s:146:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ClassMemberReflection.php";i:1739979920;s:141:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/MethodReflection.php";i:1739979920;s:155:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/PhpMethodReflectionFactory.php";i:1739979920;s:174:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ReflectionProvider/LazyReflectionProviderProvider.php";i:1739979920;s:170:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ReflectionProvider/ReflectionProviderProvider.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/UsefulTypeAliasResolver.php";i:1739979920;s:136:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/TypeAliasResolver.php";i:1739979920;s:148:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/LazyTypeAliasResolverProvider.php";i:1739979920;s:144:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Type/TypeAliasResolverProvider.php";i:1739979920;s:136:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/TypeSpecifier.php";i:1739979920;s:142:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/FuzzyRelativePathHelper.php";i:1739979920;s:143:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/File/SimpleRelativePathHelper.php";i:1739979920;s:153:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/Lexer.php";i:1739979920;s:173:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/BetterReflectionProviderFactory.php";i:1739979920;s:163:"phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php";i:1739979920;s:152:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/DeprecatedScopeHelper.php";i:1732830996;s:134:"/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan-phpunit/src/Rules/PHPUnit/DataProviderHelper.php";i:1737551258;}i:3;a:885:{i:0;s:34:"PHPStan\Rules\Debug\DebugScopeRule";i:1;s:18:"PHPStan\Rules\Rule";i:2;s:38:"PHPStan\Rules\Debug\DumpPhpDocTypeRule";i:3;s:32:"PHPStan\Rules\Debug\DumpTypeRule";i:4;s:34:"PHPStan\Rules\Debug\FileAssertRule";i:5;s:35:"PHPStan\Rules\Api\ApiInstanceofRule";i:6;s:39:"PHPStan\Rules\Api\ApiInstanceofTypeRule";i:7;s:38:"PHPStan\Rules\Api\ApiInstantiationRule";i:8;s:40:"PHPStan\Rules\Api\ApiClassConstFetchRule";i:9;s:37:"PHPStan\Rules\Api\ApiClassExtendsRule";i:10;s:40:"PHPStan\Rules\Api\ApiClassImplementsRule";i:11;s:41:"PHPStan\Rules\Api\ApiInterfaceExtendsRule";i:12;s:35:"PHPStan\Rules\Api\ApiMethodCallRule";i:13;s:35:"PHPStan\Rules\Api\ApiStaticCallRule";i:14;s:33:"PHPStan\Rules\Api\ApiTraitUseRule";i:15;s:37:"PHPStan\Rules\Api\GetTemplateTypeRule";i:16;s:53:"PHPStan\Rules\Api\NodeConnectingVisitorAttributesRule";i:17;s:40:"PHPStan\Rules\Api\OldPhpParser4ClassRule";i:18;s:55:"PHPStan\Rules\Api\PhpStanNamespaceIn3rdPartyPackageRule";i:19;s:52:"PHPStan\Rules\Api\RuntimeReflectionInstantiationRule";i:20;s:47:"PHPStan\Rules\Api\RuntimeReflectionFunctionRule";i:21;s:53:"PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule";i:22;s:57:"PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule";i:23;s:32:"PHPStan\Rules\Cast\UnsetCastRule";i:24;s:41:"PHPStan\Rules\Classes\AllowedSubTypesRule";i:25;s:41:"PHPStan\Rules\Classes\ClassAttributesRule";i:26;s:49:"PHPStan\Rules\Classes\ClassConstantAttributesRule";i:27;s:39:"PHPStan\Rules\Classes\ClassConstantRule";i:28;s:46:"PHPStan\Rules\Classes\DuplicateDeclarationRule";i:29;s:36:"PHPStan\Rules\Classes\EnumSanityRule";i:30;s:58:"PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule";i:31;s:57:"PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule";i:32;s:59:"PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule";i:33;s:49:"PHPStan\Rules\Classes\ExistingClassInTraitUseRule";i:34;s:39:"PHPStan\Rules\Classes\InstantiationRule";i:35;s:47:"PHPStan\Rules\Classes\InstantiationCallableRule";i:36;s:51:"PHPStan\Rules\Classes\InvalidPromotedPropertiesRule";i:37;s:42:"PHPStan\Rules\Classes\LocalTypeAliasesRule";i:38;s:50:"PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule";i:39;s:47:"PHPStan\Rules\Classes\LocalTypeTraitAliasesRule";i:40;s:35:"PHPStan\Rules\Classes\NewStaticRule";i:41;s:48:"PHPStan\Rules\Classes\NonClassAttributeClassRule";i:42;s:39:"PHPStan\Rules\Classes\ReadOnlyClassRule";i:43;s:45:"PHPStan\Rules\Classes\TraitAttributeClassRule";i:44;s:48:"PHPStan\Rules\Constants\ClassAsClassConstantRule";i:45;s:53:"PHPStan\Rules\Constants\DynamicClassConstantFetchRule";i:46;s:41:"PHPStan\Rules\Constants\FinalConstantRule";i:47;s:48:"PHPStan\Rules\Constants\MagicConstantContextRule";i:48;s:52:"PHPStan\Rules\Constants\NativeTypedClassConstantRule";i:49;s:46:"PHPStan\Rules\EnumCases\EnumCaseAttributesRule";i:50;s:46:"PHPStan\Rules\Exceptions\NoncapturingCatchRule";i:51;s:44:"PHPStan\Rules\Exceptions\ThrowExpressionRule";i:52;s:51:"PHPStan\Rules\Functions\ArrowFunctionAttributesRule";i:53;s:60:"PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule";i:54;s:45:"PHPStan\Rules\Functions\ClosureAttributesRule";i:55;s:44:"PHPStan\Rules\Functions\DefineParametersRule";i:56;s:67:"PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule";i:57;s:52:"PHPStan\Rules\Functions\CallToFunctionParametersRule";i:58;s:61:"PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule";i:59;s:54:"PHPStan\Rules\Functions\ExistingClassesInTypehintsRule";i:60;s:46:"PHPStan\Rules\Functions\FunctionAttributesRule";i:61;s:41:"PHPStan\Rules\Functions\InnerFunctionRule";i:62;s:63:"PHPStan\Rules\Functions\InvalidLexicalVariablesInClosureUseRule";i:63;s:43:"PHPStan\Rules\Functions\ParamAttributesRule";i:64;s:49:"PHPStan\Rules\Functions\PrintfArrayParametersRule";i:65;s:44:"PHPStan\Rules\Functions\PrintfParametersRule";i:66;s:47:"PHPStan\Rules\Functions\RedefinedParametersRule";i:67;s:47:"PHPStan\Rules\Functions\ReturnNullsafeByRefRule";i:68;s:41:"PHPStan\Rules\Ignore\IgnoreParseErrorRule";i:69;s:57:"PHPStan\Rules\Functions\VariadicParametersDeclarationRule";i:70;s:46:"PHPStan\Rules\Keywords\ContinueBreakInLoopRule";i:71;s:45:"PHPStan\Rules\Keywords\DeclareStrictTypesRule";i:72;s:58:"PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule";i:73;s:47:"PHPStan\Rules\Methods\AbstractPrivateMethodRule";i:74;s:37:"PHPStan\Rules\Methods\CallMethodsRule";i:75;s:43:"PHPStan\Rules\Methods\CallStaticMethodsRule";i:76;s:47:"PHPStan\Rules\Methods\ConsistentConstructorRule";i:77;s:47:"PHPStan\Rules\Methods\ConstructorReturnTypeRule";i:78;s:52:"PHPStan\Rules\Methods\ExistingClassesInTypehintsRule";i:79;s:44:"PHPStan\Rules\Methods\FinalPrivateMethodRule";i:80;s:40:"PHPStan\Rules\Methods\MethodCallableRule";i:81;s:53:"PHPStan\Rules\Methods\MethodVisibilityInInterfaceRule";i:82;s:58:"PHPStan\Rules\Methods\MissingMagicSerializationMethodsRule";i:83;s:53:"PHPStan\Rules\Methods\MissingMethodImplementationRule";i:84;s:42:"PHPStan\Rules\Methods\MethodAttributesRule";i:85;s:46:"PHPStan\Rules\Methods\StaticMethodCallableRule";i:86;s:33:"PHPStan\Rules\Names\UsedNamesRule";i:87;s:44:"PHPStan\Rules\Operators\InvalidAssignVarRule";i:88;s:50:"PHPStan\Rules\Operators\InvalidIncDecOperationRule";i:89;s:53:"PHPStan\Rules\Properties\AccessPropertiesInAssignRule";i:90;s:59:"PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule";i:91;s:67:"PHPStan\Rules\Properties\ExistingClassesInPropertyHookTypehintsRule";i:92;s:56:"PHPStan\Rules\Properties\InvalidCallablePropertyTypeRule";i:93;s:58:"PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule";i:94;s:66:"PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule";i:95;s:50:"PHPStan\Rules\Properties\PropertiesInInterfaceRule";i:96;s:46:"PHPStan\Rules\Properties\PropertyAssignRefRule";i:97;s:47:"PHPStan\Rules\Properties\PropertyAttributesRule";i:98;s:51:"PHPStan\Rules\Properties\PropertyHookAttributesRule";i:99;s:44:"PHPStan\Rules\Properties\PropertyInClassRule";i:100;s:45:"PHPStan\Rules\Properties\ReadOnlyPropertyRule";i:101;s:53:"PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyRule";i:102;s:49:"PHPStan\Rules\Regexp\RegularExpressionPatternRule";i:103;s:50:"PHPStan\Rules\Traits\ConflictingTraitConstantsRule";i:104;s:42:"PHPStan\Rules\Traits\ConstantsInTraitsRule";i:105;s:40:"PHPStan\Rules\Traits\TraitAttributesRule";i:106;s:43:"PHPStan\Rules\Types\InvalidTypesInUnionRule";i:107;s:33:"PHPStan\Rules\Variables\UnsetRule";i:108;s:43:"PHPStan\Rules\Whitespace\FileWhitespaceRule";i:109;s:53:"PHPStan\Rules\Classes\UnusedConstructorParametersRule";i:110;s:36:"PHPStan\Rules\Constants\ConstantRule";i:111;s:45:"PHPStan\Rules\Functions\UnusedClosureUsesRule";i:112;s:33:"PHPStan\Rules\Variables\EmptyRule";i:113;s:33:"PHPStan\Rules\Variables\IssetRule";i:114;s:40:"PHPStan\Rules\Variables\NullCoalesceRule";i:115;s:27:"PHPStan\Rules\Cast\EchoRule";i:116;s:34:"PHPStan\Rules\Cast\InvalidCastRule";i:117;s:50:"PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule";i:118;s:28:"PHPStan\Rules\Cast\PrintRule";i:119;s:60:"PHPStan\Rules\Classes\AccessPrivateConstantThroughStaticRule";i:120;s:35:"PHPStan\Rules\Classes\MethodTagRule";i:121;s:40:"PHPStan\Rules\Classes\MethodTagTraitRule";i:122;s:43:"PHPStan\Rules\Classes\MethodTagTraitUseRule";i:123;s:37:"PHPStan\Rules\Classes\PropertyTagRule";i:124;s:42:"PHPStan\Rules\Classes\PropertyTagTraitRule";i:125;s:45:"PHPStan\Rules\Classes\PropertyTagTraitUseRule";i:126;s:36:"PHPStan\Rules\Classes\MixinTraitRule";i:127;s:39:"PHPStan\Rules\Classes\MixinTraitUseRule";i:128;s:55:"PHPStan\Rules\Comparison\UsageOfVoidMatchExpressionRule";i:129;s:56:"PHPStan\Rules\Constants\ValueAssignedToClassConstantRule";i:130;s:60:"PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule";i:131;s:73:"PHPStan\Rules\Functions\IncompatibleArrowFunctionDefaultParameterTypeRule";i:132;s:67:"PHPStan\Rules\Functions\IncompatibleClosureDefaultParameterTypeRule";i:133;s:41:"PHPStan\Rules\Generics\ClassAncestorsRule";i:134;s:44:"PHPStan\Rules\Generics\ClassTemplateTypeRule";i:135;s:40:"PHPStan\Rules\Generics\EnumAncestorsRule";i:136;s:43:"PHPStan\Rules\Generics\EnumTemplateTypeRule";i:137;s:47:"PHPStan\Rules\Generics\FunctionTemplateTypeRule";i:138;s:52:"PHPStan\Rules\Generics\FunctionSignatureVarianceRule";i:139;s:45:"PHPStan\Rules\Generics\InterfaceAncestorsRule";i:140;s:48:"PHPStan\Rules\Generics\InterfaceTemplateTypeRule";i:141;s:45:"PHPStan\Rules\Generics\MethodTemplateTypeRule";i:142;s:48:"PHPStan\Rules\Generics\MethodTagTemplateTypeRule";i:143;s:53:"PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule";i:144;s:50:"PHPStan\Rules\Generics\MethodSignatureVarianceRule";i:145;s:43:"PHPStan\Rules\Generics\PropertyVarianceRule";i:146;s:44:"PHPStan\Rules\Generics\TraitTemplateTypeRule";i:147;s:37:"PHPStan\Rules\Generics\UsedTraitsRule";i:148;s:56:"PHPStan\Rules\Methods\CallPrivateMethodThroughStaticRule";i:149;s:58:"PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule";i:150;s:50:"PHPStan\Rules\Operators\InvalidBinaryOperationRule";i:151;s:54:"PHPStan\Rules\Operators\InvalidComparisonOperationRule";i:152;s:49:"PHPStan\Rules\Operators\InvalidUnaryOperationRule";i:153;s:54:"PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule";i:154;s:52:"PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule";i:155;s:39:"PHPStan\Rules\PhpDoc\FunctionAssertRule";i:156;s:37:"PHPStan\Rules\PhpDoc\MethodAssertRule";i:157;s:48:"PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule";i:158;s:60:"PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule";i:159;s:47:"PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule";i:160;s:59:"PHPStan\Rules\PhpDoc\IncompatiblePropertyHookPhpDocTypeRule";i:161;s:55:"PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule";i:162;s:49:"PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule";i:163;s:68:"PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule";i:164;s:52:"PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule";i:165;s:50:"PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule";i:166;s:63:"PHPStan\Rules\Properties\AccessPrivatePropertyThroughStaticRule";i:167;s:43:"PHPStan\Rules\Classes\RequireImplementsRule";i:168;s:40:"PHPStan\Rules\Classes\RequireExtendsRule";i:169;s:57:"PHPStan\Rules\PhpDoc\RequireImplementsDefinitionClassRule";i:170;s:54:"PHPStan\Rules\PhpDoc\RequireExtendsDefinitionClassRule";i:171;s:54:"PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule";i:172;s:35:"PHPStan\Rules\Pure\PureFunctionRule";i:173;s:33:"PHPStan\Rules\Pure\PureMethodRule";i:174;s:43:"PHPStan\Rules\Arrays\ArrayDestructuringRule";i:175;s:39:"PHPStan\Rules\Arrays\ArrayUnpackingRule";i:176;s:42:"PHPStan\Rules\Arrays\IterableInForeachRule";i:177;s:47:"PHPStan\Rules\Arrays\OffsetAccessAssignmentRule";i:178;s:45:"PHPStan\Rules\Arrays\OffsetAccessAssignOpRule";i:179;s:52:"PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule";i:180;s:46:"PHPStan\Rules\Arrays\UnpackIterableInArrayRule";i:181;s:42:"PHPStan\Rules\Exceptions\ThrowExprTypeRule";i:182;s:51:"PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule";i:183;s:45:"PHPStan\Rules\Functions\ClosureReturnTypeRule";i:184;s:38:"PHPStan\Rules\Functions\ReturnTypeRule";i:185;s:38:"PHPStan\Rules\Generators\YieldTypeRule";i:186;s:36:"PHPStan\Rules\Methods\ReturnTypeRule";i:187;s:66:"PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule";i:188;s:58:"PHPStan\Rules\Properties\GetNonVirtualPropertyHookReadRule";i:189;s:51:"PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule";i:190;s:59:"PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule";i:191;s:54:"PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule";i:192;s:62:"PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule";i:193;s:60:"PHPStan\Rules\Properties\SetNonVirtualPropertyHookAssignRule";i:194;s:54:"PHPStan\Rules\Properties\TypesAssignedToPropertiesRule";i:195;s:52:"PHPStan\Rules\Variables\ParameterOutAssignedTypeRule";i:196;s:56:"PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule";i:197;s:43:"PHPStan\Rules\Variables\VariableCloningRule";i:198;s:36:"PHPStan\Rules\Arrays\DeadForeachRule";i:199;s:72:"PHPStan\Rules\DeadCode\CallToConstructorStatementWithoutImpurePointsRule";i:200;s:69:"PHPStan\Rules\DeadCode\CallToFunctionStatementWithoutImpurePointsRule";i:201;s:67:"PHPStan\Rules\DeadCode\CallToMethodStatementWithoutImpurePointsRule";i:202;s:73:"PHPStan\Rules\DeadCode\CallToStaticMethodStatementWithoutImpurePointsRule";i:203;s:31:"PHPStan\Rules\DeadCode\NoopRule";i:204;s:47:"PHPStan\Rules\DeadCode\UnreachableStatementRule";i:205;s:48:"PHPStan\Rules\DeadCode\UnusedPrivateConstantRule";i:206;s:46:"PHPStan\Rules\DeadCode\UnusedPrivateMethodRule";i:207;s:58:"PHPStan\Rules\Exceptions\OverwrittenExitPointByFinallyRule";i:208;s:69:"PHPStan\Rules\Functions\CallToFunctionStatementWithoutSideEffectsRule";i:209;s:54:"PHPStan\Rules\Functions\UselessFunctionReturnValueRule";i:210;s:70:"PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule";i:211;s:65:"PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule";i:212;s:71:"PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule";i:213;s:44:"PHPStan\Rules\Methods\NullsafeMethodCallRule";i:214;s:69:"PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule";i:215;s:63:"PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule";i:216;s:64:"PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule";i:217;s:66:"PHPStan\Rules\TooWideTypehints\TooWideFunctionParameterOutTypeRule";i:218;s:64:"PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule";i:219;s:54:"PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule";i:220;s:41:"PHPStan\Rules\Traits\NotAnalysedTraitRule";i:221;s:39:"PHPStan\Rules\DateTimeInstantiationRule";i:222;s:40:"PHPStan\Rules\Functions\CallUserFuncRule";i:223;s:53:"PHPStan\Rules\Functions\ParameterCastableToStringRule";i:224;s:60:"PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule";i:225;s:57:"PHPStan\Rules\Functions\SortParameterCastableToStringRule";i:226;s:49:"PHPStan\Rules\Regexp\RegularExpressionQuotingRule";i:227;s:72:"Larastan\Larastan\Rules\UselessConstructs\NoUselessWithFunctionCallsRule";i:228;s:73:"Larastan\Larastan\Rules\UselessConstructs\NoUselessValueFunctionCallsRule";i:229;s:68:"Larastan\Larastan\Rules\DeferrableServiceProviderMissingProvidesRule";i:230;s:68:"Larastan\Larastan\Rules\ConsoleCommand\UndefinedArgumentOrOptionRule";i:231;s:55:"PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule";i:232;s:61:"PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule";i:233;s:55:"PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule";i:234;s:53:"PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule";i:235;s:59:"PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule";i:236;s:66:"PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule";i:237;s:54:"PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule";i:238;s:66:"PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule";i:239;s:59:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule";i:240;s:63:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule";i:241;s:61:"PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule";i:242;s:71:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule";i:243;s:67:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule";i:244;s:68:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule";i:245;s:52:"PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule";i:246;s:53:"PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule";i:247;s:51:"PHPStan\Rules\PHPUnit\AssertSameBooleanExpectedRule";i:248;s:48:"PHPStan\Rules\PHPUnit\AssertSameNullExpectedRule";i:249;s:45:"PHPStan\Rules\PHPUnit\AssertSameWithCountRule";i:250;s:43:"PHPStan\Rules\PHPUnit\ClassCoversExistsRule";i:251;s:49:"PHPStan\Rules\PHPUnit\ClassMethodCoversExistsRule";i:252;s:40:"PHPStan\Rules\PHPUnit\MockMethodCallRule";i:253;s:57:"PHPStan\Rules\PHPUnit\NoMissingSpaceInClassAnnotationRule";i:254;s:58:"PHPStan\Rules\PHPUnit\NoMissingSpaceInMethodAnnotationRule";i:255;s:49:"PHPStan\Rules\PHPUnit\ShouldCallParentMethodsRule";i:256;s:24:"PhpParser\BuilderFactory";i:257;s:27:"PHPStan\Parser\LexerFactory";i:258;s:34:"PhpParser\NodeVisitor\NameResolver";i:259;s:29:"PhpParser\NodeVisitorAbstract";i:260;s:21:"PhpParser\NodeVisitor";i:261;s:36:"PHPStan\Parser\AnonymousClassVisitor";i:262;s:36:"PHPStan\Parser\ArrayFilterArgVisitor";i:263;s:34:"PHPStan\Parser\ArrayFindArgVisitor";i:264;s:33:"PHPStan\Parser\ArrayMapArgVisitor";i:265;s:34:"PHPStan\Parser\ArrayWalkArgVisitor";i:266;s:32:"PHPStan\Parser\ClosureArgVisitor";i:267;s:38:"PHPStan\Parser\ClosureBindToVarVisitor";i:268;s:36:"PHPStan\Parser\ClosureBindArgVisitor";i:269;s:35:"PHPStan\Parser\CurlSetOptArgVisitor";i:270;s:38:"PHPStan\Parser\ArrowFunctionArgVisitor";i:271;s:47:"PHPStan\Parser\MagicConstantParamDefaultVisitor";i:272;s:43:"PHPStan\Parser\NewAssignedToPropertyVisitor";i:273;s:37:"PHPStan\Parser\ParentStmtTypesVisitor";i:274;s:41:"PHPStan\Parser\StandaloneThrowExprVisitor";i:275;s:34:"PHPStan\Parser\TryCatchTypeVisitor";i:276;s:35:"PHPStan\Parser\LastConditionVisitor";i:277;s:45:"PHPStan\Parser\TypeTraverserInstanceofVisitor";i:278;s:37:"PHPStan\Parser\VariadicMethodsVisitor";i:279;s:39:"PHPStan\Parser\VariadicFunctionsVisitor";i:280;s:32:"PHPStan\Node\Printer\ExprPrinter";i:281;s:28:"PHPStan\Node\Printer\Printer";i:282;s:32:"PhpParser\PrettyPrinter\Standard";i:283;s:31:"PhpParser\PrettyPrinterAbstract";i:284;s:23:"PhpParser\PrettyPrinter";i:285;s:39:"PHPStan\Broker\AnonymousClassNameHelper";i:286;s:36:"PHPStan\Php\PhpVersionFactoryFactory";i:287;s:37:"PHPStan\Php\ComposerPhpVersionFactory";i:288;s:33:"PHPStan\PhpDocParser\ParserConfig";i:289;s:32:"PHPStan\PhpDocParser\Lexer\Lexer";i:290;s:38:"PHPStan\PhpDocParser\Parser\TypeParser";i:291;s:43:"PHPStan\PhpDocParser\Parser\ConstExprParser";i:292;s:40:"PHPStan\PhpDocParser\Parser\PhpDocParser";i:293;s:36:"PHPStan\PhpDocParser\Printer\Printer";i:294;s:40:"PHPStan\PhpDoc\PhpDocInheritanceResolver";i:295;s:33:"PHPStan\PhpDoc\PhpDocNodeResolver";i:296;s:35:"PHPStan\PhpDoc\PhpDocStringResolver";i:297;s:36:"PHPStan\PhpDoc\ConstExprNodeResolver";i:298;s:31:"PHPStan\PhpDoc\TypeNodeResolver";i:299;s:33:"PHPStan\PhpDoc\TypeStringResolver";i:300;s:28:"PHPStan\PhpDoc\StubValidator";i:301;s:45:"PHPStan\PhpDoc\SocketSelectStubFilesExtension";i:302;s:33:"PHPStan\PhpDoc\StubFilesExtension";i:303;s:39:"PHPStan\PhpDoc\DefaultStubFilesProvider";i:304;s:32:"PHPStan\PhpDoc\StubFilesProvider";i:305;s:45:"PHPStan\PhpDoc\JsonValidateStubFilesExtension";i:306;s:48:"PHPStan\PhpDoc\ReflectionClassStubFilesExtension";i:307;s:47:"PHPStan\PhpDoc\ReflectionEnumStubFilesExtension";i:308;s:25:"PHPStan\Analyser\Analyser";i:309;s:40:"PHPStan\Analyser\AnalyserResultFinalizer";i:310;s:29:"PHPStan\Analyser\FileAnalyser";i:311;s:38:"PHPStan\Analyser\LocalIgnoresProcessor";i:312;s:37:"PHPStan\Analyser\RuleErrorTransformer";i:313;s:42:"PHPStan\Analyser\Ignore\IgnoredErrorHelper";i:314;s:35:"PHPStan\Analyser\Ignore\IgnoreLexer";i:315;s:41:"PHPStan\Analyser\LazyInternalScopeFactory";i:316;s:37:"PHPStan\Analyser\InternalScopeFactory";i:317;s:29:"PHPStan\Analyser\ScopeFactory";i:318;s:34:"PHPStan\Analyser\NodeScopeResolver";i:319;s:40:"PHPStan\Analyser\ConstantResolverFactory";i:320;s:47:"PHPStan\Analyser\ResultCache\ResultCacheClearer";i:321;s:41:"PHPStan\Analyser\RicherScopeGetTypeHelper";i:322;s:19:"PHPStan\Cache\Cache";i:323;s:34:"PHPStan\Collectors\RegistryFactory";i:324;s:34:"PHPStan\Command\AnalyseApplication";i:325;s:30:"PHPStan\Command\AnalyserRunner";i:326;s:32:"PHPStan\Command\FixerApplication";i:327;s:37:"PHPStan\Dependency\DependencyResolver";i:328;s:38:"PHPStan\Dependency\ExportedNodeFetcher";i:329;s:39:"PHPStan\Dependency\ExportedNodeResolver";i:330;s:38:"PHPStan\Dependency\ExportedNodeVisitor";i:331;s:48:"PHPStan\DependencyInjection\Nette\NetteContainer";i:332;s:37:"PHPStan\DependencyInjection\Container";i:333;s:54:"PHPStan\DependencyInjection\DerivativeContainerFactory";i:334;s:23:"PHPStan\File\FileHelper";i:335;s:32:"PHPStan\File\FileExcluderFactory";i:336;s:23:"PHPStan\File\FileFinder";i:337;s:24:"PHPStan\File\FileMonitor";i:338;s:37:"PHPStan\Parser\DeclarePositionVisitor";i:339;s:47:"PHPStan\Parser\ImmediatelyInvokedClosureVisitor";i:340;s:33:"PHPStan\Parallel\ParallelAnalyser";i:341;s:26:"PHPStan\Parallel\Scheduler";i:342;s:34:"PHPStan\Diagnose\DiagnoseExtension";i:343;s:30:"PHPStan\Process\CpuCoreCounter";i:344;s:45:"PHPStan\Reflection\AttributeReflectionFactory";i:345;s:46:"PHPStan\Reflection\InitializerExprTypeResolver";i:346;s:73:"PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension";i:347;s:50:"PHPStan\Reflection\MethodsClassReflectionExtension";i:348;s:76:"PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension";i:349;s:53:"PHPStan\Reflection\PropertiesClassReflectionExtension";i:350;s:64:"PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor";i:351;s:66:"PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher";i:352;s:96:"PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker";i:353;s:88:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory";i:354;s:91:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository";i:355;s:92:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository";i:356;s:92:"PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumCaseDynamicReturnTypeExtension";i:357;s:45:"PHPStan\Type\DynamicMethodReturnTypeExtension";i:358;s:88:"PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumDynamicReturnTypeExtension";i:359;s:37:"PHPStan\Reflection\ConstructorsHelper";i:360;s:81:"PHPStan\Reflection\RequireExtension\RequireExtendsMethodsClassReflectionExtension";i:361;s:84:"PHPStan\Reflection\RequireExtension\RequireExtendsPropertiesClassReflectionExtension";i:362;s:61:"PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension";i:363;s:64:"PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension";i:364;s:50:"PHPStan\Reflection\Php\PhpClassReflectionExtension";i:365;s:69:"PHPStan\Reflection\Php\Soap\SoapClientMethodsClassReflectionExtension";i:366;s:66:"PHPStan\Reflection\Php\EnumAllowedSubTypesClassReflectionExtension";i:367;s:58:"PHPStan\Reflection\AllowedSubTypesClassReflectionExtension";i:368;s:68:"PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension";i:369;s:79:"PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension";i:370;s:64:"PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider";i:371;s:50:"PHPStan\Reflection\SignatureMap\SignatureMapParser";i:372;s:60:"PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider";i:373;s:52:"PHPStan\Reflection\SignatureMap\SignatureMapProvider";i:374;s:56:"PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider";i:375;s:59:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory";i:376;s:31:"PHPStan\Rules\Api\ApiRuleHelper";i:377;s:29:"PHPStan\Rules\AttributesCheck";i:378;s:58:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck";i:379;s:28:"PHPStan\Rules\ClassNameCheck";i:380;s:39:"PHPStan\Rules\ClassCaseSensitivityCheck";i:381;s:37:"PHPStan\Rules\ClassForbiddenNameCheck";i:382;s:43:"PHPStan\Rules\Classes\LocalTypeAliasesCheck";i:383;s:36:"PHPStan\Rules\Classes\MethodTagCheck";i:384;s:32:"PHPStan\Rules\Classes\MixinCheck";i:385;s:38:"PHPStan\Rules\Classes\PropertyTagCheck";i:386;s:52:"PHPStan\Rules\Comparison\ConstantConditionRuleHelper";i:387;s:50:"PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper";i:388;s:53:"PHPStan\Rules\Exceptions\DefaultExceptionTypeResolver";i:389;s:46:"PHPStan\Rules\Exceptions\ExceptionTypeResolver";i:390;s:68:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule";i:391;s:66:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule";i:392;s:72:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInPropertyHookThrowsRule";i:393;s:61:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck";i:394;s:46:"PHPStan\Rules\Exceptions\TooWideThrowTypeCheck";i:395;s:41:"PHPStan\Rules\FunctionCallParametersCheck";i:396;s:37:"PHPStan\Rules\FunctionDefinitionCheck";i:397;s:37:"PHPStan\Rules\FunctionReturnTypeCheck";i:398;s:44:"PHPStan\Rules\ParameterCastableToStringCheck";i:399;s:49:"PHPStan\Rules\Generics\CrossCheckInterfacesHelper";i:400;s:44:"PHPStan\Rules\Generics\GenericAncestorsCheck";i:401;s:45:"PHPStan\Rules\Generics\GenericObjectTypeCheck";i:402;s:49:"PHPStan\Rules\Generics\MethodTagTemplateTypeCheck";i:403;s:40:"PHPStan\Rules\Generics\TemplateTypeCheck";i:404;s:36:"PHPStan\Rules\Generics\VarianceCheck";i:405;s:24:"PHPStan\Rules\IssetCheck";i:406;s:37:"PHPStan\Rules\Methods\MethodCallCheck";i:407;s:43:"PHPStan\Rules\Methods\StaticMethodCallCheck";i:408;s:41:"PHPStan\Rules\Methods\MethodSignatureRule";i:409;s:53:"PHPStan\Rules\Methods\MethodParameterComparisonHelper";i:410;s:54:"PHPStan\Rules\Methods\MethodVisibilityComparisonHelper";i:411;s:34:"PHPStan\Rules\MissingTypehintCheck";i:412;s:27:"PHPStan\Rules\NullsafeCheck";i:413;s:69:"PHPStan\Rules\Constants\LazyAlwaysUsedClassConstantsExtensionProvider";i:414;s:65:"PHPStan\Rules\Constants\AlwaysUsedClassConstantsExtensionProvider";i:415;s:59:"PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider";i:416;s:55:"PHPStan\Rules\Methods\AlwaysUsedMethodExtensionProvider";i:417;s:52:"PHPStan\Rules\PhpDoc\ConditionalReturnTypeRuleHelper";i:418;s:37:"PHPStan\Rules\PhpDoc\AssertRuleHelper";i:419;s:43:"PHPStan\Rules\PhpDoc\UnresolvableTypeHelper";i:420;s:46:"PHPStan\Rules\PhpDoc\GenericCallableRuleHelper";i:421;s:48:"PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck";i:422;s:41:"PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper";i:423;s:40:"PHPStan\Rules\Playground\NeverRuleHelper";i:424;s:46:"PHPStan\Rules\Properties\AccessPropertiesCheck";i:425;s:50:"PHPStan\Rules\Properties\UninitializedPropertyRule";i:426;s:65:"PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider";i:427;s:61:"PHPStan\Rules\Properties\ReadWritePropertiesExtensionProvider";i:428;s:43:"PHPStan\Rules\Properties\PropertyDescriptor";i:429;s:49:"PHPStan\Rules\Properties\PropertyReflectionFinder";i:430;s:38:"PHPStan\Rules\Pure\FunctionPurityCheck";i:431;s:29:"PHPStan\Rules\RuleLevelHelper";i:432;s:43:"PHPStan\Rules\UnusedFunctionParametersCheck";i:433;s:59:"PHPStan\Rules\TooWideTypehints\TooWideParameterOutTypeCheck";i:434;s:27:"PHPStan\Type\FileTypeMapper";i:435;s:30:"PHPStan\Type\BitwiseFlagHelper";i:436;s:54:"PHPStan\Type\Php\AbsFunctionDynamicReturnTypeExtension";i:437;s:47:"PHPStan\Type\DynamicFunctionReturnTypeExtension";i:438;s:57:"PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension";i:439;s:62:"PHPStan\Type\Php\ArrayChangeKeyCaseFunctionReturnTypeExtension";i:440;s:61:"PHPStan\Type\Php\ArrayIntersectKeyFunctionReturnTypeExtension";i:441;s:54:"PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension";i:442;s:55:"PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension";i:443;s:56:"PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension";i:444;s:55:"PHPStan\Type\Php\ArrayCurrentDynamicReturnTypeExtension";i:445;s:53:"PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension";i:446;s:57:"PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension";i:447;s:52:"PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper";i:448;s:55:"PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension";i:449;s:53:"PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension";i:450;s:53:"PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension";i:451;s:56:"PHPStan\Type\Php\ArrayFindKeyFunctionReturnTypeExtension";i:452;s:51:"PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension";i:453;s:62:"PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension";i:454;s:44:"PHPStan\Type\FunctionTypeSpecifyingExtension";i:455;s:44:"PHPStan\Analyser\TypeSpecifierAwareExtension";i:456;s:56:"PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension";i:457;s:55:"PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension";i:458;s:60:"PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension";i:459;s:52:"PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension";i:460;s:61:"PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension";i:461;s:52:"PHPStan\Type\Php\ArrayNextDynamicReturnTypeExtension";i:462;s:52:"PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension";i:463;s:53:"PHPStan\Type\Php\ArrayRandFunctionReturnTypeExtension";i:464;s:55:"PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension";i:465;s:56:"PHPStan\Type\Php\ArrayReplaceFunctionReturnTypeExtension";i:466;s:56:"PHPStan\Type\Php\ArrayReverseFunctionReturnTypeExtension";i:467;s:54:"PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension";i:468;s:54:"PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension";i:469;s:55:"PHPStan\Type\Php\ArraySpliceFunctionReturnTypeExtension";i:470;s:62:"PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension";i:471;s:59:"PHPStan\Type\Php\ArraySearchFunctionTypeSpecifyingExtension";i:472;s:62:"PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension";i:473;s:59:"PHPStan\Type\Php\ArraySumFunctionDynamicReturnTypeExtension";i:474;s:41:"PHPStan\Type\Php\AssertThrowTypeExtension";i:475;s:46:"PHPStan\Type\DynamicFunctionThrowTypeExtension";i:476;s:63:"PHPStan\Type\Php\BackedEnumFromMethodDynamicReturnTypeExtension";i:477;s:51:"PHPStan\Type\DynamicStaticMethodReturnTypeExtension";i:478;s:63:"PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension";i:479;s:54:"PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension";i:480;s:54:"PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension";i:481;s:56:"PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension";i:482;s:62:"PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension";i:483;s:51:"PHPStan\Type\Php\CompactFunctionReturnTypeExtension";i:484;s:52:"PHPStan\Type\Php\ConstantFunctionReturnTypeExtension";i:485;s:31:"PHPStan\Type\Php\ConstantHelper";i:486;s:49:"PHPStan\Type\Php\CountFunctionReturnTypeExtension";i:487;s:61:"PHPStan\Type\Php\CountCharsFunctionDynamicReturnTypeExtension";i:488;s:53:"PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension";i:489;s:62:"PHPStan\Type\Php\CurlGetinfoFunctionDynamicReturnTypeExtension";i:490;s:45:"PHPStan\Type\Php\DateFunctionReturnTypeHelper";i:491;s:54:"PHPStan\Type\Php\DateFormatFunctionReturnTypeExtension";i:492;s:52:"PHPStan\Type\Php\DateFormatMethodReturnTypeExtension";i:493;s:48:"PHPStan\Type\Php\DateFunctionReturnTypeExtension";i:494;s:58:"PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension";i:495;s:50:"PHPStan\Type\DynamicStaticMethodThrowTypeExtension";i:496;s:55:"PHPStan\Type\Php\DateIntervalDynamicReturnTypeExtension";i:497;s:57:"PHPStan\Type\Php\DateTimeCreateDynamicReturnTypeExtension";i:498;s:51:"PHPStan\Type\Php\DateTimeDynamicReturnTypeExtension";i:499;s:50:"PHPStan\Type\Php\DateTimeModifyReturnTypeExtension";i:500;s:54:"PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension";i:501;s:55:"PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension";i:502;s:44:"PHPStan\Type\DynamicMethodThrowTypeExtension";i:503;s:52:"PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension";i:504;s:58:"PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension";i:505;s:48:"PHPStan\Type\Php\DsMapDynamicReturnTypeExtension";i:506;s:53:"PHPStan\Type\Php\DsMapDynamicMethodThrowTypeExtension";i:507;s:58:"PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension";i:508;s:58:"PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension";i:509;s:47:"PHPStan\Type\Php\FilterFunctionReturnTypeHelper";i:510;s:54:"PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension";i:511;s:52:"PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension";i:512;s:57:"PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension";i:513;s:57:"PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension";i:514;s:51:"PHPStan\Type\Php\GetClassDynamicReturnTypeExtension";i:515;s:56:"PHPStan\Type\Php\GetDebugTypeFunctionReturnTypeExtension";i:516;s:58:"PHPStan\Type\Php\GetDefinedVarsFunctionReturnTypeExtension";i:517;s:65:"PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension";i:518;s:51:"PHPStan\Type\Php\GettypeFunctionReturnTypeExtension";i:519;s:63:"PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension";i:520;s:49:"PHPStan\Type\Php\HashFunctionsReturnTypeExtension";i:521;s:58:"PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension";i:522;s:41:"PHPStan\Type\Php\IntdivThrowTypeExtension";i:523;s:42:"PHPStan\Type\Php\IniGetReturnTypeExtension";i:524;s:39:"PHPStan\Type\Php\JsonThrowTypeExtension";i:525;s:56:"PHPStan\Type\Php\OpenSslEncryptParameterOutTypeExtension";i:526;s:46:"PHPStan\Type\FunctionParameterOutTypeExtension";i:527;s:50:"PHPStan\Type\Php\ParseStrParameterOutTypeExtension";i:528;s:49:"PHPStan\Type\Php\PregMatchTypeSpecifyingExtension";i:529;s:51:"PHPStan\Type\Php\PregMatchParameterOutTypeExtension";i:530;s:56:"PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension";i:531;s:50:"PHPStan\Type\FunctionParameterClosureTypeExtension";i:532;s:39:"PHPStan\Type\Php\RegexArrayShapeMatcher";i:533;s:35:"PHPStan\Type\Regex\RegexGroupParser";i:534;s:40:"PHPStan\Type\Regex\RegexExpressionHelper";i:535;s:61:"PHPStan\Type\Php\ReflectionClassConstructorThrowTypeExtension";i:536;s:64:"PHPStan\Type\Php\ReflectionFunctionConstructorThrowTypeExtension";i:537;s:62:"PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension";i:538;s:64:"PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension";i:539;s:53:"PHPStan\Type\Php\StrContainingTypeSpecifyingExtension";i:540;s:65:"PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension";i:541;s:62:"PHPStan\Type\Php\SimpleXMLElementConstructorThrowTypeExtension";i:542;s:47:"PHPStan\Type\Php\StatDynamicReturnTypeExtension";i:543;s:52:"PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension";i:544;s:54:"PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension";i:545;s:50:"PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension";i:546;s:63:"PHPStan\Type\Php\NumberFormatFunctionDynamicReturnTypeExtension";i:547;s:59:"PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension";i:548;s:54:"PHPStan\Type\Php\PregFilterFunctionReturnTypeExtension";i:549;s:52:"PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension";i:550;s:67:"PHPStan\Type\Php\ReflectionClassIsSubclassOfTypeSpecifyingExtension";i:551;s:42:"PHPStan\Type\MethodTypeSpecifyingExtension";i:552;s:59:"PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension";i:553;s:64:"PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension";i:554;s:49:"PHPStan\Type\Php\LtrimFunctionReturnTypeExtension";i:555;s:47:"PHPStan\Type\Php\MbFunctionsReturnTypeExtension";i:556;s:52:"PHPStan\Type\Php\MbFunctionsReturnTypeExtensionTrait";i:557;s:61:"PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension";i:558;s:64:"PHPStan\Type\Php\MbSubstituteCharacterDynamicReturnTypeExtension";i:559;s:52:"PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension";i:560;s:53:"PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension";i:561;s:50:"PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension";i:562;s:51:"PHPStan\Type\Php\ImplodeFunctionReturnTypeExtension";i:563;s:59:"PHPStan\Type\Php\NonEmptyStringFunctionsReturnTypeExtension";i:564;s:55:"PHPStan\Type\Php\SetTypeFunctionTypeSpecifyingExtension";i:565;s:52:"PHPStan\Type\Php\StrCaseFunctionsReturnTypeExtension";i:566;s:50:"PHPStan\Type\Php\StrlenFunctionReturnTypeExtension";i:567;s:65:"PHPStan\Type\Php\StrIncrementDecrementFunctionReturnTypeExtension";i:568;s:50:"PHPStan\Type\Php\StrPadFunctionReturnTypeExtension";i:569;s:53:"PHPStan\Type\Php\StrRepeatFunctionReturnTypeExtension";i:570;s:49:"PHPStan\Type\Php\SubstrDynamicReturnTypeExtension";i:571;s:45:"PHPStan\Type\Php\ThrowableReturnTypeExtension";i:572;s:59:"PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension";i:573;s:55:"PHPStan\Type\Php\TriggerErrorDynamicReturnTypeExtension";i:574;s:55:"PHPStan\Type\Php\TrimFunctionDynamicReturnTypeExtension";i:575;s:65:"PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension";i:576;s:47:"PHPStan\Type\Php\PowFunctionReturnTypeExtension";i:577;s:49:"PHPStan\Type\Php\RoundFunctionReturnTypeExtension";i:578;s:53:"PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension";i:579;s:53:"PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension";i:580;s:49:"PHPStan\Type\Php\RangeFunctionReturnTypeExtension";i:581;s:54:"PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension";i:582;s:59:"PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension";i:583;s:59:"PHPStan\Type\Php\ClassImplementsFunctionReturnTypeExtension";i:584;s:54:"PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension";i:585;s:55:"PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension";i:586;s:62:"PHPStan\Type\Php\FunctionExistsFunctionTypeSpecifyingExtension";i:587;s:55:"PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension";i:588;s:55:"PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension";i:589;s:58:"PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension";i:590;s:58:"PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension";i:591;s:60:"PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension";i:592;s:59:"PHPStan\Type\Php\IteratorToArrayFunctionReturnTypeExtension";i:593;s:51:"PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension";i:594;s:48:"PHPStan\Type\Php\IsAFunctionTypeSpecifyingHelper";i:595;s:58:"PHPStan\Type\Php\CtypeDigitFunctionTypeSpecifyingExtension";i:596;s:59:"PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension";i:597;s:66:"PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension";i:598;s:63:"PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension";i:599;s:63:"PHPStan\Type\Php\SimpleXMLElementXpathMethodReturnTypeExtension";i:600;s:52:"PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension";i:601;s:50:"PHPStan\Type\Php\StrTokFunctionReturnTypeExtension";i:602;s:58:"PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension";i:603;s:57:"PHPStan\Type\Php\SscanfFunctionDynamicReturnTypeExtension";i:604;s:56:"PHPStan\Type\Php\StrvalFamilyFunctionReturnTypeExtension";i:605;s:63:"PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension";i:606;s:49:"PHPStan\Type\Php\XMLReaderOpenReturnTypeExtension";i:607;s:65:"PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension";i:608;s:57:"PHPStan\Type\Php\DatePeriodConstructorReturnTypeExtension";i:609;s:31:"PHPStan\Type\ClosureTypeFactory";i:610;s:43:"PHPStan\Type\Constant\OversizedArrayBuilder";i:611;s:36:"PHPStan\Rules\Functions\PrintfHelper";i:612;s:37:"PHPStan\Analyser\TypeSpecifierFactory";i:613;s:46:"PHPStan\File\ParentDirectoryRelativePathHelper";i:614;s:31:"PHPStan\File\RelativePathHelper";i:615;s:30:"PHPStan\Cache\FileCacheStorage";i:616;s:26:"PHPStan\Cache\CacheStorage";i:617;s:25:"PHPStan\Parser\RichParser";i:618;s:21:"PHPStan\Parser\Parser";i:619;s:29:"PHPStan\Parser\CleaningParser";i:620;s:27:"PHPStan\Parser\SimpleParser";i:621;s:27:"PHPStan\Parser\CachedParser";i:622;s:33:"PHPStan\Parser\PhpParserDecorator";i:623;s:16:"PhpParser\Parser";i:624;s:31:"PHPStan\Parser\PhpParserFactory";i:625;s:24:"PhpParser\ParserAbstract";i:626;s:26:"PHPStan\Rules\LazyRegistry";i:627;s:22:"PHPStan\Rules\Registry";i:628;s:33:"PHPStan\PhpDoc\StubPhpDocProvider";i:629;s:63:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory";i:630;s:37:"PHPStan\Reflection\ReflectionProvider";i:631;s:51:"PHPStan\BetterReflection\Reflector\DefaultReflector";i:632;s:44:"PHPStan\BetterReflection\Reflector\Reflector";i:633;s:64:"PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector";i:634;s:60:"PHPStan\Reflection\BetterReflection\BetterReflectionProvider";i:635;s:72:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory";i:636;s:83:"PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory";i:637;s:79:"PHPStan\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber";i:638;s:66:"PHPStan\BetterReflection\SourceLocator\SourceStubber\SourceStubber";i:639;s:76:"PHPStan\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber";i:640;s:80:"PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory";i:641;s:21:"PhpParser\Parser\Php8";i:642;s:32:"PHPStan\Parser\PathRoutingParser";i:643;s:25:"PHPStan\Parser\StubParser";i:644;s:41:"PHPStan\Diagnose\PHPStanDiagnoseExtension";i:645;s:55:"PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter";i:646;s:45:"PHPStan\Command\ErrorFormatter\ErrorFormatter";i:647;s:48:"PHPStan\Command\ErrorFormatter\RawErrorFormatter";i:648;s:50:"PHPStan\Command\ErrorFormatter\TableErrorFormatter";i:649;s:55:"PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter";i:650;s:49:"PHPStan\Command\ErrorFormatter\JsonErrorFormatter";i:651;s:50:"PHPStan\Command\ErrorFormatter\JunitErrorFormatter";i:652;s:51:"PHPStan\Command\ErrorFormatter\GitlabErrorFormatter";i:653;s:51:"PHPStan\Command\ErrorFormatter\GithubErrorFormatter";i:654;s:53:"PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter";i:655;s:53:"PHPStan\Rules\Classes\ExistingClassInClassExtendsRule";i:656;s:51:"PHPStan\Rules\Classes\ExistingClassInInstanceOfRule";i:657;s:53:"PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule";i:658;s:53:"PHPStan\Rules\Functions\CallToNonExistentFunctionRule";i:659;s:46:"PHPStan\Rules\Constants\OverridingConstantRule";i:660;s:42:"PHPStan\Rules\Methods\OverridingMethodRule";i:661;s:39:"PHPStan\Rules\Missing\MissingReturnRule";i:662;s:52:"PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule";i:663;s:47:"PHPStan\Rules\Namespaces\ExistingNamesInUseRule";i:664;s:45:"PHPStan\Rules\Properties\AccessPropertiesRule";i:665;s:51:"PHPStan\Rules\Properties\AccessStaticPropertiesRule";i:666;s:56:"PHPStan\Rules\Properties\ExistingClassesInPropertiesRule";i:667;s:44:"PHPStan\Rules\Functions\FunctionCallableRule";i:668;s:47:"PHPStan\Rules\Properties\OverridingPropertyRule";i:669;s:53:"PHPStan\Rules\Properties\SetPropertyHookParameterRule";i:670;s:56:"PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule";i:671;s:55:"PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule";i:672;s:44:"PHPStan\Rules\Variables\CompactVariablesRule";i:673;s:43:"PHPStan\Rules\Variables\DefinedVariableRule";i:674;s:44:"PHPStan\Rules\Keywords\RequireFileExistsRule";i:675;s:31:"PHPStan\Rules\Classes\MixinRule";i:676;s:40:"PHPStan\Rules\PhpDoc\RequireExtendsCheck";i:677;s:57:"PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule";i:678;s:41:"PHPStan\Rules\Functions\CallCallablesRule";i:679;s:46:"PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule";i:680;s:48:"PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule";i:681;s:45:"PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule";i:682;s:50:"PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule";i:683;s:46:"PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule";i:684;s:57:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule";i:685;s:69:"PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule";i:686;s:67:"PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule";i:687;s:73:"PHPStan\Rules\Exceptions\ThrowsVoidPropertyHookWithExplicitThrowPointRule";i:688;s:42:"PHPStan\Rules\Generators\YieldFromTypeRule";i:689;s:45:"PHPStan\Rules\Generators\YieldInGeneratorRule";i:690;s:46:"PHPStan\Rules\Classes\ImpossibleInstanceOfRule";i:691;s:56:"PHPStan\Rules\Comparison\BooleanAndConstantConditionRule";i:692;s:55:"PHPStan\Rules\Comparison\BooleanOrConstantConditionRule";i:693;s:56:"PHPStan\Rules\Comparison\BooleanNotConstantConditionRule";i:694;s:62:"PHPStan\Rules\DeadCode\ConstructorWithoutImpurePointsCollector";i:695;s:28:"PHPStan\Collectors\Collector";i:696;s:47:"PHPStan\Rules\DeadCode\PossiblyPureNewCollector";i:697;s:59:"PHPStan\Rules\DeadCode\FunctionWithoutImpurePointsCollector";i:698;s:52:"PHPStan\Rules\DeadCode\PossiblyPureFuncCallCollector";i:699;s:57:"PHPStan\Rules\DeadCode\MethodWithoutImpurePointsCollector";i:700;s:54:"PHPStan\Rules\DeadCode\PossiblyPureMethodCallCollector";i:701;s:54:"PHPStan\Rules\DeadCode\PossiblyPureStaticCallCollector";i:702;s:48:"PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule";i:703;s:57:"PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule";i:704;s:52:"PHPStan\Rules\Comparison\ElseIfConstantConditionRule";i:705;s:48:"PHPStan\Rules\Comparison\IfConstantConditionRule";i:706;s:60:"PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule";i:707;s:58:"PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule";i:708;s:64:"PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule";i:709;s:56:"PHPStan\Rules\Comparison\LogicalXorConstantConditionRule";i:710;s:44:"PHPStan\Rules\Comparison\MatchExpressionRule";i:711;s:71:"PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule";i:712;s:61:"PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule";i:713;s:52:"PHPStan\Rules\Comparison\ConstantLooseComparisonRule";i:714;s:61:"PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule";i:715;s:58:"PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule";i:716;s:57:"PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule";i:717;s:53:"PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule";i:718;s:51:"PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule";i:719;s:57:"PHPStan\Rules\Exceptions\TooWidePropertyHookThrowTypeRule";i:720;s:62:"PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule";i:721;s:50:"PHPStan\Rules\Properties\NullsafePropertyFetchRule";i:722;s:46:"PHPStan\Rules\Traits\TraitDeclarationCollector";i:723;s:38:"PHPStan\Rules\Traits\TraitUseCollector";i:724;s:55:"PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule";i:725;s:47:"PHPStan\Rules\Functions\RandomIntParametersRule";i:726;s:39:"PHPStan\Rules\Functions\ArrayFilterRule";i:727;s:39:"PHPStan\Rules\Functions\ArrayValuesRule";i:728;s:53:"PHPStan\Rules\Functions\ParameterCastableToNumberRule";i:729;s:56:"Larastan\Larastan\Methods\RelationForwardsCallsExtension";i:730;s:53:"Larastan\Larastan\Methods\ModelForwardsCallsExtension";i:731;s:63:"Larastan\Larastan\Methods\EloquentBuilderForwardsCallsExtension";i:732;s:54:"Larastan\Larastan\Methods\HigherOrderTapProxyExtension";i:733;s:61:"Larastan\Larastan\Methods\HigherOrderCollectionProxyExtension";i:734;s:64:"Larastan\Larastan\Methods\StorageMethodsClassReflectionExtension";i:735;s:35:"Larastan\Larastan\Methods\Extension";i:736;s:69:"Larastan\Larastan\Methods\ModelFactoryMethodsClassReflectionExtension";i:737;s:73:"Larastan\Larastan\Methods\RedirectResponseMethodsClassReflectionExtension";i:738;s:62:"Larastan\Larastan\Methods\MacroMethodsClassReflectionExtension";i:739;s:39:"Larastan\Larastan\Concerns\HasContainer";i:740;s:65:"Larastan\Larastan\Methods\ViewWithMethodsClassReflectionExtension";i:741;s:51:"Larastan\Larastan\Properties\ModelAccessorExtension";i:742;s:51:"Larastan\Larastan\Properties\ModelPropertyExtension";i:743;s:72:"Larastan\Larastan\Properties\HigherOrderCollectionProxyPropertyExtension";i:744;s:58:"Larastan\Larastan\ReturnTypes\HigherOrderTapProxyExtension";i:745;s:82:"Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension";i:746;s:52:"Larastan\Larastan\Properties\ModelRelationsExtension";i:747;s:71:"Larastan\Larastan\ReturnTypes\ModelOnlyDynamicMethodReturnTypeExtension";i:748;s:80:"Larastan\Larastan\ReturnTypes\ModelFactoryDynamicStaticMethodReturnTypeExtension";i:749;s:73:"Larastan\Larastan\ReturnTypes\ModelDynamicStaticMethodReturnTypeExtension";i:750;s:63:"Larastan\Larastan\ReturnTypes\AppMakeDynamicReturnTypeExtension";i:751;s:43:"Larastan\Larastan\ReturnTypes\AuthExtension";i:752;s:41:"Larastan\Larastan\Concerns\LoadsAuthModel";i:753;s:73:"Larastan\Larastan\ReturnTypes\GuardDynamicStaticMethodReturnTypeExtension";i:754;s:50:"Larastan\Larastan\ReturnTypes\AuthManagerExtension";i:755;s:43:"Larastan\Larastan\ReturnTypes\DateExtension";i:756;s:44:"Larastan\Larastan\ReturnTypes\GuardExtension";i:757;s:50:"Larastan\Larastan\ReturnTypes\RequestFileExtension";i:758;s:51:"Larastan\Larastan\ReturnTypes\RequestRouteExtension";i:759;s:50:"Larastan\Larastan\ReturnTypes\RequestUserExtension";i:760;s:54:"Larastan\Larastan\ReturnTypes\EloquentBuilderExtension";i:761;s:51:"Larastan\Larastan\ReturnTypes\RelationFindExtension";i:762;s:57:"Larastan\Larastan\ReturnTypes\RelationCollectionExtension";i:763;s:48:"Larastan\Larastan\ReturnTypes\ModelFindExtension";i:764;s:55:"Larastan\Larastan\ReturnTypes\BuilderModelFindExtension";i:765;s:47:"Larastan\Larastan\ReturnTypes\TestCaseExtension";i:766;s:42:"Larastan\Larastan\Support\CollectionHelper";i:767;s:51:"Larastan\Larastan\ReturnTypes\Helpers\AuthExtension";i:768;s:54:"Larastan\Larastan\ReturnTypes\Helpers\CollectExtension";i:769;s:58:"Larastan\Larastan\ReturnTypes\Helpers\NowAndTodayExtension";i:770;s:55:"Larastan\Larastan\ReturnTypes\Helpers\ResponseExtension";i:771;s:56:"Larastan\Larastan\ReturnTypes\Helpers\ValidatorExtension";i:772;s:54:"Larastan\Larastan\ReturnTypes\Helpers\LiteralExtension";i:773;s:78:"Larastan\Larastan\ReturnTypes\CollectionFilterRejectDynamicReturnTypeExtension";i:774;s:78:"Larastan\Larastan\ReturnTypes\CollectionWhereNotNullDynamicReturnTypeExtension";i:775;s:75:"Larastan\Larastan\ReturnTypes\NewModelQueryDynamicMethodReturnTypeExtension";i:776;s:69:"Larastan\Larastan\ReturnTypes\FactoryDynamicMethodReturnTypeExtension";i:777;s:62:"Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension";i:778;s:50:"Larastan\Larastan\ReturnTypes\Helpers\AppExtension";i:779;s:52:"Larastan\Larastan\ReturnTypes\Helpers\ValueExtension";i:780;s:50:"Larastan\Larastan\ReturnTypes\Helpers\StrExtension";i:781;s:50:"Larastan\Larastan\ReturnTypes\Helpers\TapExtension";i:782;s:75:"Larastan\Larastan\ReturnTypes\StorageDynamicStaticMethodReturnTypeExtension";i:783;s:74:"Larastan\Larastan\Types\GenericEloquentCollectionTypeNodeResolverExtension";i:784;s:40:"PHPStan\PhpDoc\TypeNodeResolverExtension";i:785;s:59:"Larastan\Larastan\Types\ViewStringTypeNodeResolverExtension";i:786;s:47:"Larastan\Larastan\Rules\OctaneCompatibilityRule";i:787;s:53:"Larastan\Larastan\Rules\NoEnvCallsOutsideOfConfigRule";i:788;s:39:"Larastan\Larastan\Rules\NoModelMakeRule";i:789;s:55:"Larastan\Larastan\Rules\NoUnnecessaryCollectionCallRule";i:790;s:40:"Larastan\Larastan\Rules\ModelAppendsRule";i:791;s:71:"Larastan\Larastan\Types\GenericEloquentBuilderTypeNodeResolverExtension";i:792;s:63:"Larastan\Larastan\ReturnTypes\AppEnvironmentReturnTypeExtension";i:793;s:76:"Larastan\Larastan\Types\ModelProperty\ModelPropertyTypeNodeResolverExtension";i:794;s:44:"Larastan\Larastan\Properties\MigrationHelper";i:795;s:52:"Larastan\Larastan\Properties\SquashedMigrationHelper";i:796;s:44:"Larastan\Larastan\Properties\ModelCastHelper";i:797;s:48:"Larastan\Larastan\Properties\ModelPropertyHelper";i:798;s:39:"Larastan\Larastan\Rules\ModelRuleHelper";i:799;s:39:"Larastan\Larastan\Methods\BuilderHelper";i:800;s:45:"Larastan\Larastan\Rules\RelationExistenceRule";i:801;s:84:"Larastan\Larastan\Rules\CheckDispatchArgumentTypesCompatibleWithClassConstructorRule";i:802;s:72:"Larastan\Larastan\Properties\Schema\PhpMyAdminDataTypeToPhpTypeConverter";i:803;s:44:"Larastan\Larastan\LarastanStubFilesExtension";i:804;s:39:"Larastan\Larastan\Rules\UnusedViewsRule";i:805;s:54:"Larastan\Larastan\Collectors\UsedViewFunctionCollector";i:806;s:51:"Larastan\Larastan\Collectors\UsedEmailViewCollector";i:807;s:50:"Larastan\Larastan\Collectors\UsedViewMakeCollector";i:808;s:56:"Larastan\Larastan\Collectors\UsedViewFacadeMakeCollector";i:809;s:57:"Larastan\Larastan\Collectors\UsedRouteFacadeViewCollector";i:810;s:59:"Larastan\Larastan\Collectors\UsedViewInAnotherViewCollector";i:811;s:40:"Larastan\Larastan\Support\ViewFileHelper";i:812;s:71:"Larastan\Larastan\ReturnTypes\ApplicationMakeDynamicReturnTypeExtension";i:813;s:69:"Larastan\Larastan\ReturnTypes\ContainerMakeDynamicReturnTypeExtension";i:814;s:79:"Larastan\Larastan\ReturnTypes\ConsoleCommand\ArgumentDynamicReturnTypeExtension";i:815;s:82:"Larastan\Larastan\ReturnTypes\ConsoleCommand\HasArgumentDynamicReturnTypeExtension";i:816;s:77:"Larastan\Larastan\ReturnTypes\ConsoleCommand\OptionDynamicReturnTypeExtension";i:817;s:80:"Larastan\Larastan\ReturnTypes\ConsoleCommand\HasOptionDynamicReturnTypeExtension";i:818;s:62:"Larastan\Larastan\ReturnTypes\TranslatorGetReturnTypeExtension";i:819;s:60:"Larastan\Larastan\ReturnTypes\TransHelperReturnTypeExtension";i:820;s:71:"Larastan\Larastan\ReturnTypes\DoubleUnderscoreHelperReturnTypeExtension";i:821;s:43:"Larastan\Larastan\ReturnTypes\AppMakeHelper";i:822;s:53:"Larastan\Larastan\Internal\ConsoleApplicationResolver";i:823;s:51:"Larastan\Larastan\Internal\ConsoleApplicationHelper";i:824;s:58:"Larastan\Larastan\Support\HigherOrderCollectionProxyHelper";i:825;s:29:"Carbon\PHPStan\MacroExtension";i:826;s:48:"PHPStan\Rules\Deprecations\DeprecatedClassHelper";i:827;s:63:"PHPStan\DependencyInjection\LazyDeprecatedScopeResolverProvider";i:828;s:57:"PHPStan\Rules\Deprecations\DefaultDeprecatedScopeResolver";i:829;s:50:"PHPStan\Rules\Deprecations\DeprecatedScopeResolver";i:830;s:58:"PHPStan\Rules\Deprecations\CallWithDeprecatedIniOptionRule";i:831;s:58:"PHPStan\PhpDoc\PHPUnit\MockObjectTypeNodeResolverExtension";i:832;s:45:"PHPStan\PhpDoc\TypeNodeResolverAwareExtension";i:833;s:65:"PHPStan\Type\PHPUnit\Assert\AssertFunctionTypeSpecifyingExtension";i:834;s:63:"PHPStan\Type\PHPUnit\Assert\AssertMethodTypeSpecifyingExtension";i:835;s:69:"PHPStan\Type\PHPUnit\Assert\AssertStaticMethodTypeSpecifyingExtension";i:836;s:48:"PHPStan\Type\StaticMethodTypeSpecifyingExtension";i:837;s:63:"PHPStan\Type\PHPUnit\InvocationMockerDynamicReturnTypeExtension";i:838;s:58:"PHPStan\Type\PHPUnit\MockBuilderDynamicReturnTypeExtension";i:839;s:57:"PHPStan\Type\PHPUnit\MockObjectDynamicReturnTypeExtension";i:840;s:34:"PHPStan\Rules\PHPUnit\CoversHelper";i:841;s:38:"PHPStan\Rules\PHPUnit\AnnotationHelper";i:842;s:47:"PHPStan\Rules\PHPUnit\DataProviderHelperFactory";i:843;s:49:"PHPStan\Rules\PHPUnit\DataProviderDeclarationRule";i:844;s:51:"PHPStan\Rules\PHPUnit\AssertEqualsIsDiscouragedRule";i:845;s:37:"_PHPStan_24e2736d6\Nette\DI\Container";i:846;s:36:"_PHPStan_24e2736d6\Nette\SmartObject";i:847;s:22:"PHPStan\Php\PhpVersion";i:848;s:29:"PHPStan\Php\PhpVersionFactory";i:849;s:56:"PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider";i:850;s:33:"PHPStan\Analyser\ConstantResolver";i:851;s:47:"PHPStan\Analyser\ResultCache\ResultCacheManager";i:852;s:54:"PHPStan\Analyser\ResultCache\ResultCacheManagerFactory";i:853;s:27:"PHPStan\Collectors\Registry";i:854;s:79:"PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider";i:855;s:75:"PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider";i:856;s:66:"PHPStan\DependencyInjection\Type\ParameterOutTypeExtensionProvider";i:857;s:80:"PHPStan\DependencyInjection\Type\ExpressionTypeResolverExtensionRegistryProvider";i:858;s:80:"PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider";i:859;s:66:"PHPStan\DependencyInjection\Type\DynamicThrowTypeExtensionProvider";i:860;s:70:"PHPStan\DependencyInjection\Type\ParameterClosureTypeExtensionProvider";i:861;s:25:"PHPStan\File\FileExcluder";i:862;s:35:"PHPStan\File\FileExcluderRawFactory";i:863;s:44:"PHPStan\Reflection\Php\PhpFunctionReflection";i:864;s:37:"PHPStan\Reflection\FunctionReflection";i:865;s:44:"PHPStan\Reflection\FunctionReflectionFactory";i:866;s:79:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator";i:867;s:57:"PHPStan\BetterReflection\SourceLocator\Type\SourceLocator";i:868;s:86:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory";i:869;s:82:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator";i:870;s:89:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory";i:871;s:42:"PHPStan\Reflection\Php\PhpMethodReflection";i:872;s:43:"PHPStan\Reflection\ExtendedMethodReflection";i:873;s:40:"PHPStan\Reflection\ClassMemberReflection";i:874;s:35:"PHPStan\Reflection\MethodReflection";i:875;s:49:"PHPStan\Reflection\Php\PhpMethodReflectionFactory";i:876;s:64:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider";i:877;s:30:"PHPStan\Type\TypeAliasResolver";i:878;s:38:"PHPStan\Type\TypeAliasResolverProvider";i:879;s:30:"PHPStan\Analyser\TypeSpecifier";i:880;s:15:"PhpParser\Lexer";i:881;s:67:"PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory";i:882;s:25:"PhpParser\Lexer\Emulative";i:883;s:48:"PHPStan\Rules\Deprecations\DeprecatedScopeHelper";i:884;s:40:"PHPStan\Rules\PHPUnit\DataProviderHelper";}i:4;a:562:{i:0;s:39:"PHPStan\Parser\PhpParserFactory::create";i:1;s:71:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory::create";i:2;s:91:"PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory::create";i:3;s:88:"PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory::create";i:4;s:47:"PHPStan\Rules\Debug\DebugScopeRule::__construct";i:5;s:51:"PHPStan\Rules\Debug\DumpPhpDocTypeRule::__construct";i:6;s:45:"PHPStan\Rules\Debug\DumpTypeRule::__construct";i:7;s:47:"PHPStan\Rules\Debug\FileAssertRule::__construct";i:8;s:48:"PHPStan\Rules\Api\ApiInstanceofRule::__construct";i:9;s:52:"PHPStan\Rules\Api\ApiInstanceofTypeRule::__construct";i:10;s:51:"PHPStan\Rules\Api\ApiInstantiationRule::__construct";i:11;s:53:"PHPStan\Rules\Api\ApiClassConstFetchRule::__construct";i:12;s:50:"PHPStan\Rules\Api\ApiClassExtendsRule::__construct";i:13;s:53:"PHPStan\Rules\Api\ApiClassImplementsRule::__construct";i:14;s:54:"PHPStan\Rules\Api\ApiInterfaceExtendsRule::__construct";i:15;s:48:"PHPStan\Rules\Api\ApiMethodCallRule::__construct";i:16;s:48:"PHPStan\Rules\Api\ApiStaticCallRule::__construct";i:17;s:46:"PHPStan\Rules\Api\ApiTraitUseRule::__construct";i:18;s:50:"PHPStan\Rules\Api\GetTemplateTypeRule::__construct";i:19;s:68:"PHPStan\Rules\Api\PhpStanNamespaceIn3rdPartyPackageRule::__construct";i:20;s:65:"PHPStan\Rules\Api\RuntimeReflectionInstantiationRule::__construct";i:21;s:60:"PHPStan\Rules\Api\RuntimeReflectionFunctionRule::__construct";i:22;s:66:"PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule::__construct";i:23;s:45:"PHPStan\Rules\Cast\UnsetCastRule::__construct";i:24;s:54:"PHPStan\Rules\Classes\ClassAttributesRule::__construct";i:25;s:62:"PHPStan\Rules\Classes\ClassConstantAttributesRule::__construct";i:26;s:52:"PHPStan\Rules\Classes\ClassConstantRule::__construct";i:27;s:71:"PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule::__construct";i:28;s:70:"PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule::__construct";i:29;s:72:"PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule::__construct";i:30;s:62:"PHPStan\Rules\Classes\ExistingClassInTraitUseRule::__construct";i:31;s:52:"PHPStan\Rules\Classes\InstantiationRule::__construct";i:32;s:64:"PHPStan\Rules\Classes\InvalidPromotedPropertiesRule::__construct";i:33;s:55:"PHPStan\Rules\Classes\LocalTypeAliasesRule::__construct";i:34;s:63:"PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule::__construct";i:35;s:60:"PHPStan\Rules\Classes\LocalTypeTraitAliasesRule::__construct";i:36;s:52:"PHPStan\Rules\Classes\ReadOnlyClassRule::__construct";i:37;s:66:"PHPStan\Rules\Constants\DynamicClassConstantFetchRule::__construct";i:38;s:54:"PHPStan\Rules\Constants\FinalConstantRule::__construct";i:39;s:65:"PHPStan\Rules\Constants\NativeTypedClassConstantRule::__construct";i:40;s:59:"PHPStan\Rules\EnumCases\EnumCaseAttributesRule::__construct";i:41;s:57:"PHPStan\Rules\Exceptions\ThrowExpressionRule::__construct";i:42;s:64:"PHPStan\Rules\Functions\ArrowFunctionAttributesRule::__construct";i:43;s:73:"PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule::__construct";i:44;s:58:"PHPStan\Rules\Functions\ClosureAttributesRule::__construct";i:45;s:57:"PHPStan\Rules\Functions\DefineParametersRule::__construct";i:46;s:80:"PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule::__construct";i:47;s:65:"PHPStan\Rules\Functions\CallToFunctionParametersRule::__construct";i:48;s:74:"PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule::__construct";i:49;s:67:"PHPStan\Rules\Functions\ExistingClassesInTypehintsRule::__construct";i:50;s:59:"PHPStan\Rules\Functions\FunctionAttributesRule::__construct";i:51;s:56:"PHPStan\Rules\Functions\ParamAttributesRule::__construct";i:52;s:62:"PHPStan\Rules\Functions\PrintfArrayParametersRule::__construct";i:53;s:57:"PHPStan\Rules\Functions\PrintfParametersRule::__construct";i:54;s:60:"PHPStan\Rules\Functions\ReturnNullsafeByRefRule::__construct";i:55;s:58:"PHPStan\Rules\Keywords\DeclareStrictTypesRule::__construct";i:56;s:50:"PHPStan\Rules\Methods\CallMethodsRule::__construct";i:57;s:56:"PHPStan\Rules\Methods\CallStaticMethodsRule::__construct";i:58;s:60:"PHPStan\Rules\Methods\ConsistentConstructorRule::__construct";i:59;s:65:"PHPStan\Rules\Methods\ExistingClassesInTypehintsRule::__construct";i:60;s:53:"PHPStan\Rules\Methods\MethodCallableRule::__construct";i:61;s:71:"PHPStan\Rules\Methods\MissingMagicSerializationMethodsRule::__construct";i:62;s:55:"PHPStan\Rules\Methods\MethodAttributesRule::__construct";i:63;s:59:"PHPStan\Rules\Methods\StaticMethodCallableRule::__construct";i:64;s:57:"PHPStan\Rules\Operators\InvalidAssignVarRule::__construct";i:65;s:63:"PHPStan\Rules\Operators\InvalidIncDecOperationRule::__construct";i:66;s:66:"PHPStan\Rules\Properties\AccessPropertiesInAssignRule::__construct";i:67;s:72:"PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule::__construct";i:68;s:80:"PHPStan\Rules\Properties\ExistingClassesInPropertyHookTypehintsRule::__construct";i:69;s:71:"PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule::__construct";i:70;s:79:"PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule::__construct";i:71;s:63:"PHPStan\Rules\Properties\PropertiesInInterfaceRule::__construct";i:72;s:59:"PHPStan\Rules\Properties\PropertyAssignRefRule::__construct";i:73;s:60:"PHPStan\Rules\Properties\PropertyAttributesRule::__construct";i:74;s:64:"PHPStan\Rules\Properties\PropertyHookAttributesRule::__construct";i:75;s:57:"PHPStan\Rules\Properties\PropertyInClassRule::__construct";i:76;s:58:"PHPStan\Rules\Properties\ReadOnlyPropertyRule::__construct";i:77;s:62:"PHPStan\Rules\Regexp\RegularExpressionPatternRule::__construct";i:78;s:63:"PHPStan\Rules\Traits\ConflictingTraitConstantsRule::__construct";i:79;s:55:"PHPStan\Rules\Traits\ConstantsInTraitsRule::__construct";i:80;s:53:"PHPStan\Rules\Traits\TraitAttributesRule::__construct";i:81;s:66:"PHPStan\Rules\Classes\UnusedConstructorParametersRule::__construct";i:82;s:58:"PHPStan\Rules\Functions\UnusedClosureUsesRule::__construct";i:83;s:46:"PHPStan\Rules\Variables\EmptyRule::__construct";i:84;s:46:"PHPStan\Rules\Variables\IssetRule::__construct";i:85;s:53:"PHPStan\Rules\Variables\NullCoalesceRule::__construct";i:86;s:40:"PHPStan\Rules\Cast\EchoRule::__construct";i:87;s:47:"PHPStan\Rules\Cast\InvalidCastRule::__construct";i:88;s:63:"PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule::__construct";i:89;s:41:"PHPStan\Rules\Cast\PrintRule::__construct";i:90;s:48:"PHPStan\Rules\Classes\MethodTagRule::__construct";i:91;s:53:"PHPStan\Rules\Classes\MethodTagTraitRule::__construct";i:92;s:56:"PHPStan\Rules\Classes\MethodTagTraitUseRule::__construct";i:93;s:50:"PHPStan\Rules\Classes\PropertyTagRule::__construct";i:94;s:55:"PHPStan\Rules\Classes\PropertyTagTraitRule::__construct";i:95;s:58:"PHPStan\Rules\Classes\PropertyTagTraitUseRule::__construct";i:96;s:49:"PHPStan\Rules\Classes\MixinTraitRule::__construct";i:97;s:52:"PHPStan\Rules\Classes\MixinTraitUseRule::__construct";i:98;s:54:"PHPStan\Rules\Generics\ClassAncestorsRule::__construct";i:99;s:57:"PHPStan\Rules\Generics\ClassTemplateTypeRule::__construct";i:100;s:53:"PHPStan\Rules\Generics\EnumAncestorsRule::__construct";i:101;s:60:"PHPStan\Rules\Generics\FunctionTemplateTypeRule::__construct";i:102;s:65:"PHPStan\Rules\Generics\FunctionSignatureVarianceRule::__construct";i:103;s:58:"PHPStan\Rules\Generics\InterfaceAncestorsRule::__construct";i:104;s:61:"PHPStan\Rules\Generics\InterfaceTemplateTypeRule::__construct";i:105;s:58:"PHPStan\Rules\Generics\MethodTemplateTypeRule::__construct";i:106;s:61:"PHPStan\Rules\Generics\MethodTagTemplateTypeRule::__construct";i:107;s:66:"PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule::__construct";i:108;s:63:"PHPStan\Rules\Generics\MethodSignatureVarianceRule::__construct";i:109;s:56:"PHPStan\Rules\Generics\PropertyVarianceRule::__construct";i:110;s:57:"PHPStan\Rules\Generics\TraitTemplateTypeRule::__construct";i:111;s:50:"PHPStan\Rules\Generics\UsedTraitsRule::__construct";i:112;s:63:"PHPStan\Rules\Operators\InvalidBinaryOperationRule::__construct";i:113;s:67:"PHPStan\Rules\Operators\InvalidComparisonOperationRule::__construct";i:114;s:62:"PHPStan\Rules\Operators\InvalidUnaryOperationRule::__construct";i:115;s:67:"PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule::__construct";i:116;s:65:"PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule::__construct";i:117;s:52:"PHPStan\Rules\PhpDoc\FunctionAssertRule::__construct";i:118;s:50:"PHPStan\Rules\PhpDoc\MethodAssertRule::__construct";i:119;s:61:"PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule::__construct";i:120;s:73:"PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule::__construct";i:121;s:60:"PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule::__construct";i:122;s:72:"PHPStan\Rules\PhpDoc\IncompatiblePropertyHookPhpDocTypeRule::__construct";i:123;s:68:"PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule::__construct";i:124;s:62:"PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule::__construct";i:125;s:81:"PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule::__construct";i:126;s:65:"PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule::__construct";i:127;s:63:"PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule::__construct";i:128;s:67:"PHPStan\Rules\PhpDoc\RequireExtendsDefinitionClassRule::__construct";i:129;s:67:"PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule::__construct";i:130;s:48:"PHPStan\Rules\Pure\PureFunctionRule::__construct";i:131;s:46:"PHPStan\Rules\Pure\PureMethodRule::__construct";i:132;s:56:"PHPStan\Rules\Arrays\ArrayDestructuringRule::__construct";i:133;s:52:"PHPStan\Rules\Arrays\ArrayUnpackingRule::__construct";i:134;s:55:"PHPStan\Rules\Arrays\IterableInForeachRule::__construct";i:135;s:60:"PHPStan\Rules\Arrays\OffsetAccessAssignmentRule::__construct";i:136;s:58:"PHPStan\Rules\Arrays\OffsetAccessAssignOpRule::__construct";i:137;s:65:"PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule::__construct";i:138;s:59:"PHPStan\Rules\Arrays\UnpackIterableInArrayRule::__construct";i:139;s:55:"PHPStan\Rules\Exceptions\ThrowExprTypeRule::__construct";i:140;s:64:"PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule::__construct";i:141;s:58:"PHPStan\Rules\Functions\ClosureReturnTypeRule::__construct";i:142;s:51:"PHPStan\Rules\Functions\ReturnTypeRule::__construct";i:143;s:51:"PHPStan\Rules\Generators\YieldTypeRule::__construct";i:144;s:49:"PHPStan\Rules\Methods\ReturnTypeRule::__construct";i:145;s:79:"PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule::__construct";i:146;s:64:"PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule::__construct";i:147;s:72:"PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule::__construct";i:148;s:67:"PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule::__construct";i:149;s:75:"PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule::__construct";i:150;s:67:"PHPStan\Rules\Properties\TypesAssignedToPropertiesRule::__construct";i:151;s:65:"PHPStan\Rules\Variables\ParameterOutAssignedTypeRule::__construct";i:152;s:69:"PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule::__construct";i:153;s:56:"PHPStan\Rules\Variables\VariableCloningRule::__construct";i:154;s:44:"PHPStan\Rules\DeadCode\NoopRule::__construct";i:155;s:61:"PHPStan\Rules\DeadCode\UnusedPrivateConstantRule::__construct";i:156;s:59:"PHPStan\Rules\DeadCode\UnusedPrivateMethodRule::__construct";i:157;s:82:"PHPStan\Rules\Functions\CallToFunctionStatementWithoutSideEffectsRule::__construct";i:158;s:67:"PHPStan\Rules\Functions\UselessFunctionReturnValueRule::__construct";i:159;s:83:"PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule::__construct";i:160;s:78:"PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule::__construct";i:161;s:84:"PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule::__construct";i:162;s:79:"PHPStan\Rules\TooWideTypehints\TooWideFunctionParameterOutTypeRule::__construct";i:163;s:77:"PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule::__construct";i:164;s:67:"PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule::__construct";i:165;s:53:"PHPStan\Rules\Functions\CallUserFuncRule::__construct";i:166;s:66:"PHPStan\Rules\Functions\ParameterCastableToStringRule::__construct";i:167;s:73:"PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule::__construct";i:168;s:70:"PHPStan\Rules\Functions\SortParameterCastableToStringRule::__construct";i:169;s:62:"PHPStan\Rules\Regexp\RegularExpressionQuotingRule::__construct";i:170;s:81:"Larastan\Larastan\Rules\ConsoleCommand\UndefinedArgumentOrOptionRule::__construct";i:171;s:68:"PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule::__construct";i:172;s:74:"PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule::__construct";i:173;s:68:"PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule::__construct";i:174;s:66:"PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule::__construct";i:175;s:72:"PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule::__construct";i:176;s:79:"PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule::__construct";i:177;s:67:"PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule::__construct";i:178;s:79:"PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule::__construct";i:179;s:72:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule::__construct";i:180;s:76:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule::__construct";i:181;s:74:"PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule::__construct";i:182;s:84:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule::__construct";i:183;s:80:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule::__construct";i:184;s:81:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule::__construct";i:185;s:65:"PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule::__construct";i:186;s:66:"PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule::__construct";i:187;s:56:"PHPStan\Rules\PHPUnit\ClassCoversExistsRule::__construct";i:188;s:62:"PHPStan\Rules\PHPUnit\ClassMethodCoversExistsRule::__construct";i:189;s:70:"PHPStan\Rules\PHPUnit\NoMissingSpaceInClassAnnotationRule::__construct";i:190;s:71:"PHPStan\Rules\PHPUnit\NoMissingSpaceInMethodAnnotationRule::__construct";i:191;s:40:"PHPStan\Parser\LexerFactory::__construct";i:192;s:47:"PhpParser\NodeVisitor\NameResolver::__construct";i:193;s:45:"PHPStan\Node\Printer\ExprPrinter::__construct";i:194;s:44:"PhpParser\PrettyPrinterAbstract::__construct";i:195;s:52:"PHPStan\Broker\AnonymousClassNameHelper::__construct";i:196;s:37:"PHPStan\Php\PhpVersionFactory::create";i:197;s:44:"PHPStan\Php\PhpVersionFactoryFactory::create";i:198;s:49:"PHPStan\Php\PhpVersionFactoryFactory::__construct";i:199;s:50:"PHPStan\Php\ComposerPhpVersionFactory::__construct";i:200;s:46:"PHPStan\PhpDocParser\ParserConfig::__construct";i:201;s:45:"PHPStan\PhpDocParser\Lexer\Lexer::__construct";i:202;s:51:"PHPStan\PhpDocParser\Parser\TypeParser::__construct";i:203;s:56:"PHPStan\PhpDocParser\Parser\ConstExprParser::__construct";i:204;s:53:"PHPStan\PhpDocParser\Parser\PhpDocParser::__construct";i:205;s:53:"PHPStan\PhpDoc\PhpDocInheritanceResolver::__construct";i:206;s:46:"PHPStan\PhpDoc\PhpDocNodeResolver::__construct";i:207;s:48:"PHPStan\PhpDoc\PhpDocStringResolver::__construct";i:208;s:49:"PHPStan\PhpDoc\ConstExprNodeResolver::__construct";i:209;s:44:"PHPStan\PhpDoc\TypeNodeResolver::__construct";i:210;s:73:"PHPStan\PhpDoc\LazyTypeNodeResolverExtensionRegistryProvider::__construct";i:211;s:46:"PHPStan\PhpDoc\TypeStringResolver::__construct";i:212;s:41:"PHPStan\PhpDoc\StubValidator::__construct";i:213;s:58:"PHPStan\PhpDoc\SocketSelectStubFilesExtension::__construct";i:214;s:52:"PHPStan\PhpDoc\DefaultStubFilesProvider::__construct";i:215;s:58:"PHPStan\PhpDoc\JsonValidateStubFilesExtension::__construct";i:216;s:61:"PHPStan\PhpDoc\ReflectionClassStubFilesExtension::__construct";i:217;s:60:"PHPStan\PhpDoc\ReflectionEnumStubFilesExtension::__construct";i:218;s:38:"PHPStan\Analyser\Analyser::__construct";i:219;s:53:"PHPStan\Analyser\AnalyserResultFinalizer::__construct";i:220;s:42:"PHPStan\Analyser\FileAnalyser::__construct";i:221;s:55:"PHPStan\Analyser\Ignore\IgnoredErrorHelper::__construct";i:222;s:54:"PHPStan\Analyser\LazyInternalScopeFactory::__construct";i:223;s:42:"PHPStan\Analyser\ScopeFactory::__construct";i:224;s:47:"PHPStan\Analyser\NodeScopeResolver::__construct";i:225;s:48:"PHPStan\Analyser\ConstantResolverFactory::create";i:226;s:53:"PHPStan\Analyser\ConstantResolverFactory::__construct";i:227;s:60:"PHPStan\Analyser\ResultCache\ResultCacheManager::__construct";i:228;s:60:"PHPStan\Analyser\ResultCache\ResultCacheClearer::__construct";i:229;s:54:"PHPStan\Analyser\RicherScopeGetTypeHelper::__construct";i:230;s:32:"PHPStan\Cache\Cache::__construct";i:231;s:42:"PHPStan\Collectors\RegistryFactory::create";i:232;s:47:"PHPStan\Collectors\RegistryFactory::__construct";i:233;s:47:"PHPStan\Command\AnalyseApplication::__construct";i:234;s:43:"PHPStan\Command\AnalyserRunner::__construct";i:235;s:45:"PHPStan\Command\FixerApplication::__construct";i:236;s:50:"PHPStan\Dependency\DependencyResolver::__construct";i:237;s:51:"PHPStan\Dependency\ExportedNodeFetcher::__construct";i:238;s:52:"PHPStan\Dependency\ExportedNodeResolver::__construct";i:239;s:51:"PHPStan\Dependency\ExportedNodeVisitor::__construct";i:240;s:59:"PHPStan\DependencyInjection\MemoizingContainer::__construct";i:241;s:61:"PHPStan\DependencyInjection\Nette\NetteContainer::__construct";i:242;s:67:"PHPStan\DependencyInjection\DerivativeContainerFactory::__construct";i:243;s:96:"PHPStan\DependencyInjection\Reflection\LazyClassReflectionExtensionRegistryProvider::__construct";i:244;s:92:"PHPStan\DependencyInjection\Type\LazyDynamicReturnTypeExtensionRegistryProvider::__construct";i:245;s:83:"PHPStan\DependencyInjection\Type\LazyParameterOutTypeExtensionProvider::__construct";i:246;s:97:"PHPStan\DependencyInjection\Type\LazyExpressionTypeResolverExtensionRegistryProvider::__construct";i:247;s:97:"PHPStan\DependencyInjection\Type\LazyOperatorTypeSpecifyingExtensionRegistryProvider::__construct";i:248;s:83:"PHPStan\DependencyInjection\Type\LazyDynamicThrowTypeExtensionProvider::__construct";i:249;s:87:"PHPStan\DependencyInjection\Type\LazyParameterClosureTypeExtensionProvider::__construct";i:250;s:36:"PHPStan\File\FileHelper::__construct";i:251;s:45:"PHPStan\File\FileExcluderFactory::__construct";i:252;s:38:"PHPStan\File\FileExcluder::__construct";i:253;s:59:"PHPStan\File\FileExcluderFactory::createAnalyseFileExcluder";i:254;s:56:"PHPStan\File\FileExcluderFactory::createScanFileExcluder";i:255;s:36:"PHPStan\File\FileFinder::__construct";i:257;s:37:"PHPStan\File\FileMonitor::__construct";i:258;s:46:"PHPStan\Parallel\ParallelAnalyser::__construct";i:259;s:39:"PHPStan\Parallel\Scheduler::__construct";i:260;s:58:"PHPStan\Reflection\AttributeReflectionFactory::__construct";i:261;s:57:"PHPStan\Reflection\Php\PhpFunctionReflection::__construct";i:262;s:59:"PHPStan\Reflection\InitializerExprTypeResolver::__construct";i:263;s:79:"PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher::__construct";i:264;s:109:"PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker::__construct";i:265;s:101:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory::__construct";i:266;s:104:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository::__construct";i:267;s:92:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator::__construct";i:268;s:95:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator::__construct";i:269;s:105:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository::__construct";i:270;s:105:"PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumCaseDynamicReturnTypeExtension::__construct";i:272;s:101:"PHPStan\Reflection\BetterReflection\Type\AdapterReflectionEnumDynamicReturnTypeExtension::__construct";i:273;s:50:"PHPStan\Reflection\ConstructorsHelper::__construct";i:274;s:74:"PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension::__construct";i:275;s:77:"PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension::__construct";i:276;s:63:"PHPStan\Reflection\Php\PhpClassReflectionExtension::__construct";i:277;s:55:"PHPStan\Reflection\Php\PhpMethodReflection::__construct";i:278;s:81:"PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension::__construct";i:279;s:92:"PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension::__construct";i:281;s:81:"PHPStan\Reflection\ReflectionProvider\LazyReflectionProviderProvider::__construct";i:282;s:77:"PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider::__construct";i:283;s:63:"PHPStan\Reflection\SignatureMap\SignatureMapParser::__construct";i:284;s:73:"PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider::__construct";i:285;s:69:"PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider::__construct";i:286;s:72:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory::__construct";i:287;s:67:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory::create";i:288;s:42:"PHPStan\Rules\AttributesCheck::__construct";i:289;s:71:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck::__construct";i:290;s:41:"PHPStan\Rules\ClassNameCheck::__construct";i:291;s:52:"PHPStan\Rules\ClassCaseSensitivityCheck::__construct";i:292;s:50:"PHPStan\Rules\ClassForbiddenNameCheck::__construct";i:293;s:56:"PHPStan\Rules\Classes\LocalTypeAliasesCheck::__construct";i:294;s:49:"PHPStan\Rules\Classes\MethodTagCheck::__construct";i:295;s:45:"PHPStan\Rules\Classes\MixinCheck::__construct";i:296;s:51:"PHPStan\Rules\Classes\PropertyTagCheck::__construct";i:297;s:65:"PHPStan\Rules\Comparison\ConstantConditionRuleHelper::__construct";i:298;s:63:"PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper::__construct";i:299;s:66:"PHPStan\Rules\Exceptions\DefaultExceptionTypeResolver::__construct";i:300;s:81:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule::__construct";i:301;s:79:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule::__construct";i:302;s:85:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInPropertyHookThrowsRule::__construct";i:303;s:74:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck::__construct";i:304;s:59:"PHPStan\Rules\Exceptions\TooWideThrowTypeCheck::__construct";i:305;s:54:"PHPStan\Rules\FunctionCallParametersCheck::__construct";i:306;s:50:"PHPStan\Rules\FunctionDefinitionCheck::__construct";i:307;s:50:"PHPStan\Rules\FunctionReturnTypeCheck::__construct";i:308;s:57:"PHPStan\Rules\ParameterCastableToStringCheck::__construct";i:309;s:57:"PHPStan\Rules\Generics\GenericAncestorsCheck::__construct";i:310;s:62:"PHPStan\Rules\Generics\MethodTagTemplateTypeCheck::__construct";i:311;s:53:"PHPStan\Rules\Generics\TemplateTypeCheck::__construct";i:312;s:37:"PHPStan\Rules\IssetCheck::__construct";i:313;s:50:"PHPStan\Rules\Methods\MethodCallCheck::__construct";i:314;s:56:"PHPStan\Rules\Methods\StaticMethodCallCheck::__construct";i:315;s:54:"PHPStan\Rules\Methods\MethodSignatureRule::__construct";i:316;s:66:"PHPStan\Rules\Methods\MethodParameterComparisonHelper::__construct";i:317;s:47:"PHPStan\Rules\MissingTypehintCheck::__construct";i:318;s:82:"PHPStan\Rules\Constants\LazyAlwaysUsedClassConstantsExtensionProvider::__construct";i:319;s:72:"PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider::__construct";i:320;s:50:"PHPStan\Rules\PhpDoc\AssertRuleHelper::__construct";i:321;s:59:"PHPStan\Rules\PhpDoc\GenericCallableRuleHelper::__construct";i:322;s:61:"PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeCheck::__construct";i:323;s:54:"PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper::__construct";i:324;s:59:"PHPStan\Rules\Properties\AccessPropertiesCheck::__construct";i:325;s:63:"PHPStan\Rules\Properties\UninitializedPropertyRule::__construct";i:326;s:78:"PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider::__construct";i:327;s:42:"PHPStan\Rules\RuleLevelHelper::__construct";i:328;s:56:"PHPStan\Rules\UnusedFunctionParametersCheck::__construct";i:329;s:40:"PHPStan\Type\FileTypeMapper::__construct";i:331;s:49:"PHPStan\Type\UsefulTypeAliasResolver::__construct";i:332;s:55:"PHPStan\Type\LazyTypeAliasResolverProvider::__construct";i:333;s:43:"PHPStan\Type\BitwiseFlagHelper::__construct";i:334;s:74:"PHPStan\Type\Php\ArrayIntersectKeyFunctionReturnTypeExtension::__construct";i:335;s:67:"PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension::__construct";i:336;s:68:"PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension::__construct";i:337;s:69:"PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension::__construct";i:338;s:66:"PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension::__construct";i:339;s:70:"PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension::__construct";i:340;s:65:"PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper::__construct";i:341;s:68:"PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension::__construct";i:342;s:66:"PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension::__construct";i:343;s:66:"PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension::__construct";i:344;s:73:"PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension::__construct";i:345;s:69:"PHPStan\Type\Php\ArrayReverseFunctionReturnTypeExtension::__construct";i:346;s:67:"PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension::__construct";i:347;s:75:"PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension::__construct";i:348;s:75:"PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension::__construct";i:349;s:67:"PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension::__construct";i:350;s:64:"PHPStan\Type\Php\CompactFunctionReturnTypeExtension::__construct";i:351;s:65:"PHPStan\Type\Php\ConstantFunctionReturnTypeExtension::__construct";i:352;s:74:"PHPStan\Type\Php\CountCharsFunctionDynamicReturnTypeExtension::__construct";i:353;s:75:"PHPStan\Type\Php\CurlGetinfoFunctionDynamicReturnTypeExtension::__construct";i:354;s:67:"PHPStan\Type\Php\DateFormatFunctionReturnTypeExtension::__construct";i:355;s:65:"PHPStan\Type\Php\DateFormatMethodReturnTypeExtension::__construct";i:356;s:61:"PHPStan\Type\Php\DateFunctionReturnTypeExtension::__construct";i:357;s:71:"PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension::__construct";i:358;s:63:"PHPStan\Type\Php\DateTimeModifyReturnTypeExtension::__construct";i:360;s:67:"PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension::__construct";i:361;s:68:"PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension::__construct";i:362;s:65:"PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension::__construct";i:363;s:71:"PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension::__construct";i:364;s:71:"PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension::__construct";i:365;s:60:"PHPStan\Type\Php\FilterFunctionReturnTypeHelper::__construct";i:366;s:67:"PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension::__construct";i:367;s:65:"PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension::__construct";i:368;s:70:"PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension::__construct";i:369;s:78:"PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension::__construct";i:370;s:62:"PHPStan\Type\Php\HashFunctionsReturnTypeExtension::__construct";i:371;s:71:"PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension::__construct";i:372;s:52:"PHPStan\Type\Php\JsonThrowTypeExtension::__construct";i:373;s:62:"PHPStan\Type\Php\PregMatchTypeSpecifyingExtension::__construct";i:374;s:64:"PHPStan\Type\Php\PregMatchParameterOutTypeExtension::__construct";i:375;s:69:"PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension::__construct";i:376;s:52:"PHPStan\Type\Php\RegexArrayShapeMatcher::__construct";i:377;s:48:"PHPStan\Type\Regex\RegexGroupParser::__construct";i:378;s:53:"PHPStan\Type\Regex\RegexExpressionHelper::__construct";i:379;s:77:"PHPStan\Type\Php\ReflectionFunctionConstructorThrowTypeExtension::__construct";i:380;s:75:"PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension::__construct";i:381;s:77:"PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension::__construct";i:382;s:67:"PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension::__construct";i:383;s:63:"PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension::__construct";i:384;s:72:"PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension::__construct";i:385;s:65:"PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension::__construct";i:386;s:60:"PHPStan\Type\Php\MbFunctionsReturnTypeExtension::__construct";i:387;s:77:"PHPStan\Type\Php\MbSubstituteCharacterDynamicReturnTypeExtension::__construct";i:388;s:65:"PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension::__construct";i:389;s:62:"PHPStan\Type\Php\SubstrDynamicReturnTypeExtension::__construct";i:390;s:68:"PHPStan\Type\Php\TriggerErrorDynamicReturnTypeExtension::__construct";i:391;s:78:"PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension::__construct";i:392;s:62:"PHPStan\Type\Php\RoundFunctionReturnTypeExtension::__construct";i:393;s:68:"PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension::__construct";i:394;s:71:"PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension::__construct";i:395;s:73:"PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension::__construct";i:396;s:64:"PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension::__construct";i:397;s:72:"PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension::__construct";i:398;s:79:"PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension::__construct";i:399;s:65:"PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension::__construct";i:400;s:78:"PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension::__construct";i:405;s:44:"PHPStan\Type\ClosureTypeFactory::__construct";i:406;s:49:"PHPStan\Rules\Functions\PrintfHelper::__construct";i:407;s:49:"_PHPStan_24e2736d6\Nette\DI\Container::getService";i:408;s:45:"PHPStan\Analyser\TypeSpecifierFactory::create";i:409;s:50:"PHPStan\Analyser\TypeSpecifierFactory::__construct";i:410;s:49:"PHPStan\File\FuzzyRelativePathHelper::__construct";i:411;s:50:"PHPStan\File\SimpleRelativePathHelper::__construct";i:412;s:59:"PHPStan\File\ParentDirectoryRelativePathHelper::__construct";i:413;s:43:"PHPStan\Cache\FileCacheStorage::__construct";i:414;s:38:"PHPStan\Parser\RichParser::__construct";i:415;s:42:"PHPStan\Parser\CleaningParser::__construct";i:416;s:40:"PHPStan\Parser\SimpleParser::__construct";i:417;s:40:"PHPStan\Parser\CachedParser::__construct";i:418;s:46:"PHPStan\Parser\PhpParserDecorator::__construct";i:419;s:35:"PHPStan\Parser\LexerFactory::create";i:421;s:44:"PHPStan\Parser\PhpParserFactory::__construct";i:422;s:39:"PHPStan\Rules\LazyRegistry::__construct";i:423;s:46:"PHPStan\PhpDoc\StubPhpDocProvider::__construct";i:424;s:76:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory::__construct";i:426;s:80:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory::create";i:427;s:64:"PHPStan\BetterReflection\Reflector\DefaultReflector::__construct";i:428;s:77:"PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector::__construct";i:430;s:73:"PHPStan\Reflection\BetterReflection\BetterReflectionProvider::__construct";i:431;s:85:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory::__construct";i:433;s:96:"PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory::__construct";i:436;s:93:"PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory::__construct";i:437;s:44:"PHPStan\Parser\LexerFactory::createEmulative";i:438;s:37:"PhpParser\ParserAbstract::__construct";i:440;s:45:"PHPStan\Parser\PathRoutingParser::__construct";i:441;s:38:"PHPStan\Parser\StubParser::__construct";i:443;s:54:"PHPStan\Diagnose\PHPStanDiagnoseExtension::__construct";i:444;s:68:"PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter::__construct";i:445;s:63:"PHPStan\Command\ErrorFormatter\TableErrorFormatter::__construct";i:446;s:68:"PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter::__construct";i:447;s:62:"PHPStan\Command\ErrorFormatter\JsonErrorFormatter::__construct";i:448;s:63:"PHPStan\Command\ErrorFormatter\JunitErrorFormatter::__construct";i:450;s:64:"PHPStan\Command\ErrorFormatter\GitlabErrorFormatter::__construct";i:451;s:64:"PHPStan\Command\ErrorFormatter\GithubErrorFormatter::__construct";i:452;s:66:"PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter::__construct";i:453;s:66:"PHPStan\Rules\Classes\ExistingClassInClassExtendsRule::__construct";i:454;s:64:"PHPStan\Rules\Classes\ExistingClassInInstanceOfRule::__construct";i:455;s:66:"PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule::__construct";i:456;s:66:"PHPStan\Rules\Functions\CallToNonExistentFunctionRule::__construct";i:457;s:59:"PHPStan\Rules\Constants\OverridingConstantRule::__construct";i:458;s:55:"PHPStan\Rules\Methods\OverridingMethodRule::__construct";i:459;s:52:"PHPStan\Rules\Missing\MissingReturnRule::__construct";i:460;s:65:"PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule::__construct";i:461;s:60:"PHPStan\Rules\Namespaces\ExistingNamesInUseRule::__construct";i:462;s:58:"PHPStan\Rules\Properties\AccessPropertiesRule::__construct";i:463;s:64:"PHPStan\Rules\Properties\AccessStaticPropertiesRule::__construct";i:464;s:69:"PHPStan\Rules\Properties\ExistingClassesInPropertiesRule::__construct";i:465;s:57:"PHPStan\Rules\Functions\FunctionCallableRule::__construct";i:466;s:60:"PHPStan\Rules\Properties\OverridingPropertyRule::__construct";i:467;s:66:"PHPStan\Rules\Properties\SetPropertyHookParameterRule::__construct";i:468;s:69:"PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule::__construct";i:469;s:68:"PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule::__construct";i:470;s:57:"PHPStan\Rules\Variables\CompactVariablesRule::__construct";i:471;s:56:"PHPStan\Rules\Variables\DefinedVariableRule::__construct";i:472;s:57:"PHPStan\Rules\Keywords\RequireFileExistsRule::__construct";i:473;s:44:"PHPStan\Rules\Classes\MixinRule::__construct";i:474;s:53:"PHPStan\Rules\PhpDoc\RequireExtendsCheck::__construct";i:475;s:70:"PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule::__construct";i:476;s:54:"PHPStan\Rules\Functions\CallCallablesRule::__construct";i:477;s:59:"PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule::__construct";i:478;s:61:"PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule::__construct";i:479;s:58:"PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule::__construct";i:480;s:63:"PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule::__construct";i:481;s:59:"PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule::__construct";i:482;s:70:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule::__construct";i:483;s:82:"PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule::__construct";i:484;s:80:"PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule::__construct";i:485;s:86:"PHPStan\Rules\Exceptions\ThrowsVoidPropertyHookWithExplicitThrowPointRule::__construct";i:486;s:55:"PHPStan\Rules\Generators\YieldFromTypeRule::__construct";i:487;s:58:"PHPStan\Rules\Generators\YieldInGeneratorRule::__construct";i:488;s:59:"PHPStan\Rules\Classes\ImpossibleInstanceOfRule::__construct";i:489;s:69:"PHPStan\Rules\Comparison\BooleanAndConstantConditionRule::__construct";i:490;s:68:"PHPStan\Rules\Comparison\BooleanOrConstantConditionRule::__construct";i:491;s:69:"PHPStan\Rules\Comparison\BooleanNotConstantConditionRule::__construct";i:492;s:60:"PHPStan\Rules\DeadCode\PossiblyPureNewCollector::__construct";i:493;s:65:"PHPStan\Rules\DeadCode\PossiblyPureFuncCallCollector::__construct";i:494;s:67:"PHPStan\Rules\DeadCode\PossiblyPureMethodCallCollector::__construct";i:495;s:67:"PHPStan\Rules\DeadCode\PossiblyPureStaticCallCollector::__construct";i:496;s:61:"PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule::__construct";i:497;s:70:"PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule::__construct";i:498;s:65:"PHPStan\Rules\Comparison\ElseIfConstantConditionRule::__construct";i:499;s:61:"PHPStan\Rules\Comparison\IfConstantConditionRule::__construct";i:500;s:73:"PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule::__construct";i:501;s:71:"PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule::__construct";i:502;s:77:"PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule::__construct";i:503;s:69:"PHPStan\Rules\Comparison\LogicalXorConstantConditionRule::__construct";i:504;s:57:"PHPStan\Rules\Comparison\MatchExpressionRule::__construct";i:505;s:84:"PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule::__construct";i:506;s:74:"PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule::__construct";i:507;s:65:"PHPStan\Rules\Comparison\ConstantLooseComparisonRule::__construct";i:508;s:74:"PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule::__construct";i:509;s:71:"PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule::__construct";i:510;s:70:"PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule::__construct";i:511;s:66:"PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule::__construct";i:512;s:64:"PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule::__construct";i:513;s:70:"PHPStan\Rules\Exceptions\TooWidePropertyHookThrowTypeRule::__construct";i:514;s:75:"PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule::__construct";i:515;s:63:"PHPStan\Rules\Properties\NullsafePropertyFetchRule::__construct";i:516;s:68:"PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule::__construct";i:517;s:60:"PHPStan\Rules\Functions\RandomIntParametersRule::__construct";i:518;s:52:"PHPStan\Rules\Functions\ArrayFilterRule::__construct";i:519;s:52:"PHPStan\Rules\Functions\ArrayValuesRule::__construct";i:520;s:66:"PHPStan\Rules\Functions\ParameterCastableToNumberRule::__construct";i:521;s:69:"Larastan\Larastan\Methods\RelationForwardsCallsExtension::__construct";i:522;s:66:"Larastan\Larastan\Methods\ModelForwardsCallsExtension::__construct";i:523;s:76:"Larastan\Larastan\Methods\EloquentBuilderForwardsCallsExtension::__construct";i:524;s:74:"Larastan\Larastan\Methods\HigherOrderCollectionProxyExtension::__construct";i:525;s:77:"Larastan\Larastan\Methods\StorageMethodsClassReflectionExtension::__construct";i:526;s:48:"Larastan\Larastan\Methods\Extension::__construct";i:527;s:82:"Larastan\Larastan\Methods\ModelFactoryMethodsClassReflectionExtension::__construct";i:528;s:75:"Larastan\Larastan\Methods\MacroMethodsClassReflectionExtension::__construct";i:529;s:64:"Larastan\Larastan\Properties\ModelAccessorExtension::__construct";i:530;s:64:"Larastan\Larastan\Properties\ModelPropertyExtension::__construct";i:531;s:85:"Larastan\Larastan\Properties\HigherOrderCollectionProxyPropertyExtension::__construct";i:532;s:95:"Larastan\Larastan\ReturnTypes\ContainerArrayAccessDynamicMethodReturnTypeExtension::__construct";i:536;s:65:"Larastan\Larastan\Properties\ModelRelationsExtension::__construct";i:537;s:93:"Larastan\Larastan\ReturnTypes\ModelFactoryDynamicStaticMethodReturnTypeExtension::__construct";i:538;s:86:"Larastan\Larastan\ReturnTypes\ModelDynamicStaticMethodReturnTypeExtension::__construct";i:539;s:76:"Larastan\Larastan\ReturnTypes\AppMakeDynamicReturnTypeExtension::__construct";i:540;s:67:"Larastan\Larastan\ReturnTypes\EloquentBuilderExtension::__construct";i:541;s:64:"Larastan\Larastan\ReturnTypes\RelationFindExtension::__construct";i:542;s:70:"Larastan\Larastan\ReturnTypes\RelationCollectionExtension::__construct";i:543;s:61:"Larastan\Larastan\ReturnTypes\ModelFindExtension::__construct";i:544;s:68:"Larastan\Larastan\ReturnTypes\BuilderModelFindExtension::__construct";i:545;s:55:"Larastan\Larastan\Support\CollectionHelper::__construct";i:546;s:67:"Larastan\Larastan\ReturnTypes\Helpers\CollectExtension::__construct";i:547;s:88:"Larastan\Larastan\ReturnTypes\NewModelQueryDynamicMethodReturnTypeExtension::__construct";i:548;s:75:"Larastan\Larastan\Types\AbortIfFunctionTypeSpecifyingExtension::__construct";i:552;s:63:"Larastan\Larastan\ReturnTypes\Helpers\AppExtension::__construct";i:553;s:87:"Larastan\Larastan\Types\GenericEloquentCollectionTypeNodeResolverExtension::__construct";i:554;s:52:"Larastan\Larastan\Rules\NoModelMakeRule::__construct";i:555;s:68:"Larastan\Larastan\Rules\NoUnnecessaryCollectionCallRule::__construct";i:556;s:53:"Larastan\Larastan\Rules\ModelAppendsRule::__construct";i:557;s:84:"Larastan\Larastan\Types\GenericEloquentBuilderTypeNodeResolverExtension::__construct";i:558;s:89:"Larastan\Larastan\Types\ModelProperty\ModelPropertyTypeNodeResolverExtension::__construct";i:559;s:57:"Larastan\Larastan\Properties\MigrationHelper::__construct";i:560;s:65:"Larastan\Larastan\Properties\SquashedMigrationHelper::__construct";i:561;s:57:"Larastan\Larastan\Properties\ModelCastHelper::__construct";i:562;s:61:"Larastan\Larastan\Properties\ModelPropertyHelper::__construct";i:563;s:52:"Larastan\Larastan\Methods\BuilderHelper::__construct";i:564;s:58:"Larastan\Larastan\Rules\RelationExistenceRule::__construct";i:565;s:97:"Larastan\Larastan\Rules\CheckDispatchArgumentTypesCompatibleWithClassConstructorRule::__construct";i:567;s:52:"Larastan\Larastan\Rules\UnusedViewsRule::__construct";i:568;s:72:"Larastan\Larastan\Collectors\UsedViewInAnotherViewCollector::__construct";i:569;s:53:"Larastan\Larastan\Support\ViewFileHelper::__construct";i:570;s:84:"Larastan\Larastan\ReturnTypes\ApplicationMakeDynamicReturnTypeExtension::__construct";i:571;s:82:"Larastan\Larastan\ReturnTypes\ContainerMakeDynamicReturnTypeExtension::__construct";i:572;s:92:"Larastan\Larastan\ReturnTypes\ConsoleCommand\ArgumentDynamicReturnTypeExtension::__construct";i:573;s:95:"Larastan\Larastan\ReturnTypes\ConsoleCommand\HasArgumentDynamicReturnTypeExtension::__construct";i:574;s:90:"Larastan\Larastan\ReturnTypes\ConsoleCommand\OptionDynamicReturnTypeExtension::__construct";i:575;s:93:"Larastan\Larastan\ReturnTypes\ConsoleCommand\HasOptionDynamicReturnTypeExtension::__construct";i:576;s:64:"Larastan\Larastan\Internal\ConsoleApplicationHelper::__construct";i:577;s:71:"Larastan\Larastan\Support\HigherOrderCollectionProxyHelper::__construct";i:578;s:42:"Carbon\PHPStan\MacroExtension::__construct";i:579;s:61:"PHPStan\Rules\Deprecations\DeprecatedClassHelper::__construct";i:580;s:76:"PHPStan\DependencyInjection\LazyDeprecatedScopeResolverProvider::__construct";i:581;s:68:"PHPStan\DependencyInjection\LazyDeprecatedScopeResolverProvider::get";i:582;s:71:"PHPStan\Rules\Deprecations\CallWithDeprecatedIniOptionRule::__construct";i:583;s:47:"PHPStan\Rules\PHPUnit\CoversHelper::__construct";i:584;s:55:"PHPStan\Rules\PHPUnit\DataProviderHelperFactory::create";i:585;s:60:"PHPStan\Rules\PHPUnit\DataProviderHelperFactory::__construct";i:586;s:62:"PHPStan\Rules\PHPUnit\DataProviderDeclarationRule::__construct";}i:5;s:32:"d1ebf4d092416d904f824b0a88c2c422";} \ No newline at end of file diff --git a/build/phpstan/cache/nette.configurator/container.journal b/build/phpstan/cache/nette.configurator/container.journal deleted file mode 100644 index 2b8d1b1..0000000 --- a/build/phpstan/cache/nette.configurator/container.journal +++ /dev/null @@ -1 +0,0 @@ -Container_c5db45e753:1740672537 diff --git a/build/phpstan/resultCache.php b/build/phpstan/resultCache.php deleted file mode 100644 index 32c4ea9..0000000 --- a/build/phpstan/resultCache.php +++ /dev/null @@ -1,3977 +0,0 @@ - 1740672423, - 'meta' => array ( - 'cacheVersion' => 'v12-linesToIgnore', - 'phpstanVersion' => '2.1.6', - 'metaExtensions' => - array ( - ), - 'phpVersion' => 80312, - 'projectConfig' => '{parameters: {level: 5, paths: [/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src, /Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/config], tmpDir: /Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/build/phpstan, checkOctaneCompatibility: true, checkModelProperties: true, noEnvCallsOutsideOfConfig: false}}', - 'analysedPaths' => - array ( - 0 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src', - 1 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/config', - ), - 'scannedFiles' => - array ( - ), - 'composerLocks' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/composer.lock' => '44989410ec5d2220b79dc75ffbe1e90b8cd600ca', - ), - 'composerInstalled' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/installed.php' => - array ( - 'versions' => - array ( - 'brianium/paratest' => - array ( - 'pretty_version' => 'v7.7.0', - 'version' => '7.7.0.0', - 'reference' => '4fb3f73bc5a4c3146bac2850af7dc72435a32daf', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../brianium/paratest', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'brick/math' => - array ( - 'pretty_version' => '0.12.2', - 'version' => '0.12.2.0', - 'reference' => '901eddb1e45a8e0f689302e40af871c181ecbe40', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../brick/math', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'carbonphp/carbon-doctrine-types' => - array ( - 'pretty_version' => '3.2.0', - 'version' => '3.2.0.0', - 'reference' => '18ba5ddfec8976260ead6e866180bd5d2f71aa1d', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../carbonphp/carbon-doctrine-types', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'composer/semver' => - array ( - 'pretty_version' => '3.4.3', - 'version' => '3.4.3.0', - 'reference' => '4313d26ada5e0c4edfbd1dc481a92ff7bff91f12', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/./semver', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'cordoval/hamcrest-php' => - array ( - 'dev_requirement' => true, - 'replaced' => - array ( - 0 => '*', - ), - ), - 'davedevelopment/hamcrest-php' => - array ( - 'dev_requirement' => true, - 'replaced' => - array ( - 0 => '*', - ), - ), - 'dflydev/dot-access-data' => - array ( - 'pretty_version' => 'v3.0.3', - 'version' => '3.0.3.0', - 'reference' => 'a23a2bf4f31d3518f3ecb38660c95715dfead60f', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../dflydev/dot-access-data', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'doctrine/deprecations' => - array ( - 'pretty_version' => '1.1.4', - 'version' => '1.1.4.0', - 'reference' => '31610dbb31faa98e6b5447b62340826f54fbc4e9', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../doctrine/deprecations', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'doctrine/inflector' => - array ( - 'pretty_version' => '2.0.10', - 'version' => '2.0.10.0', - 'reference' => '5817d0659c5b50c9b950feb9af7b9668e2c436bc', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../doctrine/inflector', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'doctrine/lexer' => - array ( - 'pretty_version' => '3.0.1', - 'version' => '3.0.1.0', - 'reference' => '31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../doctrine/lexer', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'dragonmantank/cron-expression' => - array ( - 'pretty_version' => 'v3.4.0', - 'version' => '3.4.0.0', - 'reference' => '8c784d071debd117328803d86b2097615b457500', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../dragonmantank/cron-expression', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'egulias/email-validator' => - array ( - 'pretty_version' => '4.0.3', - 'version' => '4.0.3.0', - 'reference' => 'b115554301161fa21467629f1e1391c1936de517', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../egulias/email-validator', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'fakerphp/faker' => - array ( - 'pretty_version' => 'v1.24.1', - 'version' => '1.24.1.0', - 'reference' => 'e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../fakerphp/faker', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'fidry/cpu-core-counter' => - array ( - 'pretty_version' => '1.2.0', - 'version' => '1.2.0.0', - 'reference' => '8520451a140d3f46ac33042715115e290cf5785f', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../fidry/cpu-core-counter', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'filp/whoops' => - array ( - 'pretty_version' => '2.17.0', - 'version' => '2.17.0.0', - 'reference' => '075bc0c26631110584175de6523ab3f1652eb28e', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../filp/whoops', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'fruitcake/php-cors' => - array ( - 'pretty_version' => 'v1.3.0', - 'version' => '1.3.0.0', - 'reference' => '3d158f36e7875e2f040f37bc0573956240a5a38b', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../fruitcake/php-cors', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'graham-campbell/result-type' => - array ( - 'pretty_version' => 'v1.1.3', - 'version' => '1.1.3.0', - 'reference' => '3ba905c11371512af9d9bdd27d99b782216b6945', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../graham-campbell/result-type', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'guzzlehttp/guzzle' => - array ( - 'pretty_version' => '7.9.2', - 'version' => '7.9.2.0', - 'reference' => 'd281ed313b989f213357e3be1a179f02196ac99b', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../guzzlehttp/guzzle', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'guzzlehttp/promises' => - array ( - 'pretty_version' => '2.0.4', - 'version' => '2.0.4.0', - 'reference' => 'f9c436286ab2892c7db7be8c8da4ef61ccf7b455', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../guzzlehttp/promises', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'guzzlehttp/psr7' => - array ( - 'pretty_version' => '2.7.0', - 'version' => '2.7.0.0', - 'reference' => 'a70f5c95fb43bc83f07c9c948baa0dc1829bf201', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../guzzlehttp/psr7', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'guzzlehttp/uri-template' => - array ( - 'pretty_version' => 'v1.0.4', - 'version' => '1.0.4.0', - 'reference' => '30e286560c137526eccd4ce21b2de477ab0676d2', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../guzzlehttp/uri-template', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'hamcrest/hamcrest-php' => - array ( - 'pretty_version' => 'v2.0.1', - 'version' => '2.0.1.0', - 'reference' => '8c3d0a3f6af734494ad8f6fbbee0ba92422859f3', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../hamcrest/hamcrest-php', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'illuminate/auth' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/broadcasting' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/bus' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/cache' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/collections' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/concurrency' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/conditionable' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/config' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/console' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/container' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/contracts' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/cookie' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/database' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/encryption' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/events' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/filesystem' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/hashing' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/http' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/log' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/macroable' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/mail' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/notifications' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/pagination' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/pipeline' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/process' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/queue' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/redis' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/routing' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/session' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/support' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/testing' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/translation' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/validation' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'illuminate/view' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => 'v12.0.1', - ), - ), - 'jean85/pretty-package-versions' => - array ( - 'pretty_version' => '2.1.0', - 'version' => '2.1.0.0', - 'reference' => '3c4e5f62ba8d7de1734312e4fff32f67a8daaf10', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../jean85/pretty-package-versions', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'kodova/hamcrest-php' => - array ( - 'dev_requirement' => true, - 'replaced' => - array ( - 0 => '*', - ), - ), - 'larastan/larastan' => - array ( - 'pretty_version' => 'v3.1.0', - 'version' => '3.1.0.0', - 'reference' => 'dbb2dc20e5c8e1ed3ff289054e1955f269187312', - 'type' => 'phpstan-extension', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../larastan/larastan', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'laravel/framework' => - array ( - 'pretty_version' => 'v12.0.1', - 'version' => '12.0.1.0', - 'reference' => 'd99e2385a6d4324782d52f4423891966425641be', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../laravel/framework', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'laravel/pail' => - array ( - 'pretty_version' => 'v1.2.2', - 'version' => '1.2.2.0', - 'reference' => 'f31f4980f52be17c4667f3eafe034e6826787db2', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../laravel/pail', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'laravel/pint' => - array ( - 'pretty_version' => 'v1.21.0', - 'version' => '1.21.0.0', - 'reference' => '531fa0871fbde719c51b12afa3a443b8f4e4b425', - 'type' => 'project', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../laravel/pint', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'laravel/prompts' => - array ( - 'pretty_version' => 'v0.3.5', - 'version' => '0.3.5.0', - 'reference' => '57b8f7efe40333cdb925700891c7d7465325d3b1', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../laravel/prompts', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'laravel/serializable-closure' => - array ( - 'pretty_version' => 'v2.0.3', - 'version' => '2.0.3.0', - 'reference' => 'f379c13663245f7aa4512a7869f62eb14095f23f', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../laravel/serializable-closure', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'laravel/tinker' => - array ( - 'pretty_version' => 'v2.10.1', - 'version' => '2.10.1.0', - 'reference' => '22177cc71807d38f2810c6204d8f7183d88a57d3', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../laravel/tinker', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'league/commonmark' => - array ( - 'pretty_version' => '2.6.1', - 'version' => '2.6.1.0', - 'reference' => 'd990688c91cedfb69753ffc2512727ec646df2ad', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../league/commonmark', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'league/config' => - array ( - 'pretty_version' => 'v1.2.0', - 'version' => '1.2.0.0', - 'reference' => '754b3604fb2984c71f4af4a9cbe7b57f346ec1f3', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../league/config', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'league/flysystem' => - array ( - 'pretty_version' => '3.29.1', - 'version' => '3.29.1.0', - 'reference' => 'edc1bb7c86fab0776c3287dbd19b5fa278347319', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../league/flysystem', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'league/flysystem-local' => - array ( - 'pretty_version' => '3.29.0', - 'version' => '3.29.0.0', - 'reference' => 'e0e8d52ce4b2ed154148453d321e97c8e931bd27', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../league/flysystem-local', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'league/mime-type-detection' => - array ( - 'pretty_version' => '1.16.0', - 'version' => '1.16.0.0', - 'reference' => '2d6702ff215bf922936ccc1ad31007edc76451b9', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../league/mime-type-detection', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'league/uri' => - array ( - 'pretty_version' => '7.5.1', - 'version' => '7.5.1.0', - 'reference' => '81fb5145d2644324614cc532b28efd0215bda430', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../league/uri', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'league/uri-interfaces' => - array ( - 'pretty_version' => '7.5.0', - 'version' => '7.5.0.0', - 'reference' => '08cfc6c4f3d811584fb09c37e2849e6a7f9b0742', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../league/uri-interfaces', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'mockery/mockery' => - array ( - 'pretty_version' => '1.6.12', - 'version' => '1.6.12.0', - 'reference' => '1f4efdd7d3beafe9807b08156dfcb176d18f1699', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../mockery/mockery', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'monolog/monolog' => - array ( - 'pretty_version' => '3.8.1', - 'version' => '3.8.1.0', - 'reference' => 'aef6ee73a77a66e404dd6540934a9ef1b3c855b4', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../monolog/monolog', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'mtdowling/cron-expression' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => '^1.0', - ), - ), - 'myclabs/deep-copy' => - array ( - 'pretty_version' => '1.13.0', - 'version' => '1.13.0.0', - 'reference' => '024473a478be9df5fdaca2c793f2232fe788e414', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../myclabs/deep-copy', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'nesbot/carbon' => - array ( - 'pretty_version' => '3.8.6', - 'version' => '3.8.6.0', - 'reference' => 'ff2f20cf83bd4d503720632ce8a426dc747bf7fd', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../nesbot/carbon', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'nette/schema' => - array ( - 'pretty_version' => 'v1.3.2', - 'version' => '1.3.2.0', - 'reference' => 'da801d52f0354f70a638673c4a0f04e16529431d', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../nette/schema', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'nette/utils' => - array ( - 'pretty_version' => 'v4.0.5', - 'version' => '4.0.5.0', - 'reference' => '736c567e257dbe0fcf6ce81b4d6dbe05c6899f96', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../nette/utils', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'nikic/php-parser' => - array ( - 'pretty_version' => 'v5.4.0', - 'version' => '5.4.0.0', - 'reference' => '447a020a1f875a434d62f2a401f53b82a396e494', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../nikic/php-parser', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'nunomaduro/collision' => - array ( - 'pretty_version' => 'v8.6.1', - 'version' => '8.6.1.0', - 'reference' => '86f003c132143d5a2ab214e19933946409e0cae7', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../nunomaduro/collision', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'nunomaduro/termwind' => - array ( - 'pretty_version' => 'v2.3.0', - 'version' => '2.3.0.0', - 'reference' => '52915afe6a1044e8b9cee1bcff836fb63acf9cda', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../nunomaduro/termwind', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'orchestra/canvas' => - array ( - 'pretty_version' => 'v10.0.1', - 'version' => '10.0.1.0', - 'reference' => '8665e96c254350484ded1cdf158765767abc7075', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../orchestra/canvas', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'orchestra/canvas-core' => - array ( - 'pretty_version' => 'v10.0.1', - 'version' => '10.0.1.0', - 'reference' => '22b6515e7a070e1c45c8a3a9819f8b6cb0234173', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../orchestra/canvas-core', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'orchestra/sidekick' => - array ( - 'pretty_version' => 'v1.0.4', - 'version' => '1.0.4.0', - 'reference' => '95e056508a5990480fc9a67cacf1119b58d8d233', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../orchestra/sidekick', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'orchestra/testbench' => - array ( - 'pretty_version' => 'v10.0.0', - 'version' => '10.0.0.0', - 'reference' => 'b10f1dec6253a87961349e92ac1420c9aebfacd0', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../orchestra/testbench', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'orchestra/testbench-core' => - array ( - 'pretty_version' => 'v10.0.2', - 'version' => '10.0.2.0', - 'reference' => '4a412b377ab8c616fc4c239f50bf82e4092b859b', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../orchestra/testbench-core', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'orchestra/workbench' => - array ( - 'pretty_version' => 'v10.0.0', - 'version' => '10.0.0.0', - 'reference' => '93fcc3ec455a12e7468cacbab28179968ac68468', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../orchestra/workbench', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'pestphp/pest' => - array ( - 'pretty_version' => 'v3.7.4', - 'version' => '3.7.4.0', - 'reference' => '4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../pestphp/pest', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'pestphp/pest-plugin' => - array ( - 'pretty_version' => 'v3.0.0', - 'version' => '3.0.0.0', - 'reference' => 'e79b26c65bc11c41093b10150c1341cc5cdbea83', - 'type' => 'composer-plugin', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../pestphp/pest-plugin', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'pestphp/pest-plugin-arch' => - array ( - 'pretty_version' => 'v3.0.0', - 'version' => '3.0.0.0', - 'reference' => '0a27e55a270cfe73d8cb70551b91002ee2cb64b0', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../pestphp/pest-plugin-arch', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'pestphp/pest-plugin-mutate' => - array ( - 'pretty_version' => 'v3.0.5', - 'version' => '3.0.5.0', - 'reference' => 'e10dbdc98c9e2f3890095b4fe2144f63a5717e08', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../pestphp/pest-plugin-mutate', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phar-io/manifest' => - array ( - 'pretty_version' => '2.0.4', - 'version' => '2.0.4.0', - 'reference' => '54750ef60c58e43759730615a392c31c80e23176', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phar-io/manifest', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phar-io/version' => - array ( - 'pretty_version' => '3.2.1', - 'version' => '3.2.1.0', - 'reference' => '4f7fd7836c6f332bb2933569e566a0d6c4cbed74', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phar-io/version', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'php-di/invoker' => - array ( - 'pretty_version' => '2.3.6', - 'version' => '2.3.6.0', - 'reference' => '59f15608528d8a8838d69b422a919fd6b16aa576', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../php-di/invoker', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'php-di/php-di' => - array ( - 'pretty_version' => '7.0.8', - 'version' => '7.0.8.0', - 'reference' => '98ddc81f8f768a2ad39e4cbe737285eaeabe577a', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../php-di/php-di', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpdocumentor/reflection-common' => - array ( - 'pretty_version' => '2.2.0', - 'version' => '2.2.0.0', - 'reference' => '1d01c49d4ed62f25aa84a747ad35d5a16924662b', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpdocumentor/reflection-common', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpdocumentor/reflection-docblock' => - array ( - 'pretty_version' => '5.6.1', - 'version' => '5.6.1.0', - 'reference' => 'e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpdocumentor/reflection-docblock', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpdocumentor/type-resolver' => - array ( - 'pretty_version' => '1.10.0', - 'version' => '1.10.0.0', - 'reference' => '679e3ce485b99e84c775d28e2e96fade9a7fb50a', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpdocumentor/type-resolver', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpmyadmin/sql-parser' => - array ( - 'pretty_version' => '5.11.0', - 'version' => '5.11.0.0', - 'reference' => '07044bc8c13abd542756c3fd34dc66a5d6dee8e4', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpmyadmin/sql-parser', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpoption/phpoption' => - array ( - 'pretty_version' => '1.9.3', - 'version' => '1.9.3.0', - 'reference' => 'e3fac8b24f56113f7cb96af14958c0dd16330f54', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpoption/phpoption', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'phpstan/extension-installer' => - array ( - 'pretty_version' => '1.4.3', - 'version' => '1.4.3.0', - 'reference' => '85e90b3942d06b2326fba0403ec24fe912372936', - 'type' => 'composer-plugin', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpstan/extension-installer', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpstan/phpdoc-parser' => - array ( - 'pretty_version' => '2.1.0', - 'version' => '2.1.0.0', - 'reference' => '9b30d6fd026b2c132b3985ce6b23bec09ab3aa68', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpstan/phpdoc-parser', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpstan/phpstan' => - array ( - 'pretty_version' => '2.1.6', - 'version' => '2.1.6.0', - 'reference' => '6eaec7c6c9e90dcfe46ad1e1ffa5171e2dab641c', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpstan/phpstan', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpstan/phpstan-deprecation-rules' => - array ( - 'pretty_version' => '2.0.1', - 'version' => '2.0.1.0', - 'reference' => '1cc1259cb91ee4cfbb5c39bca9f635f067c910b4', - 'type' => 'phpstan-extension', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpstan/phpstan-deprecation-rules', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpstan/phpstan-phpunit' => - array ( - 'pretty_version' => '2.0.4', - 'version' => '2.0.4.0', - 'reference' => 'd09e152f403c843998d7a52b5d87040c937525dd', - 'type' => 'phpstan-extension', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpstan/phpstan-phpunit', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpunit/php-code-coverage' => - array ( - 'pretty_version' => '11.0.9', - 'version' => '11.0.9.0', - 'reference' => '14d63fbcca18457e49c6f8bebaa91a87e8e188d7', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpunit/php-code-coverage', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpunit/php-file-iterator' => - array ( - 'pretty_version' => '5.1.0', - 'version' => '5.1.0.0', - 'reference' => '118cfaaa8bc5aef3287bf315b6060b1174754af6', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpunit/php-file-iterator', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpunit/php-invoker' => - array ( - 'pretty_version' => '5.0.1', - 'version' => '5.0.1.0', - 'reference' => 'c1ca3814734c07492b3d4c5f794f4b0995333da2', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpunit/php-invoker', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpunit/php-text-template' => - array ( - 'pretty_version' => '4.0.1', - 'version' => '4.0.1.0', - 'reference' => '3e0404dc6b300e6bf56415467ebcb3fe4f33e964', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpunit/php-text-template', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpunit/php-timer' => - array ( - 'pretty_version' => '7.0.1', - 'version' => '7.0.1.0', - 'reference' => '3b415def83fbcb41f991d9ebf16ae4ad8b7837b3', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpunit/php-timer', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpunit/phpunit' => - array ( - 'pretty_version' => '11.5.3', - 'version' => '11.5.3.0', - 'reference' => '30e319e578a7b5da3543073e30002bf82042f701', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../phpunit/phpunit', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'psr/clock' => - array ( - 'pretty_version' => '1.0.0', - 'version' => '1.0.0.0', - 'reference' => 'e41a24703d4560fd0acb709162f73b8adfc3aa0d', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../psr/clock', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'psr/clock-implementation' => - array ( - 'dev_requirement' => false, - 'provided' => - array ( - 0 => '1.0', - ), - ), - 'psr/container' => - array ( - 'pretty_version' => '2.0.2', - 'version' => '2.0.2.0', - 'reference' => 'c71ecc56dfe541dbd90c5360474fbc405f8d5963', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../psr/container', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'psr/container-implementation' => - array ( - 'dev_requirement' => false, - 'provided' => - array ( - 0 => '^1.0', - 1 => '1.1|2.0', - ), - ), - 'psr/event-dispatcher' => - array ( - 'pretty_version' => '1.0.0', - 'version' => '1.0.0.0', - 'reference' => 'dbefd12671e8a14ec7f180cab83036ed26714bb0', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../psr/event-dispatcher', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'psr/event-dispatcher-implementation' => - array ( - 'dev_requirement' => false, - 'provided' => - array ( - 0 => '1.0', - ), - ), - 'psr/http-client' => - array ( - 'pretty_version' => '1.0.3', - 'version' => '1.0.3.0', - 'reference' => 'bb5906edc1c324c9a05aa0873d40117941e5fa90', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../psr/http-client', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'psr/http-client-implementation' => - array ( - 'dev_requirement' => false, - 'provided' => - array ( - 0 => '1.0', - ), - ), - 'psr/http-factory' => - array ( - 'pretty_version' => '1.1.0', - 'version' => '1.1.0.0', - 'reference' => '2b4765fddfe3b508ac62f829e852b1501d3f6e8a', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../psr/http-factory', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'psr/http-factory-implementation' => - array ( - 'dev_requirement' => false, - 'provided' => - array ( - 0 => '1.0', - ), - ), - 'psr/http-message' => - array ( - 'pretty_version' => '2.0', - 'version' => '2.0.0.0', - 'reference' => '402d35bcb92c70c026d1a6a9883f06b2ead23d71', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../psr/http-message', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'psr/http-message-implementation' => - array ( - 'dev_requirement' => false, - 'provided' => - array ( - 0 => '1.0', - ), - ), - 'psr/log' => - array ( - 'pretty_version' => '3.0.2', - 'version' => '3.0.2.0', - 'reference' => 'f16e1d5863e37f8d8c2a01719f5b34baa2b714d3', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../psr/log', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'psr/log-implementation' => - array ( - 'dev_requirement' => false, - 'provided' => - array ( - 0 => '3.0.0', - 1 => '1.0|2.0|3.0', - ), - ), - 'psr/simple-cache' => - array ( - 'pretty_version' => '3.0.0', - 'version' => '3.0.0.0', - 'reference' => '764e0b3939f5ca87cb904f570ef9be2d78a07865', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../psr/simple-cache', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'psr/simple-cache-implementation' => - array ( - 'dev_requirement' => false, - 'provided' => - array ( - 0 => '1.0|2.0|3.0', - ), - ), - 'psy/psysh' => - array ( - 'pretty_version' => 'v0.12.7', - 'version' => '0.12.7.0', - 'reference' => 'd73fa3c74918ef4522bb8a3bf9cab39161c4b57c', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../psy/psysh', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'ralouphie/getallheaders' => - array ( - 'pretty_version' => '3.0.3', - 'version' => '3.0.3.0', - 'reference' => '120b605dfeb996808c31b6477290a714d356e822', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../ralouphie/getallheaders', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'ramsey/collection' => - array ( - 'pretty_version' => '2.0.0', - 'version' => '2.0.0.0', - 'reference' => 'a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../ramsey/collection', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'ramsey/uuid' => - array ( - 'pretty_version' => '4.7.6', - 'version' => '4.7.6.0', - 'reference' => '91039bc1faa45ba123c4328958e620d382ec7088', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../ramsey/uuid', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'rhumsaa/uuid' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => '4.7.6', - ), - ), - 'sebastian/cli-parser' => - array ( - 'pretty_version' => '3.0.2', - 'version' => '3.0.2.0', - 'reference' => '15c5dd40dc4f38794d383bb95465193f5e0ae180', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/cli-parser', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/code-unit' => - array ( - 'pretty_version' => '3.0.2', - 'version' => '3.0.2.0', - 'reference' => 'ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/code-unit', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/code-unit-reverse-lookup' => - array ( - 'pretty_version' => '4.0.1', - 'version' => '4.0.1.0', - 'reference' => '183a9b2632194febd219bb9246eee421dad8d45e', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/code-unit-reverse-lookup', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/comparator' => - array ( - 'pretty_version' => '6.3.0', - 'version' => '6.3.0.0', - 'reference' => 'd4e47a769525c4dd38cea90e5dcd435ddbbc7115', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/comparator', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/complexity' => - array ( - 'pretty_version' => '4.0.1', - 'version' => '4.0.1.0', - 'reference' => 'ee41d384ab1906c68852636b6de493846e13e5a0', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/complexity', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/diff' => - array ( - 'pretty_version' => '6.0.2', - 'version' => '6.0.2.0', - 'reference' => 'b4ccd857127db5d41a5b676f24b51371d76d8544', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/diff', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/environment' => - array ( - 'pretty_version' => '7.2.0', - 'version' => '7.2.0.0', - 'reference' => '855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/environment', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/exporter' => - array ( - 'pretty_version' => '6.3.0', - 'version' => '6.3.0.0', - 'reference' => '3473f61172093b2da7de1fb5782e1f24cc036dc3', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/exporter', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/global-state' => - array ( - 'pretty_version' => '7.0.2', - 'version' => '7.0.2.0', - 'reference' => '3be331570a721f9a4b5917f4209773de17f747d7', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/global-state', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/lines-of-code' => - array ( - 'pretty_version' => '3.0.1', - 'version' => '3.0.1.0', - 'reference' => 'd36ad0d782e5756913e42ad87cb2890f4ffe467a', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/lines-of-code', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/object-enumerator' => - array ( - 'pretty_version' => '6.0.1', - 'version' => '6.0.1.0', - 'reference' => 'f5b498e631a74204185071eb41f33f38d64608aa', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/object-enumerator', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/object-reflector' => - array ( - 'pretty_version' => '4.0.1', - 'version' => '4.0.1.0', - 'reference' => '6e1a43b411b2ad34146dee7524cb13a068bb35f9', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/object-reflector', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/recursion-context' => - array ( - 'pretty_version' => '6.0.2', - 'version' => '6.0.2.0', - 'reference' => '694d156164372abbd149a4b85ccda2e4670c0e16', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/recursion-context', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/type' => - array ( - 'pretty_version' => '5.1.0', - 'version' => '5.1.0.0', - 'reference' => '461b9c5da241511a2a0e8f240814fb23ce5c0aac', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/type', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/version' => - array ( - 'pretty_version' => '5.0.2', - 'version' => '5.0.2.0', - 'reference' => 'c687e3387b99f5b03b6caa64c74b63e2936ff874', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../sebastian/version', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'spatie/backtrace' => - array ( - 'pretty_version' => '1.7.1', - 'version' => '1.7.1.0', - 'reference' => '0f2477c520e3729de58e061b8192f161c99f770b', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../spatie/backtrace', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'spatie/laravel-package-tools' => - array ( - 'pretty_version' => '1.19.0', - 'version' => '1.19.0.0', - 'reference' => '1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../spatie/laravel-package-tools', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'spatie/laravel-ray' => - array ( - 'pretty_version' => '1.39.1', - 'version' => '1.39.1.0', - 'reference' => '0d890fa2cd2c0b6175cf54c56b9321d81047571d', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../spatie/laravel-ray', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'spatie/macroable' => - array ( - 'pretty_version' => '2.0.0', - 'version' => '2.0.0.0', - 'reference' => 'ec2c320f932e730607aff8052c44183cf3ecb072', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../spatie/macroable', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'spatie/once' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => '*', - ), - ), - 'spatie/ray' => - array ( - 'pretty_version' => '1.41.5', - 'version' => '1.41.5.0', - 'reference' => '9d078f04ffa32ad543a20716844ec343fdd7d856', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../spatie/ray', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'staabm/side-effects-detector' => - array ( - 'pretty_version' => '1.0.5', - 'version' => '1.0.5.0', - 'reference' => 'd8334211a140ce329c13726d4a715adbddd0a163', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../staabm/side-effects-detector', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'symfony/clock' => - array ( - 'pretty_version' => 'v7.2.0', - 'version' => '7.2.0.0', - 'reference' => 'b81435fbd6648ea425d1ee96a2d8e68f4ceacd24', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/clock', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/console' => - array ( - 'pretty_version' => 'v7.2.1', - 'version' => '7.2.1.0', - 'reference' => 'fefcc18c0f5d0efe3ab3152f15857298868dc2c3', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/console', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/css-selector' => - array ( - 'pretty_version' => 'v7.2.0', - 'version' => '7.2.0.0', - 'reference' => '601a5ce9aaad7bf10797e3663faefce9e26c24e2', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/css-selector', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/deprecation-contracts' => - array ( - 'pretty_version' => 'v3.5.1', - 'version' => '3.5.1.0', - 'reference' => '74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/deprecation-contracts', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/error-handler' => - array ( - 'pretty_version' => 'v7.2.4', - 'version' => '7.2.4.0', - 'reference' => 'aabf79938aa795350c07ce6464dd1985607d95d5', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/error-handler', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/event-dispatcher' => - array ( - 'pretty_version' => 'v7.2.0', - 'version' => '7.2.0.0', - 'reference' => '910c5db85a5356d0fea57680defec4e99eb9c8c1', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/event-dispatcher', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/event-dispatcher-contracts' => - array ( - 'pretty_version' => 'v3.5.1', - 'version' => '3.5.1.0', - 'reference' => '7642f5e970b672283b7823222ae8ef8bbc160b9f', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/event-dispatcher-contracts', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/event-dispatcher-implementation' => - array ( - 'dev_requirement' => false, - 'provided' => - array ( - 0 => '2.0|3.0', - ), - ), - 'symfony/finder' => - array ( - 'pretty_version' => 'v7.2.2', - 'version' => '7.2.2.0', - 'reference' => '87a71856f2f56e4100373e92529eed3171695cfb', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/finder', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/http-foundation' => - array ( - 'pretty_version' => 'v7.2.3', - 'version' => '7.2.3.0', - 'reference' => 'ee1b504b8926198be89d05e5b6fc4c3810c090f0', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/http-foundation', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/http-kernel' => - array ( - 'pretty_version' => 'v7.2.4', - 'version' => '7.2.4.0', - 'reference' => '9f1103734c5789798fefb90e91de4586039003ed', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/http-kernel', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/mailer' => - array ( - 'pretty_version' => 'v7.2.3', - 'version' => '7.2.3.0', - 'reference' => 'f3871b182c44997cf039f3b462af4a48fb85f9d3', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/mailer', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/mime' => - array ( - 'pretty_version' => 'v7.2.4', - 'version' => '7.2.4.0', - 'reference' => '87ca22046b78c3feaff04b337f33b38510fd686b', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/mime', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/polyfill-ctype' => - array ( - 'pretty_version' => 'v1.31.0', - 'version' => '1.31.0.0', - 'reference' => 'a3cc8b044a6ea513310cbd48ef7333b384945638', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-ctype', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/polyfill-iconv' => - array ( - 'pretty_version' => 'v1.31.0', - 'version' => '1.31.0.0', - 'reference' => '48becf00c920479ca2e910c22a5a39e5d47ca956', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-iconv', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'symfony/polyfill-intl-grapheme' => - array ( - 'pretty_version' => 'v1.31.0', - 'version' => '1.31.0.0', - 'reference' => 'b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-intl-grapheme', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/polyfill-intl-idn' => - array ( - 'pretty_version' => 'v1.31.0', - 'version' => '1.31.0.0', - 'reference' => 'c36586dcf89a12315939e00ec9b4474adcb1d773', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-intl-idn', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/polyfill-intl-normalizer' => - array ( - 'pretty_version' => 'v1.31.0', - 'version' => '1.31.0.0', - 'reference' => '3833d7255cc303546435cb650316bff708a1c75c', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-intl-normalizer', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/polyfill-mbstring' => - array ( - 'pretty_version' => 'v1.31.0', - 'version' => '1.31.0.0', - 'reference' => '85181ba99b2345b0ef10ce42ecac37612d9fd341', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-mbstring', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/polyfill-php80' => - array ( - 'pretty_version' => 'v1.31.0', - 'version' => '1.31.0.0', - 'reference' => '60328e362d4c2c802a54fcbf04f9d3fb892b4cf8', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-php80', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/polyfill-php83' => - array ( - 'pretty_version' => 'v1.31.0', - 'version' => '1.31.0.0', - 'reference' => '2fb86d65e2d424369ad2905e83b236a8805ba491', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-php83', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/polyfill-php84' => - array ( - 'pretty_version' => 'v1.31.0', - 'version' => '1.31.0.0', - 'reference' => 'e5493eb51311ab0b1cc2243416613f06ed8f18bd', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-php84', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'symfony/polyfill-uuid' => - array ( - 'pretty_version' => 'v1.31.0', - 'version' => '1.31.0.0', - 'reference' => '21533be36c24be3f4b1669c4725c7d1d2bab4ae2', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/polyfill-uuid', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/process' => - array ( - 'pretty_version' => 'v7.2.4', - 'version' => '7.2.4.0', - 'reference' => 'd8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/process', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/routing' => - array ( - 'pretty_version' => 'v7.2.3', - 'version' => '7.2.3.0', - 'reference' => 'ee9a67edc6baa33e5fae662f94f91fd262930996', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/routing', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/service-contracts' => - array ( - 'pretty_version' => 'v3.5.1', - 'version' => '3.5.1.0', - 'reference' => 'e53260aabf78fb3d63f8d79d69ece59f80d5eda0', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/service-contracts', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/stopwatch' => - array ( - 'pretty_version' => 'v7.2.4', - 'version' => '7.2.4.0', - 'reference' => '5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/stopwatch', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'symfony/string' => - array ( - 'pretty_version' => 'v7.2.0', - 'version' => '7.2.0.0', - 'reference' => '446e0d146f991dde3e73f45f2c97a9faad773c82', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/string', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/translation' => - array ( - 'pretty_version' => 'v7.2.4', - 'version' => '7.2.4.0', - 'reference' => '283856e6981286cc0d800b53bd5703e8e363f05a', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/translation', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/translation-contracts' => - array ( - 'pretty_version' => 'v3.5.1', - 'version' => '3.5.1.0', - 'reference' => '4667ff3bd513750603a09c8dedbea942487fb07c', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/translation-contracts', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/translation-implementation' => - array ( - 'dev_requirement' => false, - 'provided' => - array ( - 0 => '2.3|3.0', - ), - ), - 'symfony/uid' => - array ( - 'pretty_version' => 'v7.2.0', - 'version' => '7.2.0.0', - 'reference' => '2d294d0c48df244c71c105a169d0190bfb080426', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/uid', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/var-dumper' => - array ( - 'pretty_version' => 'v7.2.3', - 'version' => '7.2.3.0', - 'reference' => '82b478c69745d8878eb60f9a049a4d584996f73a', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/var-dumper', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/yaml' => - array ( - 'pretty_version' => 'v7.2.3', - 'version' => '7.2.3.0', - 'reference' => 'ac238f173df0c9c1120f862d0f599e17535a87ec', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../symfony/yaml', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'ta-tikoma/phpunit-architecture-test' => - array ( - 'pretty_version' => '0.8.4', - 'version' => '0.8.4.0', - 'reference' => '89f0dea1cb0f0d5744d3ec1764a286af5e006636', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../ta-tikoma/phpunit-architecture-test', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'theseer/tokenizer' => - array ( - 'pretty_version' => '1.2.3', - 'version' => '1.2.3.0', - 'reference' => '737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../theseer/tokenizer', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'tijsverkoyen/css-to-inline-styles' => - array ( - 'pretty_version' => 'v2.3.0', - 'version' => '2.3.0.0', - 'reference' => '0d72ac1c00084279c1816675284073c5a337c20d', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../tijsverkoyen/css-to-inline-styles', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'vlucas/phpdotenv' => - array ( - 'pretty_version' => 'v5.6.1', - 'version' => '5.6.1.0', - 'reference' => 'a59a13791077fe3d44f90e7133eb68e7d22eaff2', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../vlucas/phpdotenv', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'voku/portable-ascii' => - array ( - 'pretty_version' => '2.0.3', - 'version' => '2.0.3.0', - 'reference' => 'b1d923f88091c6bf09699efcd7c8a1b1bfd7351d', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../voku/portable-ascii', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'webmozart/assert' => - array ( - 'pretty_version' => '1.11.0', - 'version' => '1.11.0.0', - 'reference' => '11cb2199493b2f8a3b53e7f19068fc6aac760991', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../webmozart/assert', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'zbateson/mail-mime-parser' => - array ( - 'pretty_version' => '3.0.3', - 'version' => '3.0.3.0', - 'reference' => 'e0d4423fe27850c9dd301190767dbc421acc2f19', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../zbateson/mail-mime-parser', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'zbateson/mb-wrapper' => - array ( - 'pretty_version' => '2.0.1', - 'version' => '2.0.1.0', - 'reference' => '50a14c0c9537f978a61cde9fdc192a0267cc9cff', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../zbateson/mb-wrapper', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'zbateson/stream-decorators' => - array ( - 'pretty_version' => '2.1.1', - 'version' => '2.1.1.0', - 'reference' => '32a2a62fb0f26313395c996ebd658d33c3f9c4e5', - 'type' => 'library', - 'install_path' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/composer/../zbateson/stream-decorators', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - ), - ), - ), - 'executedFilesHashes' => - array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/larastan/larastan/bootstrap.php' => '28392079817075879815f110287690e80398fe5e', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/Attribute.php' => 'eaf9127f074e9c7ebc65043ec4050f9fed60c2bb', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionAttribute.php' => '0b4b78277eb6545955d2ce5e09bff28f1f8052c8', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionIntersectionType.php' => 'a3e6299b87ee5d407dae7651758edfa11a74cb11', - 'phar:///Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionUnionType.php' => '1b349aa997a834faeafe05fa21bc31cae22bf2e2', - ), - 'phpExtensions' => - array ( - 0 => 'Core', - 1 => 'FFI', - 2 => 'PDO', - 3 => 'PDO_ODBC', - 4 => 'Phar', - 5 => 'Reflection', - 6 => 'SPL', - 7 => 'SimpleXML', - 8 => 'bcmath', - 9 => 'bz2', - 10 => 'calendar', - 11 => 'ctype', - 12 => 'curl', - 13 => 'date', - 14 => 'dba', - 15 => 'dom', - 16 => 'exif', - 17 => 'fileinfo', - 18 => 'filter', - 19 => 'ftp', - 20 => 'gd', - 21 => 'gettext', - 22 => 'gmp', - 23 => 'hash', - 24 => 'iconv', - 25 => 'imagick', - 26 => 'intl', - 27 => 'json', - 28 => 'ldap', - 29 => 'libxml', - 30 => 'mbstring', - 31 => 'mysqli', - 32 => 'mysqlnd', - 33 => 'odbc', - 34 => 'openssl', - 35 => 'pcntl', - 36 => 'pcre', - 37 => 'pdo_dblib', - 38 => 'pdo_mysql', - 39 => 'pdo_pgsql', - 40 => 'pdo_sqlite', - 41 => 'pgsql', - 42 => 'posix', - 43 => 'pspell', - 44 => 'random', - 45 => 'readline', - 46 => 'redis', - 47 => 'session', - 48 => 'shmop', - 49 => 'soap', - 50 => 'sockets', - 51 => 'sodium', - 52 => 'sqlite3', - 53 => 'standard', - 54 => 'sysvmsg', - 55 => 'sysvsem', - 56 => 'sysvshm', - 57 => 'tidy', - 58 => 'tokenizer', - 59 => 'xml', - 60 => 'xmlreader', - 61 => 'xmlwriter', - 62 => 'xsl', - 63 => 'zip', - 64 => 'zlib', - ), - 'stubFiles' => - array ( - ), - 'level' => '5', -), - 'projectExtensionFiles' => array ( -), - 'errorsCallback' => static function (): array { return array ( -); }, - 'locallyIgnoredErrorsCallback' => static function (): array { return array ( -); }, - 'linesToIgnore' => array ( -), - 'unmatchedLineIgnores' => array ( -), - 'collectedDataCallback' => static function (): array { return array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Carrier.php' => - array ( - 0 => - \PHPStan\Collectors\CollectedData::__set_state(array( - 'data' => 'CodebarAg\\TwilioVerify\\DTO\\Carrier', - 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Carrier.php', - 'collectorType' => 'PHPStan\\Rules\\DeadCode\\ConstructorWithoutImpurePointsCollector', - )), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Lookup.php' => - array ( - 0 => - \PHPStan\Collectors\CollectedData::__set_state(array( - 'data' => 'CodebarAg\\TwilioVerify\\DTO\\Lookup', - 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Lookup.php', - 'collectorType' => 'PHPStan\\Rules\\DeadCode\\ConstructorWithoutImpurePointsCollector', - )), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/SendCodeAttempt.php' => - array ( - 0 => - \PHPStan\Collectors\CollectedData::__set_state(array( - 'data' => 'CodebarAg\\TwilioVerify\\DTO\\SendCodeAttempt', - 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/SendCodeAttempt.php', - 'collectorType' => 'PHPStan\\Rules\\DeadCode\\ConstructorWithoutImpurePointsCollector', - )), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationCheck.php' => - array ( - 0 => - \PHPStan\Collectors\CollectedData::__set_state(array( - 'data' => 'CodebarAg\\TwilioVerify\\DTO\\VerificationCheck', - 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationCheck.php', - 'collectorType' => 'PHPStan\\Rules\\DeadCode\\ConstructorWithoutImpurePointsCollector', - )), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationStart.php' => - array ( - 0 => - \PHPStan\Collectors\CollectedData::__set_state(array( - 'data' => 'CodebarAg\\TwilioVerify\\DTO\\VerificationStart', - 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationStart.php', - 'collectorType' => 'PHPStan\\Rules\\DeadCode\\ConstructorWithoutImpurePointsCollector', - )), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Events/TwilioVerifyResponseLog.php' => - array ( - 0 => - \PHPStan\Collectors\CollectedData::__set_state(array( - 'data' => - array ( - 0 => 'Illuminate\\Foundation\\Events\\Dispatchable', - ), - 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Events/TwilioVerifyResponseLog.php', - 'collectorType' => 'PHPStan\\Rules\\Traits\\TraitUseCollector', - )), - 1 => - \PHPStan\Collectors\CollectedData::__set_state(array( - 'data' => - array ( - 0 => 'Illuminate\\Broadcasting\\InteractsWithSockets', - ), - 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Events/TwilioVerifyResponseLog.php', - 'collectorType' => 'PHPStan\\Rules\\Traits\\TraitUseCollector', - )), - 2 => - \PHPStan\Collectors\CollectedData::__set_state(array( - 'data' => - array ( - 0 => 'Illuminate\\Queue\\SerializesModels', - ), - 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Events/TwilioVerifyResponseLog.php', - 'collectorType' => 'PHPStan\\Rules\\Traits\\TraitUseCollector', - )), - 3 => - \PHPStan\Collectors\CollectedData::__set_state(array( - 'data' => 'CodebarAg\\TwilioVerify\\Events\\TwilioVerifyResponseLog', - 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Events/TwilioVerifyResponseLog.php', - 'collectorType' => 'PHPStan\\Rules\\DeadCode\\ConstructorWithoutImpurePointsCollector', - )), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Facades/TwilioVerify.php' => - array ( - 0 => - \PHPStan\Collectors\CollectedData::__set_state(array( - 'data' => - array ( - 0 => 'CodebarAg\\TwilioVerify\\Facades\\TwilioVerify', - 1 => 'getFacadeAccessor', - 2 => 'CodebarAg\\TwilioVerify\\Facades\\TwilioVerify', - ), - 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Facades/TwilioVerify.php', - 'collectorType' => 'PHPStan\\Rules\\DeadCode\\MethodWithoutImpurePointsCollector', - )), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php' => - array ( - 0 => - \PHPStan\Collectors\CollectedData::__set_state(array( - 'data' => - array ( - 0 => 'event', - 1 => 28, - ), - 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php', - 'collectorType' => 'PHPStan\\Rules\\DeadCode\\PossiblyPureFuncCallCollector', - )), - 1 => - \PHPStan\Collectors\CollectedData::__set_state(array( - 'data' => - array ( - 0 => 'event', - 1 => 51, - ), - 'filePath' => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php', - 'collectorType' => 'PHPStan\\Rules\\DeadCode\\PossiblyPureFuncCallCollector', - )), - ), -); }, - 'dependencies' => array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/config/twilio_verify.php' => - array ( - 'fileHash' => 'a8f5ea7aad80874a9906da3b90cfb199a560f422', - 'dependentFiles' => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Carrier.php' => - array ( - 'fileHash' => '7da5ffd7840bc0b774fc4a59e4e73b5052c0be0a', - 'dependentFiles' => - array ( - 0 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Lookup.php', - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Lookup.php' => - array ( - 'fileHash' => '663d718349590d62d061ff06d74b2bc3386eb400', - 'dependentFiles' => - array ( - 0 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationStart.php', - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/SendCodeAttempt.php' => - array ( - 'fileHash' => '817192ee4c53c98ee66b95fa7a93ce36ce60da61', - 'dependentFiles' => - array ( - 0 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationStart.php', - 1 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php', - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationCheck.php' => - array ( - 'fileHash' => '7693b0519141ae6da87c38cdda24993a049620b9', - 'dependentFiles' => - array ( - 0 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Facades/TwilioVerify.php', - 1 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php', - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationStart.php' => - array ( - 'fileHash' => '9b19f716cf38d10f62ca384113123ed4e1c7761e', - 'dependentFiles' => - array ( - 0 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Facades/TwilioVerify.php', - 1 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php', - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Events/TwilioVerifyResponseLog.php' => - array ( - 'fileHash' => '63889fe332ad4f651fb52fa89071509a626381d6', - 'dependentFiles' => - array ( - 0 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php', - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Facades/TwilioVerify.php' => - array ( - 'fileHash' => '2d1f9c680b5984fd5d334c97f4c6f2f44de5b30c', - 'dependentFiles' => - array ( - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php' => - array ( - 'fileHash' => '96189db70fabdfc22c267a88f53770945bad83f8', - 'dependentFiles' => - array ( - 0 => '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Facades/TwilioVerify.php', - ), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerifyServiceProvider.php' => - array ( - 'fileHash' => '799286f4dc4761543a7b839ca514b05b8dc7da2d', - 'dependentFiles' => - array ( - ), - ), -), - 'exportedNodesCallback' => static function (): array { return array ( - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Carrier.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'CodebarAg\\TwilioVerify\\DTO\\Carrier', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @phpstan-consistent-constructor - */', - 'namespace' => 'CodebarAg\\TwilioVerify\\DTO', - 'uses' => - array ( - 'arr' => 'Illuminate\\Support\\Arr', - ), - 'constUses' => - array ( - ), - )), - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'fromJson', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => true, - 'returnType' => 'self', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'data', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - 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' => 'error_code', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'name', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'mobile_country_code', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'mobile_network_code', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 4 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'type', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'fake', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => true, - 'returnType' => 'self', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'error_code', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'name', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'mobile_country_code', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'mobile_network_code', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 4 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'type', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/Lookup.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'CodebarAg\\TwilioVerify\\DTO\\Lookup', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @phpstan-consistent-constructor - */', - 'namespace' => 'CodebarAg\\TwilioVerify\\DTO', - 'uses' => - array ( - 'arr' => 'Illuminate\\Support\\Arr', - ), - 'constUses' => - array ( - ), - )), - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'fromJson', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => true, - 'returnType' => '?self', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'lookup', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - 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' => 'carrier', - 'type' => 'CodebarAg\\TwilioVerify\\DTO\\Carrier', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'fake', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => true, - 'returnType' => 'self', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'carrier', - 'type' => '?CodebarAg\\TwilioVerify\\DTO\\Carrier', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/SendCodeAttempt.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'CodebarAg\\TwilioVerify\\DTO\\SendCodeAttempt', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @phpstan-consistent-constructor - */', - 'namespace' => 'CodebarAg\\TwilioVerify\\DTO', - 'uses' => - array ( - 'carbon' => 'Carbon\\Carbon', - 'arr' => 'Illuminate\\Support\\Arr', - 'collection' => 'Illuminate\\Support\\Collection', - 'str' => 'Illuminate\\Support\\Str', - ), - 'constUses' => - array ( - ), - )), - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'fromJson', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => true, - 'returnType' => 'Illuminate\\Support\\Collection', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'attempts', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - 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' => 'time', - 'type' => 'Carbon\\Carbon', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'channel', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'attempt_sid', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'fake', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => true, - 'returnType' => 'self', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'time', - 'type' => '?Carbon\\Carbon', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'channel', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'attempt_sid', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationCheck.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'CodebarAg\\TwilioVerify\\DTO\\VerificationCheck', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @phpstan-consistent-constructor - */', - 'namespace' => 'CodebarAg\\TwilioVerify\\DTO', - 'uses' => - array ( - 'carbon' => 'Carbon\\Carbon', - 'arr' => 'Illuminate\\Support\\Arr', - 'str' => 'Illuminate\\Support\\Str', - ), - 'constUses' => - array ( - ), - )), - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'fromJson', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => true, - 'returnType' => 'self', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'data', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - 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' => 'sid', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'service_sid', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'account_sid', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'to', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 4 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'channel', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 5 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'status', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 6 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'valid', - 'type' => 'bool', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 7 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'created_at', - 'type' => 'Carbon\\Carbon', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 8 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'updated_at', - 'type' => 'Carbon\\Carbon', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'fake', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => true, - 'returnType' => 'self', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'sid', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'service_sid', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'account_sid', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'to', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 4 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'channel', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 5 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'status', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 6 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'valid', - 'type' => '?bool', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 7 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'created_at', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 8 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'updated_at', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/DTO/VerificationStart.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'CodebarAg\\TwilioVerify\\DTO\\VerificationStart', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @phpstan-consistent-constructor - * @property Collection|SendCodeAttempt[] $send_code_attempts - */', - 'namespace' => 'CodebarAg\\TwilioVerify\\DTO', - 'uses' => - array ( - 'carbon' => 'Carbon\\Carbon', - 'arr' => 'Illuminate\\Support\\Arr', - 'collection' => 'Illuminate\\Support\\Collection', - 'str' => 'Illuminate\\Support\\Str', - ), - 'constUses' => - array ( - ), - )), - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'fromJson', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => true, - 'returnType' => 'self', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'data', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - 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' => 'sid', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'service_sid', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'account_sid', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'to', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 4 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'channel', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 5 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'status', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 6 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'valid', - 'type' => 'bool', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 7 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'created_at', - 'type' => 'Carbon\\Carbon', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 8 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'updated_at', - 'type' => 'Carbon\\Carbon', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 9 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'lookup', - 'type' => '?CodebarAg\\TwilioVerify\\DTO\\Lookup', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 10 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'send_code_attempts', - 'type' => 'Illuminate\\Support\\Collection', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 11 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'url', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'fake', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => true, - 'returnType' => 'self', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'sid', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'service_sid', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'account_sid', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'to', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 4 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'channel', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 5 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'status', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 6 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'valid', - 'type' => '?bool', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 7 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'created_at', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 8 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'updated_at', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 9 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'lookup', - 'type' => '?CodebarAg\\TwilioVerify\\DTO\\Lookup', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 10 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'send_code_attempts', - 'type' => '?Illuminate\\Support\\Collection', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 11 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'url', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Events/TwilioVerifyResponseLog.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'CodebarAg\\TwilioVerify\\Events\\TwilioVerifyResponseLog', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - ), - 'usedTraits' => - array ( - 0 => 'Illuminate\\Foundation\\Events\\Dispatchable', - 1 => 'Illuminate\\Broadcasting\\InteractsWithSockets', - 2 => 'Illuminate\\Queue\\SerializesModels', - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \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' => 'response', - 'type' => 'Illuminate\\Http\\Client\\Response', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/Facades/TwilioVerify.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'CodebarAg\\TwilioVerify\\Facades\\TwilioVerify', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @method static VerificationStart start(string $to) - * @method static VerificationCheck check(string $to, string $code) - * - * @see \\CodebarAg\\TwilioVerify\\TwilioVerify - */', - 'namespace' => 'CodebarAg\\TwilioVerify\\Facades', - 'uses' => - array ( - 'verificationcheck' => 'CodebarAg\\TwilioVerify\\DTO\\VerificationCheck', - 'verificationstart' => 'CodebarAg\\TwilioVerify\\DTO\\VerificationStart', - 'facade' => 'Illuminate\\Support\\Facades\\Facade', - ), - 'constUses' => - array ( - ), - )), - 'abstract' => false, - 'final' => false, - 'extends' => 'Illuminate\\Support\\Facades\\Facade', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'getFacadeAccessor', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => false, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => true, - 'returnType' => 'string', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerify.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'CodebarAg\\TwilioVerify\\TwilioVerify', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'start', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'CodebarAg\\TwilioVerify\\DTO\\VerificationStart', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'to', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'channel', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'check', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'CodebarAg\\TwilioVerify\\DTO\\VerificationCheck', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'to', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'code', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/Users/rhyslees/Code/Packages/codebar-ag/laravel-twilio-verify/src/TwilioVerifyServiceProvider.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'CodebarAg\\TwilioVerify\\TwilioVerifyServiceProvider', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'Spatie\\LaravelPackageTools\\PackageServiceProvider', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'configurePackage', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'void', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'package', - 'type' => 'Spatie\\LaravelPackageTools\\Package', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), -); }, -]; diff --git a/build/report.junit.xml b/build/report.junit.xml deleted file mode 100644 index 5b6c15f..0000000 --- a/build/report.junit.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - -