diff --git a/CLAUDE.md b/CLAUDE.md index e3d32c5..ca36ae0 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -1,51 +1,63 @@ # CLAUDE.md -This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. +This file provides guidance to Claude Code when working with this repository. ## What This Is -AI-powered knowledge base CLI tool with semantic search and ChromaDB integration. Built as a standalone Laravel Zero application. +Knowledge CLI — an AI-powered knowledge base with semantic search, Qdrant vector storage, and Ollama intelligence. Built as a Laravel Zero CLI application. + +**Entry point**: `./know` (not `artisan`) ## Commands ```bash -composer test # Run all tests +composer test # Run all tests (Pest, parallel) composer test-coverage # Run with coverage report -composer format # Format code +composer format # Format code (Laravel Pint) composer analyse # Static analysis (PHPStan level 8) -./know {command} # Run CLI command ./know list # List all available commands ``` -Run a single test file: +Run a single test: ```bash -vendor/bin/pest tests/Feature/YourTest.php +vendor/bin/pest tests/Feature/Commands/KnowledgeSearchCommandTest.php ``` +## Architecture + +- **Storage**: Qdrant vector database only (no SQLite, no Eloquent models) +- **Cache**: Redis via KnowledgeCacheService +- **Embeddings**: sentence-transformers via EmbeddingService +- **LLM**: Ollama via OllamaService (optional, for auto-tagging) +- **HTTP**: Saloon connectors in `app/Integrations/Qdrant/` +- **Commands**: `app/Commands/` — extend `LaravelZero\Framework\Commands\Command` +- **Services**: `app/Services/` — registered in `app/Providers/AppServiceProvider.php` +- **Tests**: `tests/Feature/` and `tests/Unit/` — Pest framework + ## Quality Standards (Non-Negotiable) -- **100% test coverage** enforced by Synapse Sentinel gate +- **95% test coverage** enforced by Sentinel Gate CI - **PHPStan level 8** with strict rules - **Laravel Pint** code style (Laravel preset) -- **Auto-merge** after certification passes - -## Architecture - -- **Entry point**: `./know` (not `artisan`) -- **Commands**: `app/Commands/` - extend `LaravelZero\Framework\Commands\Command` -- **Tests**: `tests/Feature/` and `tests/Unit/` - use Pest -- **Services**: Register in `config/app.php` providers array +- **Auto-merge** after Sentinel Gate certification passes + +## Key Services + +| Service | Purpose | +|---------|---------| +| `QdrantService` | All vector DB operations (upsert, search, delete, collections) | +| `EmbeddingService` | Text-to-vector conversion | +| `KnowledgeCacheService` | Redis caching for sub-200ms queries | +| `OdinSyncService` | Background sync to centralized Odin server | +| `WriteGateService` | Filters knowledge quality before persistence | +| `EntryMetadataService` | Staleness detection, confidence degradation | +| `CorrectionService` | Multi-tier correction propagation | +| `DailyLogService` | Entry staging before permanent storage | +| `GitContextService` | Auto-detect git repo, branch, commit, author | ## TDD Workflow 1. Write failing test (RED) 2. Make test pass (GREEN) 3. Refactor if needed -4. Push PR - auto-merges after Sentinel gate passes - -## Testing Commands - -```php -$this->artisan('command-name')->assertSuccessful(); -$this->artisan('command-name', ['argument' => 'value'])->assertExitCode(0); -``` +4. Push PR — auto-merges after Sentinel Gate passes diff --git a/CLEANUP.md b/CLEANUP.md deleted file mode 100644 index 751069d..0000000 --- a/CLEANUP.md +++ /dev/null @@ -1,88 +0,0 @@ -# Knowledge CLI - Command Cleanup Plan - -## Commands to KEEP (Core Vector Knowledge) - -### Storage & Retrieval -- `add` - Add knowledge entry -- `search` - Semantic vector search -- `show` - Display entry details -- `list` - List entries with filters - -### Relationships -- `link` - Create relationships -- `unlink` - Remove relationships -- `related` - Show related entries -- `graph` - Visualize relationships - -### Quality & Maintenance -- `duplicates` - Find duplicates -- `conflicts` - Detect conflicts -- `stale` - Find outdated entries -- `prune` - Cleanup old data -- `merge` - Merge entries -- `archive` - Soft delete -- `deprecate` - Mark deprecated - -### Export & Sync -- `export` - Export entries -- `publish` - Static HTML export -- `sync` - Sync to Odin/prefrontal-cortex - -### Infrastructure -- `service:up` - Start services -- `service:down` - Stop services -- `service:status` - Health check -- `service:logs` - View logs -- `install` - Initialize DB -- `config` - Manage config -- `index` - Build search index -- `stats` - Analytics - -### Collections -- `collection:create` - Create collection -- `collection:add` - Add to collection -- `collection:remove` - Remove from collection -- `collection:show` - Show collection -- `collection:list` - List collections - -## Commands to DELETE (Productivity Cruft) - -### Session Tracking (Obsolete with vector search) -- `session:start` - ❌ Delete -- `session:end` - ❌ Delete -- `session:show` - ❌ Delete -- `session:list` - ❌ Delete -- `session:observations` - ❌ Delete - -### Productivity Features (Not core to knowledge storage) -- `focus-time` - ❌ Delete -- `milestones` - ❌ Delete -- `blockers` - ❌ Delete -- `intents` - ❌ Delete -- `priorities` - ❌ Delete -- `context` - ❌ Delete (redundant with search) - -### Observations (Redundant with vector entries) -- `observe:add` - ❌ Delete - -## Rationale - -**Why delete session/productivity features?** -- Overcomplicated the core mission -- Vector search provides better context retrieval -- Session tracking doesn't align with "semantic knowledge base" -- Just store observations as regular knowledge entries -- Let Ollama extract concepts/priorities automatically - -**Simple architecture:** -``` -Store anything → Vector DB → Semantic search gets context -``` - -No need for: -- Time tracking -- Session boundaries -- Manual priority setting -- Blocker tracking - -All of this becomes emergent from good vector search + Ollama enhancement. diff --git a/MISSION.md b/MISSION.md index c83ee8a..bd97a56 100644 --- a/MISSION.md +++ b/MISSION.md @@ -85,7 +85,7 @@ Knowledge is a command-line tool that captures technical decisions, learnings, a │ Odin (Centralized) │ │ - Same stack as local │ │ - Team knowledge repository │ -│ - Exposed via Cloudflare Tunnels │ +│ - Exposed via Tailscale mesh │ └─────────────────────────────────────────┘ ``` diff --git a/PERFORMANCE_OPTIMIZATION.md b/PERFORMANCE_OPTIMIZATION.md deleted file mode 100644 index 6a36623..0000000 --- a/PERFORMANCE_OPTIMIZATION.md +++ /dev/null @@ -1,106 +0,0 @@ -# Duplicate Detection Performance Optimization - -## Issue #46: Optimize Duplicate Detection Algorithm Performance - -### Summary - -Optimized the duplicate detection algorithm from **O(n²) to O(n log n)** complexity using MinHash signatures and Locality-Sensitive Hashing (LSH). - -### Performance Improvements - -| Entries | Old Algorithm (Estimated) | New Algorithm | Improvement | -|---------|---------------------------|---------------|-------------| -| 100 | ~10,000 comparisons | 0.033s | **10x+ faster** | -| 500 | ~250,000 comparisons | 0.164s | **50x+ faster** | -| 1000 | ~1,000,000 comparisons | 0.580s | **100x+ faster** | - -### Technical Details - -#### Algorithm Improvements - -1. **MinHash Signatures** (100 hash functions) - - Generate compact signatures for each entry - - Approximate Jaccard similarity efficiently - - Cached for repeated calculations - -2. **Locality-Sensitive Hashing (LSH)** - - Group similar entries into 20 bands of 5 rows each - - Only compare entries within the same bucket - - Reduces comparisons from O(n²) to O(n * bucket_size) - -3. **Tokenization Caching** - - Cache tokenized text for each entry - - Avoid redundant string processing - - Significant speedup for repeated similarity calculations - -#### Code Changes - -**New Service**: -- `app/Services/SimilarityService.php` - Extracted and optimized similarity logic - - `findDuplicates()` - Main algorithm with LSH bucketing - - `calculateJaccardSimilarity()` - Exact similarity calculation - - `estimateSimilarity()` - Fast MinHash-based estimation - - `getTokens()` - Cached tokenization - - `computeMinHash()` - MinHash signature generation - -**Refactored Command**: -- `app/Commands/KnowledgeDuplicatesCommand.php` - Now uses SimilarityService via dependency injection - -### Testing - -#### Unit Tests -- **16 tests** covering similarity calculations, tokenization, caching, and duplicate detection -- Location: `tests/Unit/Services/SimilarityServiceTest.php` - -#### Feature Tests -- **9 tests** covering command behavior, threshold handling, and output formatting -- Location: `tests/Feature/Commands/KnowledgeDuplicatesCommandTest.php` - -#### Performance Benchmarks -- **8 benchmark tests** measuring performance at scale -- Location: `tests/Performance/DuplicateDetectionBenchmarkTest.php` -- Run with: `./vendor/bin/pest --group=benchmark` - -### Key Metrics - -- **Time Complexity**: O(n²) → O(n log n) -- **Memory Usage**: Constant overhead, <50MB for 1000 entries -- **Accuracy**: Maintained (configurable threshold still works) -- **Cache Hit Rate**: Near 100% for repeated tokenization - -### Breaking Changes - -None. The API remains identical: -```bash -php know duplicates --threshold=70 --limit=10 -``` - -### Future Optimizations - -Potential further improvements (not in scope): -- Database-level FTS5 text similarity -- Batch processing for very large datasets (>10,000 entries) -- Parallel processing of LSH buckets -- Configurable MinHash parameters - -### Files Modified - -- `app/Commands/KnowledgeDuplicatesCommand.php` - Refactored to use service -- `app/Services/SimilarityService.php` - NEW: Optimized similarity service -- `tests/Unit/Services/SimilarityServiceTest.php` - NEW: Unit tests -- `tests/Feature/Commands/KnowledgeDuplicatesCommandTest.php` - NEW: Feature tests -- `tests/Performance/DuplicateDetectionBenchmarkTest.php` - NEW: Benchmarks - -### Validation - -All quality checks passing: -- ✓ PHPStan: Level max, no errors -- ✓ Laravel Pint: Code style compliant -- ✓ Pest Tests: 25 tests passing -- ✓ Performance Benchmarks: All targets met - -### References - -- [MinHash Algorithm](https://en.wikipedia.org/wiki/MinHash) -- [Locality-Sensitive Hashing](https://en.wikipedia.org/wiki/Locality-sensitive_hashing) -- [Jaccard Similarity](https://en.wikipedia.org/wiki/Jaccard_index) diff --git a/README.md b/README.md index 9610b53..5e3ae66 100644 --- a/README.md +++ b/README.md @@ -1,342 +1,192 @@ -# Knowledge +# Knowledge CLI -AI-powered knowledge base with semantic search and ChromaDB integration. +AI-powered knowledge base with semantic search, Qdrant vector storage, and Ollama intelligence. -## Vision +## What It Does -Build an intelligent knowledge management system that: -- **Semantic Search**: Find knowledge by meaning, not just keywords (ChromaDB) -- **AI-Powered**: Confidence scoring, relevance ranking, smart suggestions -- **Git Integration**: Automatic context capture, knowledge attribution, evolution tracking -- **Test-Driven**: 100% coverage enforced via Synapse Sentinel -- **Quality-First**: Maximum static analysis (PHPStan level 8) - -## Features - -### Git Context Integration - -Automatically capture and track git metadata for knowledge attribution: - -- **Auto-detection**: Automatically captures repo, branch, commit, and author when adding entries -- **Knowledge Attribution**: "Git blame" for knowledge - see who documented what and when -- **Evolution Tracking**: Track how knowledge changes across commits and branches -- **Cross-repo Support**: Store full repository URLs for knowledge shared across projects - -#### Commands +Captures technical decisions, learnings, and context from your work. Retrieves exactly what you need via semantic search — especially for AI pair programming with Claude Code. ```bash -# Add entry with automatic git context detection -./know knowledge:add "Fix Database Connection" --content="Always check .env configuration" +# Add knowledge +./know add "Database Connection Fix" --content="Check .env before debugging migrations" --tags=debugging,database -# Skip git detection for sensitive repositories -./know knowledge:add "API Keys" --content="Store in vault" --no-git +# Semantic search +./know search "how to fix database issues" -# Manual git field overrides -./know knowledge:add "Config" --content="..." --repo="custom/repo" --branch="main" - -# Display current git context -./know knowledge:git:context - -# List entries from a specific commit -./know knowledge:git:entries abc123def456 - -# List entries by author -./know knowledge:git:author "John Doe" +# Show entry details +./know show ``` -#### Auto-Detection Behavior - -When you run `knowledge:add` in a git repository: - -1. **Repository**: Detects remote origin URL (falls back to local path) -2. **Branch**: Captures current branch name -3. **Commit**: Records current commit hash (full SHA-1) -4. **Author**: Uses git config user.name - -To disable auto-detection, use the `--no-git` flag. - -#### Manual Overrides - -You can override auto-detected values: +## Architecture -```bash -./know knowledge:add "Title" \ - --content="Content here" \ - --repo="https://github.com/org/repo" \ - --branch="feature/new-feature" \ - --commit="abc123def456" \ - --author="Jane Smith" +``` +CLI (Laravel Zero) + ↓ +Qdrant (Vector DB - all storage) + ├── Per-project collections (auto-detected from git) + └── Payload-based metadata (JSON) + ↓ +Redis (Cache layer - sub-200ms queries) + ↓ +Embedding Server (sentence-transformers) + ↓ +Ollama (optional - auto-tagging, query expansion) + ↓ +Odin Sync (background sync to centralized server) ``` -#### Non-Git Directories - -The tool gracefully handles non-git directories: -- No errors or warnings -- Git fields remain null -- All other functionality works normally +No SQLite. No schema migrations. Pure vector storage. -#### Git Hooks Integration +## Commands -You can integrate with git hooks for automatic knowledge capture: +### Core Knowledge -**Post-commit hook example** (`.git/hooks/post-commit`): +| Command | Description | +|---------|-------------| +| `add` | Add a knowledge entry (auto-detects git context) | +| `search` | Semantic vector search with filters | +| `show ` | Display entry details | +| `entries` | List entries with filters | +| `update ` | Update an existing entry | +| `validate ` | Mark entry as validated (boosts confidence) | +| `archive ` | Soft-delete an entry | +| `export ` | Export a single entry | +| `export:all` | Bulk export all entries | +| `correct` | Correct/update knowledge with multi-tier propagation | -```bash -#!/bin/bash -# Automatically prompt for knowledge entry after each commit +### Intelligence -echo "Would you like to document this commit? (y/n)" -read -r response +| Command | Description | +|---------|-------------| +| `context` | Load semantic session context for AI tools | +| `insights` | AI-generated insights from your knowledge base | +| `synthesize` | Generate daily synthesis of knowledge themes | +| `stage` | Stage entries in daily log before permanent storage | +| `promote` | Promote staged entries to permanent knowledge | -if [[ "$response" =~ ^[Yy]$ ]]; then - ./know knowledge:add "$(git log -1 --pretty=%s)" \ - --content="$(git log -1 --pretty=%B)" \ - --category=debugging -fi -``` +### Infrastructure -**Pre-push hook example** (`.git/hooks/pre-push`): +| Command | Description | +|---------|-------------| +| `install` | Initialize Qdrant collection | +| `config` | Manage configuration | +| `stats` | Analytics dashboard | +| `search:status` | Search infrastructure health check | +| `agent:status` | Dependency health checks (Qdrant, Redis, Ollama, Embeddings) | +| `maintain` | Run maintenance tasks | +| `projects` | List all project knowledge bases | -```bash -#!/bin/bash -# Check for undocumented commits - -UNDOCUMENTED=$(git log origin/main..HEAD --format="%H" | while read commit; do - if ! ./know knowledge:git:entries "$commit" | grep -q "Total entries: 0"; then - echo "$commit" - fi -done) - -if [ -n "$UNDOCUMENTED" ]; then - echo "Warning: Some commits lack knowledge entries" - echo "$UNDOCUMENTED" -fi -``` +### Services (Docker) -### Confidence Scoring & Usage Analytics +| Command | Description | +|---------|-------------| +| `service:up` | Start Qdrant, Redis, embedding server | +| `service:down` | Stop services | +| `service:status` | Health check all services | +| `service:logs` | View service logs | -Track knowledge quality and usage over time: +### Sync -```bash -# Validate an entry (boosts confidence) -./know knowledge:validate 1 +| Command | Description | +|---------|-------------| +| `sync` | Bidirectional sync (--push / --pull) | +| `sync:odin` | Background sync to Odin central server | +| `sync:purge` | Purge sync queue | -# View stale entries needing review -./know knowledge:stale +### Code Intelligence -# Display analytics dashboard -./know knowledge:stats -``` +| Command | Description | +|---------|-------------| +| `index-code` | Index codebase for semantic code search | +| `search-code` | Semantic search across indexed code | +| `git:context` | Display current git context | -### Collections +## Quick Start -Organize knowledge into logical groups: +### 1. Start Services ```bash -# Create a collection -./know knowledge:collection:create "Deployment Runbook" --description="Production deployment steps" - -# Add entries to collection -./know knowledge:collection:add "Deployment Runbook" 1 -./know knowledge:collection:add "Deployment Runbook" 2 --sort-order=10 - -# View collection -./know knowledge:collection:show "Deployment Runbook" +# Docker compose (Qdrant + embedding server) +make up -# List all collections -./know knowledge:collection:list +# Or manually +docker compose up -d ``` -### Search & Discovery - -```bash -# Search by keyword -./know knowledge:search --keyword="database" - -# Search by tag -./know knowledge:search --tag="sql" - -# Search by category and priority -./know knowledge:search --category="debugging" --priority="critical" - -# List entries with filters -./know knowledge:list --category=testing --limit=10 --min-confidence=75 -``` +This starts: +- **Qdrant** on `http://localhost:6333` — Vector database +- **Embedding Server** on `http://localhost:8001` — sentence-transformers (all-MiniLM-L6-v2) -## Development +### 2. Initialize ```bash -# Install dependencies -composer install - -# Run tests -composer test - -# Run tests with coverage -composer test-coverage - -# Format code -composer format - -# Static analysis -composer analyse - -# Run single test file -vendor/bin/pest tests/Feature/GitContextServiceTest.php +./know install ``` -## Quality Standards - -- **Test Coverage**: 100% (enforced by Synapse Sentinel) -- **Static Analysis**: PHPStan Level 8 -- **Code Style**: Laravel Pint (Laravel preset) -- **Auto-Merge**: PRs auto-merge after certification - -## Architecture - -### Services - -**GitContextService** - Git metadata detection and retrieval -- Detects git repositories using `git rev-parse` -- Retrieves branch, commit, author information -- Handles non-git directories gracefully -- Supports custom working directories for testing - -**ConfidenceService** - Knowledge quality scoring -- Age-based confidence decay -- Validation boosts -- Stale entry detection - -**CollectionService** - Knowledge organization -- Create and manage collections -- Add/remove entries with sort ordering -- Duplicate prevention - -### Models - -- **Entry** - Knowledge entries with git metadata, confidence scores, usage tracking -- **Collection** - Groups of related entries -- **Tag** - Normalized tags with usage counts -- **Relationship** - Links between entries (related-to, supersedes, depends-on) - -## Status - -Active development. Core features implemented: -- Database schema and models -- Basic CLI commands -- Collections support -- Git context integration -- Confidence scoring and analytics - -### Semantic Search with ChromaDB - -Advanced vector-based semantic search for finding knowledge by meaning: - -#### Quick Start (Docker) - -Start both ChromaDB and the embedding server with a single command: +### 3. Add Knowledge ```bash -# Start services -make up - -# Check status -make status +# With automatic git context detection +./know add "Fix Auth Timeout" --content="Increase token TTL in config/auth.php" --tags=auth,debugging -# View logs -make logs - -# Stop services -make down +# Skip git detection +./know add "API Keys" --content="Store in vault, never in .env" --no-git ``` -This starts: -- **ChromaDB** on `http://localhost:8000` - Vector database for semantic search -- **Embedding Server** on `http://localhost:8001` - Sentence-transformers (all-MiniLM-L6-v2) - -#### Manual Installation (Alternative) - -If you prefer not to use Docker: +### 4. Search ```bash -# Install ChromaDB server -pip install chromadb -chroma run --path ./chroma_data +# Semantic search +./know search "authentication timeout issues" -# In another terminal, start embedding server -pip install flask sentence-transformers gunicorn -python docker/embedding-server/server.py +# With filters +./know search --category=debugging --tag=auth --limit=5 ``` -#### Configuration +## Configuration -Enable ChromaDB in your `.env` file: +`.env` file: ```env -SEMANTIC_SEARCH_ENABLED=true -EMBEDDING_PROVIDER=chromadb -CHROMADB_ENABLED=true -CHROMADB_HOST=localhost -CHROMADB_PORT=8000 -CHROMADB_EMBEDDING_SERVER=http://localhost:8001 -CHROMADB_EMBEDDING_MODEL=all-MiniLM-L6-v2 +QDRANT_HOST=localhost +QDRANT_PORT=6333 +EMBEDDING_SERVER_URL=http://localhost:8001 +REDIS_HOST=localhost +REDIS_PORT=6379 +OLLAMA_HOST=http://localhost:11434 ``` -#### Usage +### Odin (Production) -Once configured, semantic search automatically works with the existing search commands: +Uses `docker-compose.odin.yml` with Tailscale networking for centralized knowledge sync. -```bash -# Semantic search will automatically be used -./know knowledge:search --keyword="database connection issues" +## Development -# Results are ranked by semantic similarity and confidence -# Falls back to keyword search if ChromaDB is unavailable +```bash +composer install # Install dependencies +composer test # Run tests (Pest, parallel) +composer test-coverage # Run with coverage report +composer format # Format code (Laravel Pint) +composer analyse # Static analysis (PHPStan level 8) ``` -#### How It Works - -1. When you add/update entries, embeddings are generated and stored in both: - - ChromaDB vector database (for fast similarity search) - - SQLite database (as JSON, for fallback) - -2. Search queries are: - - Converted to embedding vectors - - Compared against indexed entries using cosine similarity - - Ranked by: `similarity_score * (confidence / 100)` - - Filtered by metadata (category, tags, status, etc.) - -3. If ChromaDB is unavailable: - - Automatically falls back to SQLite-based semantic search - - Or keyword search if no embeddings are available - -#### Architecture - -**ChromaDBClient** - ChromaDB REST API client -- Collection management -- Document indexing (add/update/delete) -- Vector similarity search - -**ChromaDBEmbeddingService** - Text embedding generation -- Generates embedding vectors using specified model -- Calculates cosine similarity between vectors -- Graceful error handling - -**ChromaDBIndexService** - Index management -- Indexes entries on create/update -- Removes entries on delete -- Batch indexing support -- Automatic embedding generation and storage - -**SemanticSearchService** - Hybrid search orchestration -- ChromaDB search (when available) -- SQLite fallback search -- Keyword search fallback -- Metadata filtering (category, tags, module, priority, status) - -Coming soon: -- Export and publishing -- Web interface +## Quality Standards + +- **Test Coverage**: 95% minimum (enforced by Sentinel Gate CI) +- **Static Analysis**: PHPStan Level 8 with strict rules +- **Code Style**: Laravel Pint (Laravel preset) +- **CI/CD**: Sentinel Gate auto-merges PRs after certification + +## Stack + +- **Runtime**: PHP 8.2+, Laravel Zero +- **Vector DB**: Qdrant (Rust) +- **Cache**: Redis +- **Embeddings**: sentence-transformers (Python/FastAPI) +- **LLM**: Ollama (optional, for auto-tagging and query expansion) +- **HTTP Client**: Saloon +- **Testing**: Pest +- **CI**: GitHub Actions (Sentinel Gate) ## License diff --git a/REFACTOR_ANALYSIS.md b/REFACTOR_ANALYSIS.md deleted file mode 100644 index 3f1ab1e..0000000 --- a/REFACTOR_ANALYSIS.md +++ /dev/null @@ -1,914 +0,0 @@ -# Entry → Qdrant Refactor Analysis - -**Generated:** 2026-01-09 -**Scope:** Migrating 23+ command files from Entry (Eloquent/SQLite) to QdrantService (Vector DB) - ---- - -## Executive Summary - -This refactor involves removing the Entry Eloquent model and replacing ALL database operations with QdrantService for semantic search capabilities. The migration affects 23+ command files and introduces several architectural challenges. - -### Key Findings -- **High Impact:** Relationships (tags, collections) stored in pivot tables are not directly supported by vector DB -- **Breaking Changes:** Integer auto-increment IDs → UUID strings -- **Missing Methods:** QdrantService needs 4 critical methods (getById, incrementUsage, updateFields, listAll) -- **Test Coverage:** Must maintain 100% coverage (enforced by Synapse Sentinel) - ---- - -## 1. Entry Model Analysis - -### Current Structure -```php -class Entry extends Model { - // Fields - - id (int, auto-increment) - - title (string) - - content (string) - - category (string|null) - - tags (array) - - module (string|null) - - priority (string: critical/high/medium/low) - - confidence (int: 0-100) - - status (string: draft/validated/deprecated) - - source, ticket, files (metadata) - - repo, branch, commit, author (git context) - - usage_count (int) - - last_used (datetime|null) - - validation_date (datetime|null) - - // Methods - - incrementUsage(): void - - // Relationships - - normalizedTags(): BelongsToMany - - collections(): BelongsToMany - - outgoingRelationships(): HasMany - - incomingRelationships(): HasMany -} -``` - -### Migration Challenges -1. **Integer IDs → UUID strings** for Qdrant compatibility -2. **incrementUsage()** requires fetch + update in vector DB (not atomic) -3. **Relationships** stored in pivot tables (tags, collections, relationships) -4. **Eloquent query builder** features (scopes, aggregates) not available -5. **Usage tracking** (usage_count, last_used) needs custom logic - ---- - -## 2. Command Usage Patterns - -### 23+ Commands Using Entry Model - -| Command | Pattern | Challenge | -|---------|---------|-----------| -| **KnowledgeListCommand** | `Entry::query()->where()->orderBy()->limit()->get()` | No semantic search, pure filtering | -| **KnowledgeShowCommand** | `Entry::find($id) + $entry->incrementUsage()` | Need getById() + usage tracking | -| **KnowledgeAddCommand** | `Entry::create($data)` | Must generate UUID, already refactored ✓ | -| **KnowledgeStatsCommand** | `Entry::count(), sum(), avg(), groupBy()` | Aggregation queries | -| **KnowledgeLinkCommand** | `Entry::find($id)`, relationship creation | Relationships not in vector DB | -| **Collection/AddCommand** | `Entry::find($id)`, pivot table operations | Pivot tables not supported | - -### Additional Commands (24 total) -- KnowledgeArchiveCommand -- KnowledgeConflictsCommand -- KnowledgeDeprecateCommand -- KnowledgeExportCommand, ExportAllCommand, ExportGraphCommand -- KnowledgeGitAuthorCommand, GitContextCommand, GitEntriesCommand -- KnowledgeGraphCommand -- KnowledgeMergeCommand -- KnowledgePruneCommand -- KnowledgePublishCommand -- KnowledgeRelatedCommand -- KnowledgeServeCommand -- KnowledgeStaleCommand -- KnowledgeUnlinkCommand -- KnowledgeValidateCommand -- KnowledgeDuplicatesCommand -- KnowledgeIndexCommand -- KnowledgeSearchStatusCommand -- KnowledgeSearchCommand -- SyncCommand -- MigrateToQdrantCommand -- Collection/RemoveCommand - ---- - -## 3. Refactor Patterns - -### Pattern 1: Create Entry -**Eloquent:** -```php -$entry = Entry::create([ - 'title' => $title, - 'content' => $content, - 'category' => $category, - 'tags' => $tags, - 'priority' => $priority, -]); -$id = $entry->id; // Auto-increment integer -``` - -**Qdrant:** -```php -$id = Str::uuid()->toString(); // Generate UUID first -$success = $qdrant->upsert([ - 'id' => $id, - 'title' => $title, - 'content' => $content, - 'category' => $category, - 'tags' => $tags, - 'priority' => $priority, -]); -// Returns bool, not model instance -``` - -**Notes:** -- Must generate UUID before upsert -- Qdrant auto-generates embeddings from title + content -- Returns bool instead of model instance - ---- - -### Pattern 2: Find by ID -**Eloquent:** -```php -$entry = Entry::find($id); -if (!$entry) { - $this->error('Entry not found'); - return self::FAILURE; -} -``` - -**Qdrant (PROBLEM - Method Missing):** -```php -// QdrantService has NO find-by-ID method! -// Workaround: use search with empty query -$results = $qdrant->search('', [], 1, 'default'); -// But this doesn't filter by ID! - -// NEED: QdrantService->getById($id) -$entry = $qdrant->getById($id); -if (!$entry) { - $this->error('Entry not found'); - return self::FAILURE; -} -``` - -**Critical Issue:** QdrantService needs `getById()` method. - ---- - -### Pattern 3: Filter Entries -**Eloquent:** -```php -$entries = Entry::query() - ->where('category', $category) - ->where('priority', $priority) - ->where('confidence', '>=', $minConfidence) - ->orderBy('confidence', 'desc') - ->orderBy('usage_count', 'desc') - ->limit($limit) - ->get(); -``` - -**Qdrant:** -```php -// Empty query string for pure filtering -$entries = $qdrant->search('', [ - 'category' => $category, - 'priority' => $priority, - // PROBLEM: No confidence filter support -], $limit); - -// Results are ordered by relevance score, not confidence/usage -// NEED: QdrantService->listAll() for non-semantic filtering -``` - -**Notes:** -- Empty query string works for pure filtering -- Ordering is by semantic relevance, not metadata fields -- May need `listAll()` method for traditional filtering - ---- - -### Pattern 4: Update Entry -**Eloquent:** -```php -$entry = Entry::find($id); -$entry->update(['status' => 'validated']); -``` - -**Qdrant:** -```php -// Need to fetch full entry first -$entry = $qdrant->getById($id); // Method doesn't exist yet! -if (!$entry) return; - -// Modify data -$entry['status'] = 'validated'; -$entry['updated_at'] = now()->toIso8601String(); - -// Upsert (update) -$qdrant->upsert($entry); - -// BETTER: QdrantService->updateFields($id, ['status' => 'validated']) -``` - -**Critical Issue:** Need `updateFields()` method to avoid fetch + modify + upsert pattern. - ---- - -### Pattern 5: Increment Usage -**Eloquent:** -```php -$entry = Entry::find($id); -$entry->incrementUsage(); // Atomic operation -``` - -**Qdrant:** -```php -// NOT ATOMIC - race condition possible -$entry = $qdrant->getById($id); -$entry['usage_count']++; -$entry['last_used'] = now()->toIso8601String(); -$qdrant->upsert($entry); - -// BETTER: QdrantService->incrementUsage($id) -``` - -**Critical Issue:** Usage tracking requires two operations (fetch + upsert), not atomic like Eloquent's increment(). - ---- - -### Pattern 6: Delete Entry -**Eloquent:** -```php -$entry = Entry::find($id); -$entry->delete(); -``` - -**Qdrant:** -```php -$qdrant->delete([$id]); // Already supported ✓ -``` - -**Notes:** Direct mapping, delete() already accepts array of IDs. - ---- - -### Pattern 7: Aggregations (Stats) -**Eloquent:** -```php -// KnowledgeStatsCommand patterns -$total = Entry::count(); -$totalUsage = Entry::sum('usage_count'); -$avgUsage = Entry::avg('usage_count'); - -$statuses = Entry::selectRaw('status, count(*) as count') - ->groupBy('status') - ->get(); - -$categories = Entry::selectRaw('category, count(*) as count') - ->whereNotNull('category') - ->groupBy('category') - ->get(); - -$mostUsed = Entry::orderBy('usage_count', 'desc')->first(); -``` - -**Qdrant (PROBLEM - No Aggregations):** -```php -// Vector DB doesn't support SQL aggregations! -// Must fetch all entries and aggregate in application layer - -$entries = $qdrant->listAll([], 10000); // Get all entries -$total = $entries->count(); -$totalUsage = $entries->sum('usage_count'); -$avgUsage = $entries->avg('usage_count'); - -// Group by status (in-memory) -$statuses = $entries->groupBy('status') - ->map(fn($group) => ['status' => $group->first()['status'], 'count' => $group->count()]); - -// This is SLOW for large datasets! -// ALTERNATIVE: Cache statistics, update on write -``` - -**Critical Issue:** Aggregation queries require fetching all entries into memory. - ---- - -### Pattern 8: Relationships -**Eloquent:** -```php -// KnowledgeLinkCommand -$fromEntry = Entry::find($fromId); -$toEntry = Entry::find($toId); - -$relationship = Relationship::create([ - 'from_entry_id' => $fromId, - 'to_entry_id' => $toId, - 'type' => 'relates_to', -]); - -// Collection/AddCommand -$collection->entries()->attach($entryId, ['sort_order' => $order]); -``` - -**Qdrant (PROBLEM - No Relationships):** -```php -// Option 1: Embed relationships in payload -$entry = $qdrant->getById($entryId); -$entry['related_to'] = array_merge($entry['related_to'] ?? [], [$relatedId]); -$qdrant->upsert($entry); - -// Option 2: Create separate "relationships" collection -$qdrant->upsert([ - 'id' => Str::uuid()->toString(), - 'from_entry_id' => $fromId, - 'to_entry_id' => $toId, - 'type' => 'relates_to', -], 'relationships'); - -// Option 3: Keep Entry model ONLY for relationships -// This maintains pivot tables while using Qdrant for search -``` - -**Critical Decision:** How to handle relationships? Embed in payload or separate collection? - ---- - -## 4. Required QdrantService Enhancements - -### Missing Methods (CRITICAL) - -#### 1. getById() -```php -/** - * Get entry by ID. - * - * @param string|int $id Entry ID (UUID or integer for backwards compat) - * @param string $project Project namespace - * @return array|null Entry data or null if not found - */ -public function getById(string|int $id, string $project = 'default'): ?array -{ - // Implementation: Use Qdrant's scroll or filter API - // Filter by payload.id == $id - // Return single result or null -} -``` - -#### 2. incrementUsage() -```php -/** - * Increment usage count and update last_used timestamp. - * - * @param string|int $id Entry ID - * @param string $project Project namespace - * @return bool Success - */ -public function incrementUsage(string|int $id, string $project = 'default'): bool -{ - $entry = $this->getById($id, $project); - if (!$entry) return false; - - $entry['usage_count'] = ($entry['usage_count'] ?? 0) + 1; - $entry['last_used'] = now()->toIso8601String(); - - return $this->upsert($entry, $project); -} -``` - -#### 3. updateFields() -```php -/** - * Update specific fields without fetching full entry. - * - * @param string|int $id Entry ID - * @param array $fields Fields to update - * @param string $project Project namespace - * @return bool Success - */ -public function updateFields(string|int $id, array $fields, string $project = 'default'): bool -{ - $entry = $this->getById($id, $project); - if (!$entry) return false; - - foreach ($fields as $key => $value) { - $entry[$key] = $value; - } - - $entry['updated_at'] = now()->toIso8601String(); - - return $this->upsert($entry, $project); -} -``` - -#### 4. listAll() -```php -/** - * List all entries with filters (no semantic search). - * - * @param array $filters Filters (category, module, priority, status, tag) - * @param int $limit Maximum results - * @param string $project Project namespace - * @return Collection Entry collection - */ -public function listAll(array $filters = [], int $limit = 100, string $project = 'default'): Collection -{ - // Use search with empty query for pure filtering - return $this->search('', $filters, $limit, $project); -} -``` - ---- - -## 5. Edge Cases to Test - -### Critical Edge Cases -1. **Empty query with filters** - Pure filtering without semantic search -2. **Large limit values (>100)** - May hit Qdrant API limits -3. **Updating with same data** - Idempotency check -4. **Incrementing usage on non-existent entry** - Error handling -5. **Concurrent updates** - Race condition between fetch and upsert -6. **Special characters in title/content** - Embedding generation -7. **Empty or null tag arrays** - Array handling -8. **Migration with relationships** - Pivot table data -9. **Null/missing optional fields** - Default value handling -10. **UUID collision** - Extremely rare but possible - -### Test Coverage Requirements -- **100% coverage** enforced by Synapse Sentinel -- **PHPStan level 8** strict mode -- **Pest** testing framework - ---- - -## 6. Test Strategy - -### Approach -1. **Mock QdrantService** in command tests to verify correct method calls -2. **Real integration tests** for QdrantService itself (with test Qdrant instance) -3. **Separate migration tests** with MigrateToQdrantCommand - -### Mock Strategy -- **Command tests:** Mock QdrantService to verify logic without vector DB dependency -- **Integration tests:** Real QdrantService + mock EmbeddingService -- **End-to-end tests:** Real stack (Qdrant + Ollama + embeddings) - -### Critical Migration Tests -1. Verify all Entry fields map to Qdrant payload correctly -2. Verify UUID generation is unique and valid -3. Verify embeddings are generated correctly (title + content) -4. Test rollback scenario (restore from backup) -5. Verify usage tracking still works after migration -6. Test edge case: entry with all null optional fields - -### Coverage Gaps to Watch -- **Relationship handling** (tags, collections, relationships) -- **Batch operations** (inserting 1000+ entries) -- **Performance testing** (Qdrant vs SQLite query speed) -- **Concurrent access** (multiple commands modifying same entry) - ---- - -## 7. Risk Assessment - -### HIGH RISK - -#### Risk 1: Relationships (tags, collections) not supported -- **Issue:** Eloquent relationships stored in pivot tables (entry_tag, collection_entry, relationships) -- **Affected Commands:** KnowledgeLinkCommand, KnowledgeUnlinkCommand, Collection/AddCommand, Collection/RemoveCommand, KnowledgeRelatedCommand, KnowledgeGraphCommand -- **Mitigation Options:** - 1. Store relationships as arrays in payload (simple but limited) - 2. Create separate Qdrant collections for relationships (complex but scalable) - 3. Keep Entry model ONLY for relationships (hybrid approach) - -#### Risk 2: No direct find-by-ID method -- **Issue:** QdrantService has search() but no getById() -- **Affected Commands:** KnowledgeShowCommand, KnowledgeUpdateCommand, KnowledgeMergeCommand, KnowledgeDeprecateCommand, KnowledgeArchiveCommand -- **Mitigation:** Implement getById() using Qdrant scroll or filter API - -#### Risk 3: incrementUsage() not atomic -- **Issue:** Requires fetch + upsert (two operations), possible race condition -- **Affected Commands:** KnowledgeShowCommand, KnowledgeSearchCommand -- **Mitigation:** Accept race condition risk OR implement locking mechanism - ---- - -### MEDIUM RISK - -#### Risk 4: Integer IDs → UUID strings (breaking change) -- **Issue:** Existing users expect integer IDs, UUIDs are strings -- **Affected Commands:** ALL commands accepting ID argument -- **Mitigation:** Support both formats during migration period, clear documentation - -#### Risk 5: Eloquent query builder features not available -- **Issue:** No scopes, eager loading, aggregations (count, sum, avg, groupBy) -- **Affected Commands:** KnowledgeListCommand, KnowledgeStatsCommand, KnowledgePruneCommand, KnowledgeStaleCommand -- **Mitigation:** Reimplement filtering/aggregation in application layer, cache results - ---- - -### LOW RISK - -#### Risk 6: Different ordering results -- **Issue:** Qdrant orders by relevance score, not confidence/usage_count -- **Affected Commands:** KnowledgeListCommand, KnowledgeSearchCommand -- **Mitigation:** Document new behavior, allow sorting by multiple criteria - ---- - -## 8. Migration Strategy - -### RECOMMENDED: Phased Migration - -#### PHASE 1: Enhance QdrantService (Week 1) -- [ ] Add `getById(string|int $id, string $project): ?array` -- [ ] Add `incrementUsage(string|int $id, string $project): bool` -- [ ] Add `updateFields(string|int $id, array $fields, string $project): bool` -- [ ] Add `listAll(array $filters, int $limit, string $project): Collection` -- [ ] Write comprehensive tests for new methods (100% coverage) -- [ ] Update QdrantService documentation - -#### PHASE 2: Refactor Simple Commands (Week 2) -✓ KnowledgeAddCommand (already done) -- [ ] KnowledgeListCommand - Pure filtering, no relationships -- [ ] KnowledgeShowCommand - Find by ID + usage tracking -- [ ] KnowledgeSearchCommand - Semantic search (already using Qdrant?) -- [ ] KnowledgeIndexCommand - Indexing operations - -#### PHASE 3: Refactor Update Commands (Week 3) -- [ ] KnowledgeUpdateCommand - Update fields -- [ ] KnowledgeDeprecateCommand - Update status -- [ ] KnowledgeArchiveCommand - Update status -- [ ] KnowledgeValidateCommand - Update validation_date - -#### PHASE 4: Refactor Stats/Aggregation Commands (Week 4) -- [ ] KnowledgeStatsCommand - Implement in-memory aggregations -- [ ] KnowledgePruneCommand - Filter + delete -- [ ] KnowledgeStaleCommand - Filter by date -- [ ] KnowledgeDuplicatesCommand - Similarity detection - -#### PHASE 5: Handle Relationships (Week 5-6) -**CRITICAL DECISION NEEDED:** Choose relationship storage strategy - -**Option A: Embed in Payload (Simple)** -```php -// Store related IDs as arrays in payload -$entry['related_to'] = ['uuid-1', 'uuid-2', 'uuid-3']; -$entry['collections'] = ['collection-uuid-1', 'collection-uuid-2']; -``` -Pros: Simple, no extra collections needed -Cons: Limited querying, no relationship metadata - -**Option B: Separate Collections (Complex)** -```php -// Create "relationships" collection in Qdrant -$qdrant->upsert([ - 'id' => Str::uuid()->toString(), - 'from_entry_id' => $fromId, - 'to_entry_id' => $toId, - 'type' => 'relates_to', - 'metadata' => $metadata, -], 'relationships'); -``` -Pros: Full relationship support, queryable -Cons: More complex, multiple collection queries - -**Option C: Hybrid (Keep Entry for Relationships)** -```php -// Use QdrantService for search -$results = $qdrant->search($query); - -// Use Entry model for relationships -$entry = Entry::find($id); -$related = $entry->outgoingRelationships; -``` -Pros: No refactor needed for relationship commands -Cons: Maintains SQLite dependency - -**Affected Commands:** -- [ ] KnowledgeLinkCommand -- [ ] KnowledgeUnlinkCommand -- [ ] KnowledgeRelatedCommand -- [ ] KnowledgeGraphCommand -- [ ] KnowledgeExportGraphCommand -- [ ] Collection/AddCommand -- [ ] Collection/RemoveCommand - -#### PHASE 6: Data Migration (Week 7) -- [ ] Run MigrateToQdrantCommand to copy all Entry data to Qdrant -- [ ] Verify data integrity (all fields, relationships) -- [ ] Parallel mode: Keep both SQLite and Qdrant running -- [ ] Gradual rollout: Switch commands one by one -- [ ] Monitor for issues (performance, errors, data loss) - -#### PHASE 7: Cleanup (Week 8) -- [ ] Deprecate Entry model (or keep for relationships only) -- [ ] Remove SQLite database (backup first!) -- [ ] Update all documentation -- [ ] Remove Entry model imports from all commands -- [ ] Final testing with 100% coverage - ---- - -## 9. Backwards Compatibility - -### Feature Flag Approach -```php -// config/knowledge.php -return [ - 'storage' => env('KNOWLEDGE_STORAGE', 'qdrant'), // or 'sqlite' -]; -``` - -### Repository Pattern (Advanced) -```php -interface EntryRepositoryInterface { - public function find(string|int $id): ?array; - public function search(string $query, array $filters, int $limit): Collection; - public function create(array $data): string|int; - public function update(string|int $id, array $data): bool; - public function delete(string|int $id): bool; - public function incrementUsage(string|int $id): bool; -} - -class QdrantEntryRepository implements EntryRepositoryInterface { - public function __construct(private QdrantService $qdrant) {} - - public function find(string|int $id): ?array { - return $this->qdrant->getById($id); - } - - // ... implement all methods -} - -class EloquentEntryRepository implements EntryRepositoryInterface { - public function find(string|int $id): ?array { - $entry = Entry::find($id); - return $entry ? $entry->toArray() : null; - } - - // ... implement all methods -} -``` - -Bind in `config/app.php`: -```php -$this->app->bind(EntryRepositoryInterface::class, function() { - return config('knowledge.storage') === 'qdrant' - ? new QdrantEntryRepository(app(QdrantService::class)) - : new EloquentEntryRepository(); -}); -``` - -**Pros:** Clean abstraction, easy to switch storage backends -**Cons:** More code, additional layer of abstraction - ---- - -## 10. Immediate Action Items - -### Priority 1 (This Week) -1. [ ] **Add missing methods to QdrantService** - - getById(string|int $id, string $project): ?array - - incrementUsage(string|int $id, string $project): bool - - updateFields(string|int $id, array $fields, string $project): bool - - listAll(array $filters, int $limit, string $project): Collection - -2. [ ] **Write comprehensive tests** for new QdrantService methods - - Unit tests with mocked Qdrant connector - - Integration tests with real Qdrant instance - - Edge case tests (null values, empty strings, large arrays) - -### Priority 2 (Next Week) -3. [ ] **Decide on relationship storage strategy** - - Embed in payload (simple) - - Separate collections (complex) - - Hybrid approach (keep Entry for relationships) - -4. [ ] **Refactor KnowledgeListCommand** to use QdrantService - - Replace Entry::query()->where()->get() with $qdrant->listAll() - - Update tests to mock QdrantService - - Maintain 100% coverage - -5. [ ] **Refactor KnowledgeShowCommand** to use QdrantService - - Replace Entry::find() with $qdrant->getById() - - Replace $entry->incrementUsage() with $qdrant->incrementUsage() - - Update tests - -### Priority 3 (Following Weeks) -6. [ ] **Document breaking changes** - - Integer ID → UUID migration guide - - Command argument changes - - Relationship handling changes - -7. [ ] **Update remaining 20+ commands incrementally** - - Follow phased migration plan (Phases 2-7) - - One command at a time - - Test after each refactor - -8. [ ] **Create EntryRepository interface** (optional, for abstraction) - - Define interface for storage operations - - Implement QdrantEntryRepository - - Implement EloquentEntryRepository (fallback) - ---- - -## 11. Code Examples - -### Example 1: KnowledgeListCommand Refactor - -**BEFORE (Eloquent):** -```php -public function handle(): int -{ - $category = $this->option('category'); - $priority = $this->option('priority'); - $limit = (int) $this->option('limit'); - - $query = Entry::query() - ->when($category, fn($q, $val) => $q->where('category', $val)) - ->when($priority, fn($q, $val) => $q->where('priority', $val)) - ->orderBy('confidence', 'desc') - ->orderBy('usage_count', 'desc'); - - $totalCount = $query->count(); - $entries = $query->limit($limit)->get(); - - foreach ($entries as $entry) { - $this->line("[{$entry->id}] {$entry->title}"); - } - - return self::SUCCESS; -} -``` - -**AFTER (Qdrant):** -```php -public function handle(QdrantService $qdrant): int -{ - $category = $this->option('category'); - $priority = $this->option('priority'); - $limit = (int) $this->option('limit'); - - // Build filters - $filters = array_filter([ - 'category' => $category, - 'priority' => $priority, - ]); - - // Use listAll() for non-semantic filtering - $entries = $qdrant->listAll($filters, $limit); - - // Note: Can't get total count without fetching all entries - // Could cache count or show "Showing X entries" instead of "X of Y" - - foreach ($entries as $entry) { - $this->line("[{$entry['id']}] {$entry['title']}"); - } - - return self::SUCCESS; -} -``` - -**Changes:** -- Inject QdrantService instead of using Entry model -- Build filters array instead of chained where() calls -- Use `listAll()` instead of `get()` -- Access array keys instead of object properties -- No total count (would require fetching all entries) - ---- - -### Example 2: KnowledgeShowCommand Refactor - -**BEFORE (Eloquent):** -```php -public function handle(): int -{ - $id = $this->argument('id'); - - if (!is_numeric($id)) { - $this->error('The ID must be a valid number.'); - return self::FAILURE; - } - - $entry = Entry::find((int) $id); - - if (!$entry) { - $this->line('Entry not found.'); - return self::FAILURE; - } - - $entry->incrementUsage(); - - $this->info("ID: {$entry->id}"); - $this->info("Title: {$entry->title}"); - $this->line("Content: {$entry->content}"); - $this->line("Priority: {$entry->priority}"); - $this->line("Usage Count: {$entry->usage_count}"); - - return self::SUCCESS; -} -``` - -**AFTER (Qdrant):** -```php -public function handle(QdrantService $qdrant): int -{ - $id = $this->argument('id'); - - // Support both UUID and integer IDs (backwards compat) - $entry = $qdrant->getById($id); - - if (!$entry) { - $this->line('Entry not found.'); - return self::FAILURE; - } - - // Increment usage (non-atomic, possible race condition) - $qdrant->incrementUsage($id); - - $this->info("ID: {$entry['id']}"); - $this->info("Title: {$entry['title']}"); - $this->line("Content: {$entry['content']}"); - $this->line("Priority: {$entry['priority']}"); - $this->line("Usage Count: {$entry['usage_count']}"); - - return self::SUCCESS; -} -``` - -**Changes:** -- Inject QdrantService -- Use `getById()` instead of `Entry::find()` -- Use `incrementUsage()` method instead of model method -- Access array keys instead of object properties -- Removed numeric ID validation (support UUIDs) - ---- - -## 12. Performance Considerations - -### Potential Performance Issues - -1. **Aggregations (Stats Command)** - - Entry: SQL aggregations (fast, database-optimized) - - Qdrant: Fetch all entries into memory, aggregate in PHP (slow) - - **Solution:** Cache aggregated stats, update on write - -2. **Batch Operations** - - Entry: Eloquent chunk() for large datasets - - Qdrant: May need to fetch all entries at once - - **Solution:** Implement pagination in Qdrant API calls - -3. **Relationships** - - Entry: Eager loading with `with()` (single query) - - Qdrant: Multiple collection queries - - **Solution:** Embed relationships in payload OR use separate collection with batch queries - -### Performance Testing -- [ ] Benchmark Entry vs Qdrant for common operations -- [ ] Test with large datasets (10k, 100k entries) -- [ ] Measure memory usage for aggregation queries -- [ ] Test concurrent access patterns - ---- - -## 13. Documentation Updates Needed - -1. **README.md** - Update architecture section -2. **API.md** - Document new QdrantService methods -3. **MIGRATION.md** - Entry → Qdrant migration guide -4. **BREAKING_CHANGES.md** - Integer ID → UUID, command changes -5. **Command help text** - Update for ID format changes -6. **Tests README** - Update test patterns for QdrantService - ---- - -## Conclusion - -This refactor is **complex** but **achievable** with a phased approach. The key challenges are: - -1. **Missing QdrantService methods** (getById, incrementUsage, updateFields, listAll) -2. **Relationship storage** (decide: embed, separate collection, or hybrid) -3. **Breaking changes** (integer ID → UUID) -4. **Test coverage** (maintain 100% with Synapse Sentinel) - -**Estimated Timeline:** 8 weeks for full migration - -**Next Steps:** -1. Implement missing QdrantService methods (Priority 1) -2. Decide on relationship storage strategy (Priority 2) -3. Begin phased command refactoring (Priority 2) - ---- - -**Generated by:** Entry → Qdrant Refactor Analysis Script -**Contact:** Jordan Partridge (@jordanpartridge) diff --git a/ROADMAP.md b/ROADMAP.md index 2745d04..c7dd4f0 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -1,194 +1,60 @@ -# Knowledge CLI - 100x Productivity Roadmap +# Knowledge CLI - Roadmap -## Critical Path: 5 Issues to Ship +## Completed -These 5 issues transform knowledge from "productivity tracker with ChromaDB" to "AI-first semantic context engine." +### Pure Qdrant Vector Storage +Replaced SQLite entirely with Qdrant-only architecture. No schema migrations, no Eloquent models. All data stored as vector payloads. ---- - -## Issue #1: Pure Qdrant Vector Storage - -**Goal**: Replace SQLite entirely with Qdrant-only architecture - -**Why**: Eliminate schema complexity, migrations, and dual-database maintenance - -**Tasks**: -- [ ] Add `qdrant/php-client` composer package -- [ ] Create `QdrantService` with collection management -- [ ] Store full entry data in Qdrant payloads (no SQLite) -- [ ] Implement upsert/delete/query operations -- [ ] Create Qdrant collection per project namespace (auto-detected from git) -- [ ] Delete all SQLite migrations and models -- [ ] Update all commands to use QdrantService instead of Eloquent +### Redis Caching Layer +KnowledgeCacheService provides sub-200ms query responses through aggressive caching of embeddings, search results, and collection stats. -**Success Criteria**: -- `know add` stores directly to Qdrant -- `know search` queries Qdrant only -- Zero SQL queries in codebase -- Migrations directory deleted +### Odin Background Sync +OdinSyncService syncs knowledge to centralized Odin server. Includes deletion propagation, sync purge, and bidirectional push/pull. -**Files to modify**: -- `app/Services/QdrantService.php` (new) -- `app/Commands/KnowledgeAddCommand.php` -- `app/Commands/KnowledgeSearchCommand.php` -- Delete: `database/migrations/*`, `app/Models/*` +### Entry Metadata & Staleness Detection +EntryMetadataService tracks entry freshness with confidence degradation over time. Superseded marking instead of destructive overwrites. ---- - -## Issue #2: Redis Caching Layer +### Write Gate +WriteGateService filters knowledge before persistence — prevents low-quality or duplicate entries from polluting the knowledge base. -**Goal**: Sub-200ms query responses through aggressive caching +### Correction Protocol +Multi-tier correction propagation. When knowledge is corrected, related entries are identified and updated. -**Why**: Read-optimized for instant AI context injection +### Daily Log Staging +DailyLogService stages entries before permanent storage. Entries can be reviewed and promoted via `stage` and `promote` commands. -**Tasks**: -- [ ] Cache embeddings (key: hash of text, TTL: 7 days) -- [ ] Cache search results (key: query hash, TTL: 1 hour) -- [ ] Cache Qdrant collection stats (TTL: 5 minutes) -- [ ] Implement cache warming on startup -- [ ] Add cache invalidation on entry updates -- [ ] Monitor cache hit rates in `know stats` +### Service Management +Full Docker service lifecycle: `service:up`, `service:down`, `service:status`, `service:logs`. -**Success Criteria**: -- Cached query < 50ms (90th percentile) -- Uncached query < 200ms (90th percentile) -- 80%+ cache hit rate in normal usage -- `know stats` shows cache metrics +### Code Indexing +Index and search codebases semantically via `index-code` and `search-code`. -**Files to modify**: -- `app/Services/CacheService.php` (new) -- `app/Services/EmbeddingService.php` -- `app/Commands/KnowledgeSearchCommand.php` -- `app/Commands/KnowledgeStatsCommand.php` +### Context Command +Semantic session context loading for AI tools — auto-injects relevant knowledge into Claude Code sessions. --- -## Issue #3: Background Ollama Enhancement - -**Goal**: Auto-tag and enhance entries without blocking writes +## Open PRs (Need Rebase) -**Why**: Instant writes, smart organization happens async +### Tiered Search (#120) +Narrow-to-wide retrieval across four tiers: working context, recent, structured, archive. Early return on confident matches. **Status: merge conflict.** -**Tasks**: -- [ ] Create enhancement queue (Redis-backed) -- [ ] Background worker processes queue -- [ ] Ollama generates: tags, category, concepts, summary -- [ ] Store enhancements back to Qdrant payload -- [ ] Skip enhancement if Ollama unavailable (degrade gracefully) -- [ ] Add `--skip-enhance` flag for fast writes -- [ ] Show enhancement status in `know show ` +### Background Ollama Auto-Tagging (#118) +Async auto-tagging via OllamaService with file-based enhancement queue. `know add` stays fast (<100ms), enhancement happens in background. **Status: merge conflict.** -**Success Criteria**: -- `know add` returns in < 100ms -- Enhancement completes within 10 seconds -- Entries enhanced even if Ollama is slow -- Graceful degradation when Ollama offline +### CodeRabbit Review Extraction (#117) +Extract CodeRabbit review findings from GitHub PRs and store as knowledge entries. **Status: CI failing (94.5% coverage, needs 95%).** -**Files to modify**: -- `app/Services/EnhancementQueue.php` (new) -- `app/Services/OllamaService.php` (fix bugs) -- `app/Commands/KnowledgeAddCommand.php` -- `app/Commands/KnowledgeShowCommand.php` +### Project-Aware Namespacing (#109) +Auto-detect git repo and create per-project Qdrant collections. `--project` and `--global` flags on all commands. **Status: merge conflict.** --- -## Issue #4: Smart Query Expansion - -**Goal**: Ollama-powered semantic query understanding - -**Why**: Find relevant knowledge even with imperfect queries - -**Tasks**: -- [ ] Expand user query with synonyms/related terms via Ollama -- [ ] Generate multiple embedding variations -- [ ] Query Qdrant with all variations -- [ ] Merge and de-duplicate results -- [ ] Rank by semantic similarity + recency -- [ ] Show "searched for: X, Y, Z" to user -- [ ] Cache expanded queries (Redis) - -**Success Criteria**: -- `know search "redis"` finds entries about "cache", "key-value store" -- Relevant results even with typos or informal language -- Query expansion < 500ms (cached) or < 2s (uncached) -- Top 3 results are relevant 80%+ of the time - -**Files to modify**: -- `app/Services/QueryExpansionService.php` (new) -- `app/Services/OllamaService.php` -- `app/Commands/KnowledgeSearchCommand.php` - ---- - -## Issue #5: Project-Aware Namespacing - -**Goal**: Auto-detect git repo, create per-project knowledge collections - -**Why**: Context-specific results, no noise from other projects - -**Tasks**: -- [ ] Detect git repo name from `git remote -v` -- [ ] Create Qdrant collection: `knowledge_{repo_name}` -- [ ] Auto-switch collection based on current directory -- [ ] Add `--project=` flag to override -- [ ] Add `--global` flag to search all projects -- [ ] Show current project in `know stats` -- [ ] List all projects in `know projects` (new command) - -**Success Criteria**: -- Each git repo gets its own namespace automatically -- `know search` only returns results from current project -- `know search --global` searches all projects -- `know projects` lists all knowledge bases - -**Files to modify**: -- `app/Services/ProjectDetectionService.php` (new) -- `app/Services/QdrantService.php` -- All search/add commands -- `app/Commands/ProjectsCommand.php` (new) - ---- - -## Bonus Issue #6: Odin Sync (Post-MVP) - -**Goal**: Background sync to centralized Odin server - -**Why**: Team knowledge sharing, backup, multi-machine access - -**Tasks**: -- [ ] Background sync queue (writes to Odin Qdrant) -- [ ] Conflict resolution (last-write-wins) -- [ ] Pull fresh results during search if Odin available -- [ ] `know sync` command for manual sync -- [ ] Show sync status in `know stats` - -**Success Criteria**: -- Writes queue for sync every 5 minutes -- Search checks Odin for fresh results -- Fully functional offline -- Team members see each other's knowledge - ---- - -## Implementation Order - -1. **Issue #1** (Qdrant) - Foundation, blocks everything else -2. **Issue #5** (Projects) - Must happen before adding real data -3. **Issue #2** (Caching) - Performance boost -4. **Issue #3** (Enhancement) - Auto-organization -5. **Issue #4** (Query expansion) - Smart search -6. **Issue #6** (Sync) - Team collaboration - -## Timeline Estimate - -- Week 1: Issue #1 + #5 (Foundation) -- Week 2: Issue #2 + #3 (Performance + Intelligence) -- Week 3: Issue #4 (Smart search) -- Week 4: Issue #6 (Sync to Odin) - -**MVP: Issues #1, #2, #5** = Functional vector knowledge base -**100x Productivity: All 6 issues** = AI-first context engine - ---- +## Future -*Next step: Delete productivity commands, implement Issue #1* +- **Smart Query Expansion**: Ollama-powered semantic query understanding (synonyms, related terms) +- **Tiered Search**: Merge PR #120 — narrow-to-wide retrieval strategy +- **Background Ollama Enhancement**: Merge PR #118 — async auto-tagging +- **Project Namespacing**: Merge PR #109 — per-project collections +- **PostgreSQL/Pluggable Vector Store**: Support alternative vector backends (#23) +- **Agentify**: AI agents that monitor Claude Code conversations via hooks (#96) diff --git a/docs/TestExecutorService.md b/docs/TestExecutorService.md deleted file mode 100644 index 704b7cb..0000000 --- a/docs/TestExecutorService.md +++ /dev/null @@ -1,219 +0,0 @@ -# TestExecutorService - -## Overview - -The `TestExecutorService` provides automated test execution, failure parsing, and AI-assisted test fixing capabilities for the knowledge Laravel application. It integrates with Pest test runner and Ollama AI service to automatically detect, analyze, and attempt to fix test failures. - -## Location - -`app/Services/TestExecutorService.php` - -## Dependencies - -- `OllamaService` - AI service for analyzing test failures and suggesting fixes -- `Illuminate\Support\Facades\File` - File system operations -- Pest test runner via `vendor/bin/pest` - -## Constructor - -```php -public function __construct( - private readonly OllamaService $ollama -) {} -``` - -## Key Features - -### 1. Test Execution - -Run individual test files or the full test suite and get detailed results. - -```php -$service = app(TestExecutorService::class); - -// Run full test suite -$results = $service->runTests(); - -// Run specific test file -$results = $service->runTests('tests/Feature/ExampleTest.php'); -``` - -### 2. Failure Parsing - -Automatically parse Pest test output to extract failure details. - -```php -$output = "... pest test output ..."; -$failures = $service->parseFailures($output); - -// Returns array of failures: -[ - [ - 'test' => 'example test name', - 'file' => '/path/to/test.php', - 'message' => 'Expected true but got false', - 'trace' => 'at tests/Feature/ExampleTest.php:15' - ] -] -``` - -### 3. AI-Assisted Auto-Fix - -Attempt to automatically fix failing tests using Ollama AI suggestions. - -```php -$failure = [ - 'test' => 'it validates user input', - 'file' => 'tests/Feature/UserTest.php', - 'message' => 'Expected validation to pass', - 'trace' => '...' -]; - -$fixed = $service->autoFixFailure($failure, $attempt = 1); -// Returns: bool - true if fix succeeded, false otherwise -``` - -**Auto-fix constraints:** -- Maximum 3 attempts per failure -- Requires Ollama service to be available -- Only applies fixes with confidence >= 70% -- Currently logs suggestions (manual review required) - -### 4. Test File Discovery - -Find test files for specific classes. - -```php -$testFile = $service->getTestFileForClass('App\Services\ExampleService'); -// Returns: '/path/to/tests/Feature/Services/ExampleServiceTest.php' -``` - -## Return Format from runTests() - -```php -[ - 'passed' => true|false, // Overall test suite status - 'total' => 50, // Total number of tests run - 'failed' => 2, // Number of failed tests - 'failures' => [...], // Array of failure details - 'fix_attempts' => [], // Array of auto-fix attempts - 'output' => '...', // Raw test output - 'exit_code' => 0 // Process exit code -] -``` - -## Configuration - -### Constants - -- `MAX_FIX_ATTEMPTS` = 3 - Maximum retry attempts per failure -- `MIN_CONFIDENCE_THRESHOLD` = 70 - Minimum AI confidence required to apply fix - -## Test File Mapping - -The service automatically maps test files to implementation files: - -| Test Location | Implementation Location | -|--------------|------------------------| -| `tests/Feature/Services/ExampleTest.php` | `app/Services/Example.php` | -| `tests/Unit/Services/ExampleTest.php` | `app/Services/Example.php` | -| `tests/Feature/Commands/ExampleTest.php` | `app/Commands/Example.php` | - -## Failure Parsing - -The service parses Pest output to extract: - -1. **Test name** - From failure header -2. **File path** - Converted from namespace to file path -3. **Error message** - Expected/assertion failure messages -4. **Stack trace** - File and line number information - -### Supported Failure Formats - -- Assertion failures: `Failed asserting that...` -- Expectation failures: `Expected X but got Y` -- Exceptions: `Exception: message` -- Method call errors: `Call to undefined method...` - -## Example Usage - -### Basic Test Execution - -```php -use App\Services\TestExecutorService; - -$executor = app(TestExecutorService::class); - -// Run all tests -$results = $executor->runTests(); - -if (!$results['passed']) { - foreach ($results['failures'] as $failure) { - echo "Failed: {$failure['test']}\n"; - echo "File: {$failure['file']}\n"; - echo "Error: {$failure['message']}\n"; - } -} -``` - -### Auto-Fix Workflow - -```php -$results = $executor->runTests(); - -if (!$results['passed']) { - foreach ($results['failures'] as $failure) { - for ($attempt = 1; $attempt <= 3; $attempt++) { - if ($executor->autoFixFailure($failure, $attempt)) { - echo "Fixed on attempt {$attempt}\n"; - break; - } - } - } -} -``` - -## Testing - -Test file: `tests/Unit/Services/TestExecutorServiceTest.php` - -Run tests: -```bash -vendor/bin/pest tests/Unit/Services/TestExecutorServiceTest.php -``` - -## Quality Standards - -- **PHPStan Level 8** - Full strict type checking -- **100% Test Coverage** - All methods tested -- **Laravel Pint** - Code style compliance - -## Future Enhancements - -### Planned Features - -1. **Safe Code Modification** - AST-based code patching instead of text replacement -2. **Fix History Tracking** - Database logging of all fix attempts and outcomes -3. **Success Rate Analytics** - Track which types of failures are fixable -4. **Integration with CI/CD** - Automatic PR creation with fixes -5. **Multi-Strategy Fixes** - Try multiple approaches per failure -6. **Test Generation** - Auto-generate missing tests - -### Known Limitations - -1. Auto-fix currently only logs suggestions (manual review required) -2. No support for modifying database migrations or config files -3. Cannot fix failures caused by missing dependencies -4. Stack trace parsing may fail on highly customized test output formats - -## Related Services - -- `OllamaService` - AI analysis and suggestions -- `QualityGateService` - Comprehensive quality checking including tests -- `IssueAnalyzerService` - GitHub issue analysis and file recommendations - -## See Also - -- [OllamaService Documentation](./OllamaService.md) -- [Quality Gates Documentation](./QualityGates.md) -- [Testing Guide](../TESTING.md) diff --git a/docs/qdrant-migration-completion-report.md b/docs/qdrant-migration-completion-report.md deleted file mode 100644 index 56148eb..0000000 --- a/docs/qdrant-migration-completion-report.md +++ /dev/null @@ -1,485 +0,0 @@ -# Qdrant Migration Completion Report - -**Date:** 2026-01-10 -**Issue:** #78 - Migrate from SQLite + Eloquent to Pure Qdrant Vector Storage -**PR:** #87 -**Status:** READY FOR MERGE ✅ - ---- - -## Executive Summary - -Successfully completed migration from SQLite + Eloquent ORM to pure Qdrant vector storage with custom Saloon HTTP client. All quality gates passed, achieving 100% PHPStan compliance and comprehensive test coverage. - -**Key Metrics:** -- Files Deleted: 62 (-10,347 lines) -- Code Changes: 139 files modified (-12,686 lines, +7,766 lines) -- Net Reduction: -5,162 lines (-33% reduction) -- PHPStan: Level 8, 0 errors ✅ -- Tests: 212 passing, 0 failing ✅ -- Quality Gates: All passed ✅ - ---- - -## Architecture Changes - -### Before (SQLite + Eloquent) -``` -Commands → Entry/Collection/Relationship Models → SQLite DB - ↓ - ChromaDB (optional embeddings) -``` - -### After (Pure Qdrant) -``` -Commands → QdrantService → Custom Saloon Client → Qdrant HTTP API - ↓ - Embeddings + Data -``` - -### Benefits -1. **Simplified Stack:** Single source of truth (Qdrant) instead of dual storage -2. **Better Performance:** Vector search natively integrated -3. **Reduced Complexity:** Eliminated ORM overhead and relationship management -4. **Production Ready:** SSL verification, proper error handling, typed exceptions - ---- - -## Quality Swarm Results - -### Three Parallel Agents Deployed - -**1. test-writer Agent** -- **Mission:** Fix test mock signatures -- **Result:** ✅ SUCCESS -- **Actions:** - - Fixed 12 tests in KnowledgeSearchCommandTest - - Updated all QdrantService::search() mocks to match signature - - Changed from 4-param to 3-param expectations - -**2. architecture-reviewer Agent** -- **Mission:** Production readiness assessment -- **Result:** ✅ SHIP (after fixes) -- **Score:** 8.5/10 -- **Assessment:** - - ✅ GREEN: Clean exception hierarchy, embedding cache strategy, comprehensive tests - - ✅ YELLOW: All issues resolved - - ❌ RED: All blockers fixed - -**3. laravel-test-fixer Agent** -- **Mission:** Fix ALL failing tests (145 failures → 0) -- **Result:** ✅ SUCCESS -- **Actions:** - - Deleted 50+ test files for removed features - - Rewrote 5 command test suites for Qdrant - - Updated AppServiceProviderTest - - Final: 212 passing, 0 failing, 4 skipped - ---- - -## Critical Blockers Fixed - -### 1. ✅ PHPStan Level 8 Compliance -**Problem:** 242 errors due to deleted models in baseline -**Solution:** -- Regenerated baseline with correct references -- Removed deprecated `checkMissingIterableValueType` config -- Added single-process mode to prevent memory exhaustion -- **Result:** 0 errors, clean pass - -### 2. ✅ Dead Code Elimination -**Problem:** References to deleted Entry model -**Solution:** -- Deleted `KnowledgeSearchService::createFromIssue()` (unused) -- Deleted `MarkdownExporter::export()` (Entry model dependency) -- Removed registration from AppServiceProvider -- Regenerated PHPStan baseline -- **Result:** No Entry:: references in codebase - -### 3. ✅ SSL Verification -**Problem:** OllamaService using HTTP without SSL verification -**Solution:** -- Added `CURLOPT_SSL_VERIFYPEER = true` -- Added `CURLOPT_SSL_VERIFYHOST = 2` -- Applied to both `generate()` and `isAvailable()` methods -- **Result:** Production-ready security - -### 4. ✅ Test Suite Overhaul -**Problem:** 145 failing tests referencing deleted models -**Solution:** -- Deleted 50+ obsolete test files -- Rewrote KnowledgeListCommandTest (13 tests) -- Rewrote KnowledgeShowCommandTest (9 tests) -- Rewrote KnowledgeValidateCommandTest (6 tests) -- Fixed all mock expectations -- **Result:** 100% pass rate (212/212) - ---- - -## Files Deleted (62 Total) - -### Commands (15) -- KnowledgeLinkCommand -- KnowledgeUnlinkCommand -- KnowledgeGraphCommand -- KnowledgeRelatedCommand -- KnowledgeMergeCommand -- KnowledgePruneCommand -- KnowledgeDuplicatesCommand -- KnowledgeConflictsCommand -- KnowledgeDeprecateCommand -- KnowledgeStaleCommand -- KnowledgeGitEntriesCommand -- KnowledgeGitAuthorCommand -- BlockersCommand -- MilestonesCommand -- IntentsCommand - -### Models (4) -- Entry -- Collection -- Relationship -- Observation - -### Services (8) -- CollectionService -- RelationshipService -- ConfidenceService -- SimilarityService -- ChromaDBIndexService -- SemanticSearchService -- KnowledgeSearchService - -### Tests (35+) -- All relationship tests -- All export tests -- All observation tests -- All deleted command tests -- Semantic search tests - ---- - -## Core Services Updated - -### QdrantService (New - 380 lines) -**Purpose:** Primary interface to Qdrant vector database - -**Key Methods:** -```php -search(string $query, array $filters, int $limit, string $project): Collection -upsert(array $entry, string $project): bool -getById(int|string $id, string $project): ?array -updateFields(int|string $id, array $fields, string $project): bool -delete(int|string $id, string $project): bool -incrementUsage(int|string $id, string $project): bool -``` - -**Features:** -- Embedding caching (7-day TTL with xxh128 hashing) -- Project namespacing (`knowledge_{project}`) -- Graceful degradation on embedding failures -- Comprehensive error handling with typed exceptions - -### OllamaService (Updated) -**Changes:** -- Added SSL verification to all cURL requests -- Enhanced security for production deployment - -### Commands (8 Updated) -- KnowledgeAddCommand → Uses QdrantService::upsert() -- KnowledgeListCommand → Uses QdrantService::search() -- KnowledgeSearchCommand → Uses QdrantService::search() -- KnowledgeShowCommand → Uses QdrantService::getById() -- KnowledgeDeleteCommand → Uses QdrantService::delete() -- KnowledgeUpdateCommand → Uses QdrantService::updateFields() -- KnowledgeValidateCommand → Uses QdrantService::updateFields() -- KnowledgeStatsCommand → Uses QdrantService::search() - ---- - -## Test Suite Analysis - -### Final Test Count -``` -Total Tests: 212 -Passing: 212 (100%) -Failing: 0 (0%) -Skipped: 4 (future features) -Exit Code: 0 ✅ -``` - -### Skipped Tests (Not Implemented Yet) -1. KnowledgeListCommand → min-confidence filter -2. KnowledgeListCommand → pagination info display -3. KnowledgeShowCommand → files field -4. KnowledgeShowCommand → repo field - -### Tests Deleted (50+) -- DatabaseSchemaTest -- All Relationship command tests -- All Export command tests -- All Observation tests -- All deleted feature tests -- SemanticSearch tests - -### Tests Rewritten (5 Complete Suites) -1. **AppServiceProviderTest** - Removed deleted service registrations -2. **KnowledgeListCommandTest** - 13 tests, QdrantService mocks -3. **KnowledgeShowCommandTest** - 9 tests, QdrantService mocks -4. **KnowledgeValidateCommandTest** - 6 tests, QdrantService mocks -5. **KnowledgeSearchCommandTest** - 12 tests, fixed mock expectations - ---- - -## Exceptions & Error Handling - -### New Exception Hierarchy -```php -namespace App\Exceptions\Qdrant; - -- ConnectionException - Cannot connect to Qdrant -- NotFoundException - Collection/point not found (404) -- ValidationException - Invalid request data -- ServerException - Qdrant server error (5xx) -- RateLimitException - Too many requests -- EmbeddingException - Embedding generation failed -``` - -**Factory Methods:** -```php -ConnectionException::cannotConnect(string $host, int $port) -NotFoundException::collectionNotFound(string $name) -ValidationException::invalidFilter(string $field, mixed $value) -// ... etc -``` - ---- - -## Saloon Integration - -### Custom Qdrant Connector -**Location:** `app/Integrations/Qdrant/QdrantConnector.php` - -**Request Classes:** -- GetCollectionInfo -- CreateCollection -- UpsertPoints -- SearchPoints -- GetPoint -- DeletePoint -- UpdatePoint - -**Features:** -- Type-safe requests with DTOs -- Automatic JSON encoding/decoding -- Retry logic with exponential backoff -- Comprehensive error mapping - ---- - -## Configuration - -### Qdrant Settings -```php -// config/knowledge.php -'qdrant' => [ - 'host' => env('QDRANT_HOST', 'localhost'), - 'port' => env('QDRANT_PORT', 6333), - 'https' => env('QDRANT_HTTPS', false), - 'api_key' => env('QDRANT_API_KEY'), -], -``` - -### Embedding Cache -```php -'embedding_cache_ttl' => 60 * 60 * 24 * 7, // 7 days -``` - ---- - -## Migration Path for Existing Data - -### For Users with SQLite Data -```bash -# 1. Export existing entries -./know export:all --format=json --output=./backup - -# 2. Switch to Qdrant -# Update .env with QDRANT_HOST, QDRANT_PORT - -# 3. Re-import via add command -for file in backup/*.json; do - ./know add "$(jq -r .title $file)" "$(jq -r .content $file)" -done -``` - -### For Clean Installations -```bash -# Just start using Qdrant -./know serve install # Starts Qdrant via Docker -./know add "My Title" "My Content" -``` - ---- - -## Performance Implications - -### Improvements -1. **Faster Search:** Native vector search vs SQL LIKE queries -2. **Better Relevance:** Cosine similarity vs keyword matching -3. **Reduced Complexity:** No JOIN operations or ORM overhead - -### Considerations -1. **Network Latency:** HTTP calls vs local SQLite (mitigated by caching) -2. **First Request:** Embedding generation adds ~50-200ms (cached after) -3. **Batch Operations:** Currently single-upsert (TODO: add batch support) - ---- - -## Security Enhancements - -### SSL/TLS -- ✅ OllamaService: Added SSL verification -- ✅ QdrantConnector: Supports HTTPS via config -- ✅ Saloon: Built-in SSL verification - -### API Keys -- ✅ Qdrant: Optional API key support -- ✅ Environment-based configuration -- ⚠️ Recommendation: Enable API keys in production - ---- - -## Known Limitations & Future Work - -### Current Limitations -1. **No Batch Upsert:** One entry at a time (TODO: implement batch) -2. **Single Project:** Defaults to 'default' (multi-tenancy works but not exposed) -3. **No Migration Tool:** Manual export/import required - -### Future Enhancements -1. **Batch Operations:** `QdrantService::batchUpsert(array $entries)` -2. **Migration Command:** `./know migrate:to-qdrant` for seamless upgrade -3. **Multi-Project UI:** Expose project switching in CLI -4. **Incremental Sync:** Background job to sync local → Qdrant - ---- - -## Workflow Analysis: Start-Ticket Process - -### Documentation Created -**Location:** `/docs/workflow-analysis-start-ticket.md` - -**Key Sections:** -1. **6-Phase Workflow:** Ticket init → Quality swarm → Ollama → Mutation → Gate → Merge -2. **Quality Swarm Pattern:** 3-4 parallel agents (test-writer, test-fixer, architecture-reviewer, mutation-testing) -3. **Success Metrics:** 3-5 hours saved per ticket, 65% fewer bugs, 100% coverage -4. **Implementation Roadmap:** 5 milestones to build actual `start-ticket` command - -**Time Savings:** -- Without workflow: 4-6 hours (manual) -- With workflow: 45-60 minutes (automated) -- Efficiency gain: 80%+ - ---- - -## Commit Strategy - -### Recommended Commit Message -``` -feat: migrate to pure Qdrant vector storage (#78) - -BREAKING CHANGE: Replace SQLite + Eloquent with Qdrant vector database - -Architecture: -- Custom Saloon HTTP client for Qdrant API -- QdrantService as primary data interface -- Project-namespaced collections (knowledge_{project}) -- Embedding cache (7-day TTL, xxh128 hashing) - -Deleted (62 files, -10,347 lines): -- 15 commands (Link, Unlink, Graph, Merge, Prune, etc.) -- 4 models (Entry, Collection, Relationship, Observation) -- 8 services (CollectionService, RelationshipService, etc.) -- 35+ obsolete tests - -Updated (8 commands): -- Add, List, Search, Show, Delete, Update, Validate, Stats -- All use QdrantService instead of Eloquent models - -Added: -- QdrantService (380 lines) - primary interface -- QdrantConnector (Saloon) - HTTP client -- 6 typed exceptions (Connection, NotFound, Validation, etc.) - -Quality Gates: -✅ PHPStan Level 8: 0 errors (regenerated baseline) -✅ Tests: 212 passing, 0 failing (100% pass rate) -✅ Test Coverage: [Will add after coverage run] -✅ Mutation Score: [Will add after mutation testing] -✅ Security: Added SSL verification to OllamaService - -Breaking Changes: -- Entry::, Collection::, Relationship:: no longer exist -- All data now stored in Qdrant collections -- Commands removed: link, unlink, graph, merge, prune, duplicates, etc. -- Migration required for existing SQLite data (see docs) - -Migration Path: -1. Export existing data: ./know export:all --format=json -2. Update .env with QDRANT_HOST, QDRANT_PORT -3. Re-import via: ./know add - -Co-Authored-By: Claude Sonnet 4.5 -``` - ---- - -## Pre-Merge Checklist - -- [x] PHPStan Level 8 passes (0 errors) -- [x] All tests passing (212/212) -- [ ] Test coverage ≥ 100% -- [ ] Mutation score ≥ 85% -- [x] Dead code removed -- [x] SSL verification added -- [ ] Git conflicts resolved -- [ ] Commit message written -- [ ] Sentinel gate verified -- [ ] Auto-merge enabled - ---- - -## Lessons Learned - -### What Worked Well -1. **Quality Swarm:** 3 parallel agents 3x faster than sequential -2. **Architecture Review:** Caught SSL issue before merge -3. **Comprehensive Deletion:** Aggressive removal of dead code (-33% LoC) -4. **Test Rewriting:** Better than patching old tests - -### What Could Improve -1. **Earlier Mock Validation:** Check signatures before massive changes -2. **Incremental Testing:** Run tests after each major deletion -3. **Migration Tool:** Should have built `migrate:to-qdrant` command - -### For Next Migration -1. **Test First:** Update tests before code -2. **Incremental:** One model at a time -3. **Parallel Work:** Use quality swarm from day 1 - ---- - -## References - -- **Issue:** #78 -- **PR:** #87 -- **Architecture Doc:** `/docs/workflow-analysis-start-ticket.md` -- **Qdrant Docs:** https://qdrant.tech/documentation/ -- **Saloon Docs:** https://docs.saloon.dev/ - ---- - -**Report Generated:** 2026-01-10 -**Migration Status:** ✅ COMPLETE - READY FOR MERGE -**Next Steps:** Run coverage, mutation testing, commit, push, verify Sentinel gate diff --git a/docs/workflow-analysis-start-ticket.md b/docs/workflow-analysis-start-ticket.md deleted file mode 100644 index 6dbd456..0000000 --- a/docs/workflow-analysis-start-ticket.md +++ /dev/null @@ -1,422 +0,0 @@ -# Start-Ticket Workflow Analysis & Repeatable Process - -## Executive Summary - -This document analyzes the Qdrant migration workflow (Issue #78) and extracts a repeatable process for initiating ticket work with comprehensive quality gates, automated testing, and AI-assisted code generation. - -**Key Innovation:** Quality Swarm → Mutation Testing → Sentinel Gate → Auto-Merge - -## Workflow Phase Breakdown - -### Phase 1: Ticket Initialization & Context Gathering - -**Objective:** Understand the scope and prepare the environment - -**Steps:** -1. **Pull ticket details** from Linear/GitHub - - Issue number, description, acceptance criteria - - Related PRs, branches, blockers - -2. **Knowledge base query** for relevant patterns - - Search for similar migrations, architecture patterns - - Pull relevant testing strategies - - Identify potential pitfalls from past work - -3. **Environment setup** - - Create feature branch: `feature/{ticket-key}-{slug}` - - Verify dependencies (Docker, Ollama, Qdrant, etc.) - - Run baseline tests to confirm starting state - -4. **Initial assessment** - - PHPStan level 8 analysis - - Current test coverage baseline - - Identify impacted files/services - -**Commands:** -```bash -# Create branch -git checkout -b feature/TICKET-123-description - -# Baseline quality check -composer test -composer analyse -composer format --dry-run - -# Document starting state -echo "Starting coverage: $(composer test-coverage | grep 'Lines:' | awk '{print $2}')" > .workflow-baseline -``` - -### Phase 2: Quality Swarm Deployment - -**Objective:** Parallel quality agents working on different aspects - -**The Quality Swarm (3+ Agents):** - -1. **test-writer agent** - - **Mission:** Fix failing test mocks, update signatures - - **Focus:** Test infrastructure integrity - - **Output:** All mocks match current service signatures - - **Tools:** Mockery, Pest, PHPUnit - - **Success criteria:** Zero mock mismatches - -2. **laravel-test-fixer agent** - - **Mission:** Fix ALL failing tests in suite - - **Focus:** 100% pass rate - - **Output:** Green test suite - - **Tools:** Pest test runner, Laravel assertions - - **Success criteria:** 0 failures, 0 errors - -3. **architecture-reviewer agent** - - **Mission:** Production readiness assessment - - **Focus:** SOLID principles, security, performance - - **Output:** GREEN/YELLOW/RED categorized report - - **Tools:** PHPStan, architecture analysis - - **Success criteria:** - - GREEN: Ship it - - YELLOW: Address before merge - - RED: Blockers that must be fixed - -4. **Optional: mutation-testing agent** - - **Mission:** Verify test effectiveness - - **Focus:** Mutation score > 85% - - **Output:** Killed/Escaped mutant report - - **Tools:** Infection, custom mutation scripts - - **Success criteria:** MSI ≥ 85% - -**Swarm Launch Pattern:** -```bash -# Launch in parallel as background tasks -claude-agent test-writer --target "tests/**/*Test.php" & -claude-agent laravel-test-fixer --comprehensive & -claude-agent architecture-reviewer --production-ready & -claude-agent mutation-testing --min-msi=85 & - -# Monitor progress -watch -n 5 'tail -n 20 /tmp/agent-*.log' -``` - -**Agent Communication:** -- Shared context: `/tmp/swarm-context.json` -- Progress tracking: Individual log files -- Coordination: Main process monitors and synthesizes - -### Phase 3: Ollama-Assisted Code Generation - -**Objective:** AI-powered code generation with quality validation - -**Integration Points:** - -1. **Service method generation** - ```bash - ollama run codellama "Generate a Qdrant search method with filters and pagination" - ``` - -2. **Test generation** - ```bash - ollama run codellama "Generate Pest tests for QdrantService::search with edge cases" - ``` - -3. **Mock generation** - ```bash - ollama run codellama "Generate Mockery expectations for QdrantService with signature validation" - ``` - -4. **Documentation generation** - ```bash - ollama run codellama "Generate PHPDoc for QdrantService with param/return types" - ``` - -**Quality Gates for AI-Generated Code:** -- ✅ PHPStan level 8 passes -- ✅ Pest tests written and passing -- ✅ Code style matches Laravel Pint -- ✅ No security vulnerabilities (OWASP Top 10) -- ✅ Performance benchmarks met - -### Phase 4: Mutation Testing - -**Objective:** Verify test effectiveness beyond coverage - -**Workflow:** -```bash -# Install Infection (PHP mutation testing) -composer require --dev infection/infection - -# Run mutation testing on critical code -infection \ - --min-msi=85 \ - --threads=4 \ - --only-covered \ - --test-framework=pest \ - --filter=app/Services/QdrantService.php \ - --filter=app/Commands/Knowledge*.php - -# Parse results -cat infection.log | grep ESCAPED > escaped-mutants.txt -``` - -**Mutation Score Targets:** -- Critical services (Auth, Payment, etc.): 95%+ -- Core business logic: 85%+ -- Utilities and helpers: 75%+ -- Infrastructure code: 65%+ - -**AI-Assisted Mutation Fixing:** -```bash -# For each escaped mutant: -echo "Mutant: [description]" | ollama run codellama "Generate Pest test to kill this mutation" -``` - -### Phase 5: Sentinel Gate Configuration - -**Objective:** Automated quality enforcement with auto-merge - -**Gate Configuration (`.github/workflows/gate.yml`):** -```yaml -name: Sentinel Gate - -on: - push: - branches: [master] - pull_request: - branches: [master] - -jobs: - gate: - name: Sentinel Gate - runs-on: ubuntu-latest - permissions: - contents: write - checks: write - pull-requests: write - steps: - - uses: actions/checkout@v4 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: 8.3 - coverage: xdebug - - - name: Install dependencies - run: composer install --no-interaction --prefer-dist - - - name: Run Sentinel Gate - uses: synapse-sentinel/gate@v1 - with: - check: certify - coverage-threshold: 100 - mutation-threshold: 85 - auto-merge: true - merge-method: squash - github-token: ${{ secrets.GITHUB_TOKEN }} -``` - -**Quality Thresholds:** -- **Coverage:** 100% (non-negotiable) -- **Mutation Score:** 85%+ (critical paths) -- **PHPStan:** Level 8, zero errors -- **Code Style:** Laravel Pint, zero violations -- **Security:** Zero critical/high vulnerabilities - -### Phase 6: Automated Merge & Deployment - -**Objective:** Zero-touch merge when all gates pass - -**Merge Criteria:** -```yaml -all_checks_passed: - - Tests: PASS (100% coverage) - - PHPStan: PASS (level 8) - - Pint: PASS (0 violations) - - Mutation: PASS (MSI ≥ 85%) - - Architecture Review: GREEN - - Security Scan: PASS - - Performance Benchmarks: PASS -``` - -**Auto-merge triggers:** -- All checks green ✅ -- No merge conflicts -- PR approved (or auto-approve for bot PRs) -- Branch up-to-date with base - -## Complete Start-Ticket Command Specification - -### Command Signature -```bash -start-ticket [ticket-id] [options] -``` - -### Options -``` ---swarm Deploy quality swarm (default: true) ---mutation Run mutation testing (default: true) ---ollama Use Ollama for code generation (default: true) ---coverage=100 Coverage threshold (default: 100) ---mutation-score=85 Mutation score threshold (default: 85) ---auto-merge Enable auto-merge on pass (default: true) ---baseline Save baseline metrics (default: true) -``` - -### Implementation Phases - -**1. Discovery Phase** -```bash -start-ticket ISSUE-78 --baseline -``` -Output: -``` -🔍 Discovering ticket context... -✓ Fetched issue from Linear -✓ Pulled knowledge base patterns -✓ Analyzed codebase impact -✓ Saved baseline metrics - -📊 Baseline State: - Tests: 82 passing, 0 failing - Coverage: 99.2% - PHPStan: 0 errors - Mutation Score: N/A (first run) -``` - -**2. Swarm Launch Phase** -```bash -🚀 Launching quality swarm... - → test-writer: Fixing test infrastructure - → laravel-test-fixer: Achieving 100% pass rate - → architecture-reviewer: Production readiness review - → mutation-testing: Verifying test effectiveness - -⏱️ Estimated completion: 5-8 minutes -📝 Swarm logs: /tmp/swarm-{timestamp}/ -``` - -**3. Ollama Integration Phase** -```bash -🤖 Ollama assistance available: - /generate service - Generate service methods - /generate tests - Generate Pest tests - /generate mocks - Generate Mockery expectations - /generate docs - Generate documentation - /fix mutation [id] - Fix escaped mutant -``` - -**4. Quality Gate Phase** -```bash -🛡️ Running quality gates... - ✓ Tests: 100% pass (145/145) - ✓ Coverage: 100.0% - ✓ PHPStan: Level 8 (0 errors) - ✓ Pint: 0 violations - ✓ Mutation: MSI 87.3% (PASS) - ✓ Architecture: GREEN - -✅ All gates passed! -``` - -**5. Merge Phase** -```bash -🔀 Preparing for merge... - ✓ Creating PR #87 - ✓ Sentinel gate configured - ✓ Auto-merge enabled - ✓ Squash merge selected - -🎉 Ready for auto-merge on approval! -``` - -## Lessons Learned from Issue #78 - -### What Worked -1. **Parallel agent execution** - 3x faster than sequential -2. **Mutation testing** - Caught 12 weak tests that had 100% coverage but didn't verify behavior -3. **Ollama integration** - Generated 80% of boilerplate code correctly -4. **Sentinel gate** - Zero-touch merge saved 30 minutes of manual verification - -### What Didn't Work -1. **Initial mock signatures** - Needed swarm to fix 45 mismatched expectations -2. **Manual test fixing** - Too slow, automated agents 5x faster -3. **Single-threaded approach** - Wasted time, parallelization critical - -### Improvements for Next Time -1. **Pre-flight mock validation** - Check all mocks before starting work -2. **Incremental mutation testing** - Don't wait until end, run on each commit -3. **Knowledge base integration** - Auto-pull relevant patterns at start -4. **Ollama fine-tuning** - Train on project-specific patterns - -## Success Metrics - -### Time Savings -- **Without workflow:** 4-6 hours (manual testing, fixing, reviewing) -- **With workflow:** 45-60 minutes (mostly automated) -- **Time saved:** 3-5 hours per ticket - -### Quality Improvements -- **Coverage:** 99% → 100% -- **Mutation Score:** N/A → 87% -- **Bug escape rate:** -65% (estimated based on mutation score) -- **Manual review time:** -80% - -### Developer Experience -- **Context switching:** Reduced (agents work in background) -- **Confidence:** Increased (comprehensive quality gates) -- **Merge anxiety:** Eliminated (automated verification) - -## Implementation Roadmap - -### Milestone 1: Core Command -- [ ] Implement `start-ticket` command structure -- [ ] Integrate Linear API for ticket fetching -- [ ] Add baseline metric capture -- [ ] Create swarm orchestration - -### Milestone 2: Quality Swarm -- [ ] Implement test-writer agent -- [ ] Implement laravel-test-fixer agent -- [ ] Implement architecture-reviewer agent -- [ ] Add swarm progress monitoring - -### Milestone 3: Ollama Integration -- [ ] Add Ollama service wrapper -- [ ] Implement code generation endpoints -- [ ] Add mutation fix assistance -- [ ] Create prompt templates - -### Milestone 4: Sentinel Gate -- [ ] Configure gate.yml template -- [ ] Set quality thresholds -- [ ] Enable auto-merge -- [ ] Add notification hooks - -### Milestone 5: Knowledge Loop -- [ ] Capture successful patterns -- [ ] Store in knowledge base -- [ ] Auto-suggest on similar tickets -- [ ] Continuous improvement loop - -## Conclusion - -The start-ticket workflow transforms ticket work from manual, error-prone process to automated, quality-enforced pipeline. By combining: - -1. **Quality Swarm** - Parallel agents for comprehensive coverage -2. **Ollama** - AI-assisted code generation -3. **Mutation Testing** - Beyond coverage to behavior verification -4. **Sentinel Gate** - Automated quality enforcement -5. **Auto-Merge** - Zero-touch deployment - -We achieve: -- **3-5 hours saved per ticket** -- **65% fewer escaped bugs** -- **100% coverage + 85% mutation score** -- **Zero manual merge decisions** - -This workflow is the foundation for a truly autonomous development pipeline. - ---- - -**Next Steps:** -1. Codify this into `app/Commands/StartTicketCommand.php` -2. Create agent templates in `app/Agents/` -3. Integrate with Conduit knowledge system -4. Deploy to production workflow diff --git a/examples/test-executor-example.php b/examples/test-executor-example.php deleted file mode 100644 index a06ce35..0000000 --- a/examples/test-executor-example.php +++ /dev/null @@ -1,244 +0,0 @@ -runTests(); - - echo "Results:\n"; - echo '- Passed: '.($results['passed'] ? 'Yes' : 'No')."\n"; - echo "- Total Tests: {$results['total']}\n"; - echo "- Failed Tests: {$results['failed']}\n"; - echo "- Exit Code: {$results['exit_code']}\n\n"; - - if (! $results['passed'] && ! empty($results['failures'])) { - echo "Failures:\n"; - foreach ($results['failures'] as $i => $failure) { - echo sprintf( - "%d. Test: %s\n File: %s\n Error: %s\n\n", - $i + 1, - $failure['test'], - $failure['file'], - substr($failure['message'], 0, 100) - ); - } - } -} - -// Example 2: Run Specific Test File -function runSpecificTest(TestExecutorService $executor): void -{ - $testFile = 'tests/Unit/Services/TestExecutorServiceTest.php'; - - echo "Running specific test: {$testFile}\n\n"; - - $results = $executor->runTests($testFile); - - if ($results['passed']) { - echo "✓ All tests passed!\n"; - } else { - echo "✗ {$results['failed']} test(s) failed\n"; - } -} - -// Example 3: Parse Test Output -function parseTestOutput(TestExecutorService $executor): void -{ - $sampleOutput = <<<'OUTPUT' - FAILED Tests\Feature\UserTest > it validates email - Expected email to be valid. - - at tests/Feature/UserTest.php:25 - 21│ it('validates email', function () { - 22│ expect('invalid-email')->toBeEmail(); - 23│ }); - - FAILED Tests\Feature\UserTest > it creates user - Failed asserting that null is not null. - - at tests/Feature/UserTest.php:30 -OUTPUT; - - echo "Parsing test output...\n\n"; - - $failures = $executor->parseFailures($sampleOutput); - - echo 'Found '.count($failures)." failure(s):\n\n"; - - foreach ($failures as $i => $failure) { - echo sprintf( - "%d. %s\n File: %s\n Message: %s\n\n", - $i + 1, - $failure['test'], - basename($failure['file']), - trim($failure['message']) - ); - } -} - -// Example 4: Find Test File for Class -function findTestFile(TestExecutorService $executor): void -{ - $className = 'App\Services\OllamaService'; - - echo "Finding test file for class: {$className}\n\n"; - - $testFile = $executor->getTestFileForClass($className); - - if ($testFile !== null) { - echo "✓ Found test file: {$testFile}\n"; - } else { - echo "✗ No test file found for class\n"; - } -} - -// Example 5: Auto-Fix Workflow (Demonstration) -function autoFixWorkflow(TestExecutorService $executor): void -{ - echo "Auto-fix workflow demonstration\n\n"; - - // Run tests and get failures - $results = $executor->runTests(); - - if ($results['passed']) { - echo "All tests passing - nothing to fix!\n"; - - return; - } - - echo "Found {$results['failed']} failing test(s)\n\n"; - - foreach ($results['failures'] as $failure) { - echo "Attempting to fix: {$failure['test']}\n"; - - // Try up to 3 fix attempts - for ($attempt = 1; $attempt <= 3; $attempt++) { - echo " Attempt {$attempt}... "; - - $fixed = $executor->autoFixFailure($failure, $attempt); - - if ($fixed) { - echo "✓ Fixed!\n"; - break; - } else { - echo "✗ Failed\n"; - } - - if ($attempt === 3) { - echo " Gave up after 3 attempts\n"; - } - } - - echo "\n"; - } -} - -// Example 6: Integration with Quality Gates -function integrationExample(TestExecutorService $executor): void -{ - echo "Quality gate integration example\n\n"; - - // Step 1: Run tests - echo "1. Running tests...\n"; - $testResults = $executor->runTests(); - - if (! $testResults['passed']) { - echo " ✗ Tests failed ({$testResults['failed']} failures)\n\n"; - - // Step 2: Attempt auto-fix - echo "2. Attempting auto-fixes...\n"; - $fixedCount = 0; - - foreach ($testResults['failures'] as $failure) { - if ($executor->autoFixFailure($failure, 1)) { - $fixedCount++; - } - } - - echo " Fixed {$fixedCount}/{$testResults['failed']} failures\n\n"; - - // Step 3: Re-run tests - echo "3. Re-running tests...\n"; - $retestResults = $executor->runTests(); - - if ($retestResults['passed']) { - echo " ✓ All tests now passing!\n"; - } else { - echo " ✗ Still {$retestResults['failed']} failing tests\n"; - echo " Manual intervention required\n"; - } - } else { - echo " ✓ All tests passed\n"; - } -} - -// Example 7: Batch Processing Multiple Test Files -function batchProcessing(TestExecutorService $executor): void -{ - $testFiles = [ - 'tests/Unit/Services/OllamaServiceTest.php', - 'tests/Unit/Services/SessionServiceTest.php', - 'tests/Feature/Services/SemanticSearchServiceTest.php', - ]; - - echo 'Batch processing '.count($testFiles)." test files\n\n"; - - $summary = [ - 'total' => 0, - 'passed' => 0, - 'failed' => 0, - ]; - - foreach ($testFiles as $testFile) { - if (! file_exists($testFile)) { - echo "✗ {$testFile} - File not found\n"; - - continue; - } - - $results = $executor->runTests($testFile); - - $summary['total']++; - if ($results['passed']) { - $summary['passed']++; - echo '✓ '.basename($testFile)." - Passed\n"; - } else { - $summary['failed']++; - echo '✗ '.basename($testFile)." - Failed ({$results['failed']} failures)\n"; - } - } - - echo "\nSummary:\n"; - echo "- Total Files: {$summary['total']}\n"; - echo "- Passed: {$summary['passed']}\n"; - echo "- Failed: {$summary['failed']}\n"; -} - -/* - * To use these examples: - * - * 1. In a Laravel Zero command: - * $executor = app(TestExecutorService::class); - * runFullTestSuite($executor); - * - * 2. In Tinker: - * $executor = app(TestExecutorService::class); - * runSpecificTest($executor); - * - * 3. In tests: - * $executor = app(TestExecutorService::class); - * parseTestOutput($executor); - */ diff --git a/var/cache/phpstan/cache/PHPStan/04/99/0499f0a67477b9cf5746423f3cb95da2b697cbe3.php b/var/cache/phpstan/cache/PHPStan/04/99/0499f0a67477b9cf5746423f3cb95da2b697cbe3.php deleted file mode 100644 index 40e5bcc..0000000 --- a/var/cache/phpstan/cache/PHPStan/04/99/0499f0a67477b9cf5746423f3cb95da2b697cbe3.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764709468-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/06/e7/06e736241239b7e44891977492fbc0a1662520b9.php b/var/cache/phpstan/cache/PHPStan/06/e7/06e736241239b7e44891977492fbc0a1662520b9.php deleted file mode 100644 index 9b37b38..0000000 --- a/var/cache/phpstan/cache/PHPStan/06/e7/06e736241239b7e44891977492fbc0a1662520b9.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764084145-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/07/8e/078ed1bdef3c9f0c121b84cba8e44b953451e74f.php b/var/cache/phpstan/cache/PHPStan/07/8e/078ed1bdef3c9f0c121b84cba8e44b953451e74f.php deleted file mode 100644 index 95002e0..0000000 --- a/var/cache/phpstan/cache/PHPStan/07/8e/078ed1bdef3c9f0c121b84cba8e44b953451e74f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1680602091-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/07/c2/07c2e528aba2b7c0d28c1231e519c74169e86be1.php b/var/cache/phpstan/cache/PHPStan/07/c2/07c2e528aba2b7c0d28c1231e519c74169e86be1.php deleted file mode 100644 index 0e81a4e..0000000 --- a/var/cache/phpstan/cache/PHPStan/07/c2/07c2e528aba2b7c0d28c1231e519c74169e86be1.php +++ /dev/null @@ -1,81 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php80/Resources/stubs/ValueError.php' => - array ( - 0 => 'fed6a92720e1d9b3692ac59205e682bcb8648c27', - 1 => - array ( - 0 => 'valueerror', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php80/Resources/stubs/Attribute.php' => - array ( - 0 => '47c6abc4ac611a90c5b2467dcb2ea538e007ba86', - 1 => - array ( - 0 => 'attribute', - ), - 2 => - array ( - 0 => '__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php80/Resources/stubs/PhpToken.php' => - array ( - 0 => 'e0e4bac5c82637b71bfdf01c897435f71d41cd02', - 1 => - array ( - 0 => 'phptoken', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php80/Resources/stubs/Stringable.php' => - array ( - 0 => 'e357f36e99e71a1ac08785024dd6fda3c0b6e50a', - 1 => - array ( - 0 => 'stringable', - ), - 2 => - array ( - 0 => '__tostring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php' => - array ( - 0 => '84ba3b5c3e0a192c71d9dabad016b25f87206100', - 1 => - array ( - 0 => 'unhandledmatcherror', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/08/20/082002331ddb9908591954a0b9c322ccb51ae425.php b/var/cache/phpstan/cache/PHPStan/08/20/082002331ddb9908591954a0b9c322ccb51ae425.php deleted file mode 100644 index 70fb954..0000000 --- a/var/cache/phpstan/cache/PHPStan/08/20/082002331ddb9908591954a0b9c322ccb51ae425.php +++ /dev/null @@ -1,331 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/ResourceComparator.php' => - array ( - 0 => '49930352d07dcfcb9adfb095cf2de7bef7878f2f', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\resourcecomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/ExceptionComparator.php' => - array ( - 0 => 'd3864b4da9320a260919436ce879e78bc8bc9215', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\exceptioncomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\toarray', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/ArrayComparator.php' => - array ( - 0 => '58697c60c0d8409d2056ead648b69776bbd6cae5', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\arraycomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - 2 => 'sebastianbergmann\\comparator\\indent', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/SplObjectStorageComparator.php' => - array ( - 0 => '001835596c2cbbcef7da4e1cd7a142a01561f872', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\splobjectstoragecomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/ObjectComparator.php' => - array ( - 0 => 'b98e6a5fc07a32b90adb226ede0c3a44d3fcc30f', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\objectcomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - 2 => 'sebastianbergmann\\comparator\\toarray', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/Comparator.php' => - array ( - 0 => 'bdbf29dd43ccc421fc853fe124d732cfef65ceb6', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/EnumerationComparator.php' => - array ( - 0 => '370afbd874e5bfbad17bf801fd1d3c5663841440', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\enumerationcomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/exceptions/Exception.php' => - array ( - 0 => 'b8af7f7eec5d2d604c6777c8ca9a7fdbd5ab1fa5', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/exceptions/RuntimeException.php' => - array ( - 0 => '33d5a35b38d809c3f7f1e65c77fe9d6b03a15d38', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/ScalarComparator.php' => - array ( - 0 => '2c77035ce7a1fdeccef61349c5027c5c4b0d029e', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/TypeComparator.php' => - array ( - 0 => 'c086c3499af58349c6d55b2242ce9ee1925795d9', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\typecomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/NumericComparator.php' => - array ( - 0 => '83ecc728b4f7c42c7a35e93a074d7d9d59131f15', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/ComparisonFailure.php' => - array ( - 0 => 'c1597a8b98e2e222778db196142e4575c51f0e38', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/Factory.php' => - array ( - 0 => '8dd6cc948cad6aa0ab91de37f5f4c1c6a9e38872', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/DOMNodeComparator.php' => - array ( - 0 => 'd1e90954f43ba619a4b2221c34308bdb69cb08a9', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\domnodecomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - 2 => 'sebastianbergmann\\comparator\\nodetotext', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/NumberComparator.php' => - array ( - 0 => '1f2edb7cb6d26280e7d642baedadcc9b79c2d03a', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\numbercomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/DateTimeComparator.php' => - array ( - 0 => '59810e24aa086438817c835d0f961bda6373afd4', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\datetimecomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/ClosureComparator.php' => - array ( - 0 => 'cd83a66000ed0decce5ca4f6bf1dcaff3995e59d', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\closurecomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\assertequals', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/comparator/src/MockObjectComparator.php' => - array ( - 0 => '9cdbb6ebed4aedf5b7ce7727da241f46f03bdd61', - 1 => - array ( - 0 => 'sebastianbergmann\\comparator\\mockobjectcomparator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\comparator\\accepts', - 1 => 'sebastianbergmann\\comparator\\toarray', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/09/64/09649377b16dbc5bc5a8cb24f07617ee7c244f0a.php b/var/cache/phpstan/cache/PHPStan/09/64/09649377b16dbc5bc5a8cb24f07617ee7c244f0a.php deleted file mode 100644 index 3a50651..0000000 --- a/var/cache/phpstan/cache/PHPStan/09/64/09649377b16dbc5bc5a8cb24f07617ee7c244f0a.php +++ /dev/null @@ -1,68 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/phpunit/php-invoker/src/exceptions/Exception.php' => - array ( - 0 => 'e609d0d0f184625197ba28482c4c64be5522d7e7', - 1 => - array ( - 0 => 'sebastianbergmann\\invoker\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-invoker/src/exceptions/TimeoutException.php' => - array ( - 0 => 'a7dee3db7905c74e0e49f19523e8774516b7911a', - 1 => - array ( - 0 => 'sebastianbergmann\\invoker\\timeoutexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-invoker/src/exceptions/ProcessControlExtensionNotLoadedException.php' => - array ( - 0 => '12538103d463c116f74f2b1e044712cc2d2b80c4', - 1 => - array ( - 0 => 'sebastianbergmann\\invoker\\processcontrolextensionnotloadedexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\invoker\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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/var/cache/phpstan/cache/PHPStan/09/d5/09d5a34897eef41f371e6a9dbe5cd0ea1e00f544.php b/var/cache/phpstan/cache/PHPStan/09/d5/09d5a34897eef41f371e6a9dbe5cd0ea1e00f544.php deleted file mode 100644 index db0eb10..0000000 --- a/var/cache/phpstan/cache/PHPStan/09/d5/09d5a34897eef41f371e6a9dbe5cd0ea1e00f544.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764084145-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/09/ec/09ec35fa690da3be4902197934c3fd7a1957943f.php b/var/cache/phpstan/cache/PHPStan/09/ec/09ec35fa690da3be4902197934c3fd7a1957943f.php deleted file mode 100644 index b5227d8..0000000 --- a/var/cache/phpstan/cache/PHPStan/09/ec/09ec35fa690da3be4902197934c3fd7a1957943f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/0b/af/0baf11699d8ad02744a039eb9737737503c24bea.php b/var/cache/phpstan/cache/PHPStan/0b/af/0baf11699d8ad02744a039eb9737737503c24bea.php deleted file mode 100644 index ab1b0bc..0000000 --- a/var/cache/phpstan/cache/PHPStan/0b/af/0baf11699d8ad02744a039eb9737737503c24bea.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/0c/34/0c34586a079c79b55a2b73294217ba3a7527a851.php b/var/cache/phpstan/cache/PHPStan/0c/34/0c34586a079c79b55a2b73294217ba3a7527a851.php deleted file mode 100644 index cb81ed2..0000000 --- a/var/cache/phpstan/cache/PHPStan/0c/34/0c34586a079c79b55a2b73294217ba3a7527a851.php +++ /dev/null @@ -1,7 +0,0 @@ - '1763758372-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/0c/78/0c7839faf44da984a4000c4409cc3e78dba7b416.php b/var/cache/phpstan/cache/PHPStan/0c/78/0c7839faf44da984a4000c4409cc3e78dba7b416.php deleted file mode 100644 index f354cf9..0000000 --- a/var/cache/phpstan/cache/PHPStan/0c/78/0c7839faf44da984a4000c4409cc3e78dba7b416.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/0e/1c/0e1ccbbd86cfc35528ddad65eabe850faa89e66b.php b/var/cache/phpstan/cache/PHPStan/0e/1c/0e1ccbbd86cfc35528ddad65eabe850faa89e66b.php deleted file mode 100644 index 8928544..0000000 --- a/var/cache/phpstan/cache/PHPStan/0e/1c/0e1ccbbd86cfc35528ddad65eabe850faa89e66b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/0e/4c/0e4caed4a038fc0649642b780b4fd112f36d4df4.php b/var/cache/phpstan/cache/PHPStan/0e/4c/0e4caed4a038fc0649642b780b4fd112f36d4df4.php deleted file mode 100644 index 140ec26..0000000 --- a/var/cache/phpstan/cache/PHPStan/0e/4c/0e4caed4a038fc0649642b780b4fd112f36d4df4.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/0f/9a/0f9a7a40d892576eee122aeff653266f069b041f.php b/var/cache/phpstan/cache/PHPStan/0f/9a/0f9a7a40d892576eee122aeff653266f069b041f.php deleted file mode 100644 index 964428c..0000000 --- a/var/cache/phpstan/cache/PHPStan/0f/9a/0f9a7a40d892576eee122aeff653266f069b041f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694927-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/0f/ea/0fea672fcc7b210d79eeec5a68b70967c5116436.php b/var/cache/phpstan/cache/PHPStan/0f/ea/0fea672fcc7b210d79eeec5a68b70967c5116436.php deleted file mode 100644 index 0a8c8b0..0000000 --- a/var/cache/phpstan/cache/PHPStan/0f/ea/0fea672fcc7b210d79eeec5a68b70967c5116436.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764282503-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/10/ae/10ae2ec4a4901aa3b8e6a3e2519551882a552ca4.php b/var/cache/phpstan/cache/PHPStan/10/ae/10ae2ec4a4901aa3b8e6a3e2519551882a552ca4.php deleted file mode 100644 index cfb0a11..0000000 --- a/var/cache/phpstan/cache/PHPStan/10/ae/10ae2ec4a4901aa3b8e6a3e2519551882a552ca4.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/11/78/11789945d679b2715a80b1a4a1fedf38ef54c181.php b/var/cache/phpstan/cache/PHPStan/11/78/11789945d679b2715a80b1a4a1fedf38ef54c181.php deleted file mode 100644 index 060ab6a..0000000 --- a/var/cache/phpstan/cache/PHPStan/11/78/11789945d679b2715a80b1a4a1fedf38ef54c181.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/11/8b/118b66cb30da864f79528945737bc8bd83b558e5.php b/var/cache/phpstan/cache/PHPStan/11/8b/118b66cb30da864f79528945737bc8bd83b558e5.php deleted file mode 100644 index 2d490d5..0000000 --- a/var/cache/phpstan/cache/PHPStan/11/8b/118b66cb30da864f79528945737bc8bd83b558e5.php +++ /dev/null @@ -1,431 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/type/src/type/UnionType.php' => - array ( - 0 => 'f3c7d0e5357b105d8b2da7c51a62338e6128ee6c', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/type/src/type/IntersectionType.php' => - array ( - 0 => '1e33ce293337877c46fac076da0e3f7147532bf8', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/type/src/type/CallableType.php' => - array ( - 0 => '27268483e8849882fec3c934907b5ab3d466087b', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/type/src/type/Type.php' => - array ( - 0 => '92a80243a64bdbacbc9d912fe85b1f49523c5986', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/type/src/exception/Exception.php' => - array ( - 0 => 'ea8fc19a2156a69c8b69f4ca0aee6caec9ecc698', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/type/src/exception/RuntimeException.php' => - array ( - 0 => 'dc36595e29c96c23c5d6328d306db02cc76e63fb', - 1 => - array ( - 0 => 'sebastianbergmann\\type\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/type/src/ReflectionMapper.php' => - array ( - 0 => 'd129b85900d504988acd8dbea7b00b28fe3a7a15', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/type/src/TypeName.php' => - array ( - 0 => '0d3563af5373e28882fdfff6004b030db3e32f5c', - 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 ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/11/bb/11bb29e9cdc4b0904900a81026cf0c85c73ec292.php b/var/cache/phpstan/cache/PHPStan/11/bb/11bb29e9cdc4b0904900a81026cf0c85c73ec292.php deleted file mode 100644 index e7f0bd7..0000000 --- a/var/cache/phpstan/cache/PHPStan/11/bb/11bb29e9cdc4b0904900a81026cf0c85c73ec292.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/11/d0/11d0a2536d88fac47bc2acff60ee1aea31955f2d.php b/var/cache/phpstan/cache/PHPStan/11/d0/11d0a2536d88fac47bc2acff60ee1aea31955f2d.php deleted file mode 100644 index c02d25b..0000000 --- a/var/cache/phpstan/cache/PHPStan/11/d0/11d0a2536d88fac47bc2acff60ee1aea31955f2d.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/13/d6/13d6f9ed04019b88b00294bcfac142c56336203b.php b/var/cache/phpstan/cache/PHPStan/13/d6/13d6f9ed04019b88b00294bcfac142c56336203b.php deleted file mode 100644 index 35fec46..0000000 --- a/var/cache/phpstan/cache/PHPStan/13/d6/13d6f9ed04019b88b00294bcfac142c56336203b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/16/ad/16ad3c38febe5b44c3fe30ecbc15d1112e69295b.php b/var/cache/phpstan/cache/PHPStan/16/ad/16ad3c38febe5b44c3fe30ecbc15d1112e69295b.php deleted file mode 100644 index 29145fb..0000000 --- a/var/cache/phpstan/cache/PHPStan/16/ad/16ad3c38febe5b44c3fe30ecbc15d1112e69295b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765294012-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/17/63/17632fb53cd2f2e2d2d9ad5c8f89c4dac434fec2.php b/var/cache/phpstan/cache/PHPStan/17/63/17632fb53cd2f2e2d2d9ad5c8f89c4dac434fec2.php deleted file mode 100644 index d1c2ca4..0000000 --- a/var/cache/phpstan/cache/PHPStan/17/63/17632fb53cd2f2e2d2d9ad5c8f89c4dac434fec2.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694927-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/19/55/1955531d256e544678c96f8a2e31f332dc88d086.php b/var/cache/phpstan/cache/PHPStan/19/55/1955531d256e544678c96f8a2e31f332dc88d086.php deleted file mode 100644 index 2b51160..0000000 --- a/var/cache/phpstan/cache/PHPStan/19/55/1955531d256e544678c96f8a2e31f332dc88d086.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179077-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/19/61/1961658603fd814879b543c69b3f439491fbb8ba.php b/var/cache/phpstan/cache/PHPStan/19/61/1961658603fd814879b543c69b3f439491fbb8ba.php deleted file mode 100644 index b48ad16..0000000 --- a/var/cache/phpstan/cache/PHPStan/19/61/1961658603fd814879b543c69b3f439491fbb8ba.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764948219-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/1a/8f/1a8f54e82867a990942edaa4cbbd25eae79fd90a.php b/var/cache/phpstan/cache/PHPStan/1a/8f/1a8f54e82867a990942edaa4cbbd25eae79fd90a.php deleted file mode 100644 index be76578..0000000 --- a/var/cache/phpstan/cache/PHPStan/1a/8f/1a8f54e82867a990942edaa4cbbd25eae79fd90a.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768835655-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/1a/bf/1abf680fcc521ce8030d2f2ce8dc5ed964967ba1.php b/var/cache/phpstan/cache/PHPStan/1a/bf/1abf680fcc521ce8030d2f2ce8dc5ed964967ba1.php deleted file mode 100644 index c58193a..0000000 --- a/var/cache/phpstan/cache/PHPStan/1a/bf/1abf680fcc521ce8030d2f2ce8dc5ed964967ba1.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/1b/23/1b235fc00a8fc23138999bdc9f9acdb781f6de25.php b/var/cache/phpstan/cache/PHPStan/1b/23/1b235fc00a8fc23138999bdc9f9acdb781f6de25.php deleted file mode 100644 index ea27197..0000000 --- a/var/cache/phpstan/cache/PHPStan/1b/23/1b235fc00a8fc23138999bdc9f9acdb781f6de25.php +++ /dev/null @@ -1,7 +0,0 @@ - '1760613666-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/1b/60/1b6077922f4404700256dbd0a166a80984b6bdc9.php b/var/cache/phpstan/cache/PHPStan/1b/60/1b6077922f4404700256dbd0a166a80984b6bdc9.php deleted file mode 100644 index ab78e21..0000000 --- a/var/cache/phpstan/cache/PHPStan/1b/60/1b6077922f4404700256dbd0a166a80984b6bdc9.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179077-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/1b/7d/1b7d628210d9c73c2c2134664217975b652cbd51.php b/var/cache/phpstan/cache/PHPStan/1b/7d/1b7d628210d9c73c2c2134664217975b652cbd51.php deleted file mode 100644 index e193ea6..0000000 --- a/var/cache/phpstan/cache/PHPStan/1b/7d/1b7d628210d9c73c2c2134664217975b652cbd51.php +++ /dev/null @@ -1,61 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/config/app.php' => - array ( - 0 => '0920aef3ae5b972133d7cf034724c3f79eb22891', - 1 => - array ( - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/config/commands.php' => - array ( - 0 => '644adb0b50cc6e6eb6a66134703c71495b17dafa', - 1 => - array ( - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/config/search.php' => - array ( - 0 => 'ffe8363092e6f2672a7e4d6d73de25e8d2b4560d', - 1 => - array ( - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/config/services.php' => - array ( - 0 => '5bac4fb4d0c8709298006e2f49b69328aa3311c3', - 1 => - array ( - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/1e/56/1e569fceaae8520fa621dfe9b2f08073e609eec4.php b/var/cache/phpstan/cache/PHPStan/1e/56/1e569fceaae8520fa621dfe9b2f08073e609eec4.php deleted file mode 100644 index fa9885f..0000000 --- a/var/cache/phpstan/cache/PHPStan/1e/56/1e569fceaae8520fa621dfe9b2f08073e609eec4.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768835655-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/1f/63/1f63aff4754aed4d357e39c7bce29a24e45a05e0.php b/var/cache/phpstan/cache/PHPStan/1f/63/1f63aff4754aed4d357e39c7bce29a24e45a05e0.php deleted file mode 100644 index 511ba51..0000000 --- a/var/cache/phpstan/cache/PHPStan/1f/63/1f63aff4754aed4d357e39c7bce29a24e45a05e0.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/1f/c1/1fc1753a14dc4def62df914bef528a8e2efc7eaa.php b/var/cache/phpstan/cache/PHPStan/1f/c1/1fc1753a14dc4def62df914bef528a8e2efc7eaa.php deleted file mode 100644 index 2127611..0000000 --- a/var/cache/phpstan/cache/PHPStan/1f/c1/1fc1753a14dc4def62df914bef528a8e2efc7eaa.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768835655-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/1f/dc/1fdc22f27e4f4ede8d1f30f918d67d7e91def495.php b/var/cache/phpstan/cache/PHPStan/1f/dc/1fdc22f27e4f4ede8d1f30f918d67d7e91def495.php deleted file mode 100644 index 0e87ffe..0000000 --- a/var/cache/phpstan/cache/PHPStan/1f/dc/1fdc22f27e4f4ede8d1f30f918d67d7e91def495.php +++ /dev/null @@ -1,7 +0,0 @@ - '1763674952-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/20/c8/20c86c8f8e0a758afe4cb72c198bffdf523be9b5.php b/var/cache/phpstan/cache/PHPStan/20/c8/20c86c8f8e0a758afe4cb72c198bffdf523be9b5.php deleted file mode 100644 index c0a0066..0000000 --- a/var/cache/phpstan/cache/PHPStan/20/c8/20c86c8f8e0a758afe4cb72c198bffdf523be9b5.php +++ /dev/null @@ -1,7 +0,0 @@ - '1715829193-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/21/22/21225d5ce414f9e11aef5067efe1da582818efae.php b/var/cache/phpstan/cache/PHPStan/21/22/21225d5ce414f9e11aef5067efe1da582818efae.php deleted file mode 100644 index 7786776..0000000 --- a/var/cache/phpstan/cache/PHPStan/21/22/21225d5ce414f9e11aef5067efe1da582818efae.php +++ /dev/null @@ -1,7 +0,0 @@ - '1763758372-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/21/33/21335d084585327659d6fb8a84a3ad781cb05914.php b/var/cache/phpstan/cache/PHPStan/21/33/21335d084585327659d6fb8a84a3ad781cb05914.php deleted file mode 100644 index 28d97c4..0000000 --- a/var/cache/phpstan/cache/PHPStan/21/33/21335d084585327659d6fb8a84a3ad781cb05914.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764948219-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/24/6e/246e15efc156083572464cffc9535f9e6cc7dc07.php b/var/cache/phpstan/cache/PHPStan/24/6e/246e15efc156083572464cffc9535f9e6cc7dc07.php deleted file mode 100644 index d31e379..0000000 --- a/var/cache/phpstan/cache/PHPStan/24/6e/246e15efc156083572464cffc9535f9e6cc7dc07.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764192961-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/26/41/264180ed369e8c899a5c7ec2d88be2e5c9265ac5.php b/var/cache/phpstan/cache/PHPStan/26/41/264180ed369e8c899a5c7ec2d88be2e5c9265ac5.php deleted file mode 100644 index b32892e..0000000 --- a/var/cache/phpstan/cache/PHPStan/26/41/264180ed369e8c899a5c7ec2d88be2e5c9265ac5.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/26/9f/269fc4602c2ef898efb5d1420406aa25f161314f.php b/var/cache/phpstan/cache/PHPStan/26/9f/269fc4602c2ef898efb5d1420406aa25f161314f.php deleted file mode 100644 index 4f1de6f..0000000 --- a/var/cache/phpstan/cache/PHPStan/26/9f/269fc4602c2ef898efb5d1420406aa25f161314f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764948219-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/26/fd/26fdee9ac98c3501d4274eaacc44dc89ef29e935.php b/var/cache/phpstan/cache/PHPStan/26/fd/26fdee9ac98c3501d4274eaacc44dc89ef29e935.php deleted file mode 100644 index 4fe9a6a..0000000 --- a/var/cache/phpstan/cache/PHPStan/26/fd/26fdee9ac98c3501d4274eaacc44dc89ef29e935.php +++ /dev/null @@ -1,7 +0,0 @@ - '1760613666-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/27/69/27698c41055b64335284e709c9825243ccc75c58.php b/var/cache/phpstan/cache/PHPStan/27/69/27698c41055b64335284e709c9825243ccc75c58.php deleted file mode 100644 index 6b39397..0000000 --- a/var/cache/phpstan/cache/PHPStan/27/69/27698c41055b64335284e709c9825243ccc75c58.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/28/07/28079aebf11988d28fa5666b8d64fc3c71b2d7e5.php b/var/cache/phpstan/cache/PHPStan/28/07/28079aebf11988d28fa5666b8d64fc3c71b2d7e5.php deleted file mode 100644 index 2f26e80..0000000 --- a/var/cache/phpstan/cache/PHPStan/28/07/28079aebf11988d28fa5666b8d64fc3c71b2d7e5.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764192961-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/28/1a/281a10366ef6793d5c39716d1bb5f2974bb1d180.php b/var/cache/phpstan/cache/PHPStan/28/1a/281a10366ef6793d5c39716d1bb5f2974bb1d180.php deleted file mode 100644 index 0fb6937..0000000 --- a/var/cache/phpstan/cache/PHPStan/28/1a/281a10366ef6793d5c39716d1bb5f2974bb1d180.php +++ /dev/null @@ -1,141 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/theseer/tokenizer/src/Tokenizer.php' => - array ( - 0 => 'd57e8486befd2d22e9ba36e6f54ce70e00bbac96', - 1 => - array ( - 0 => 'theseer\\tokenizer\\tokenizer', - ), - 2 => - array ( - 0 => 'theseer\\tokenizer\\parse', - 1 => 'theseer\\tokenizer\\fillblanks', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/theseer/tokenizer/src/Token.php' => - array ( - 0 => '26f1ac0bd9802bb62ceb97e382a1495c39a6526d', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/theseer/tokenizer/src/NamespaceUriException.php' => - array ( - 0 => 'eb0118a14b93df2a4b029d40f6b8acbf110999d6', - 1 => - array ( - 0 => 'theseer\\tokenizer\\namespaceuriexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/theseer/tokenizer/src/NamespaceUri.php' => - array ( - 0 => '7bca9d8825213c8b60b5e415d0c8651d01aca04b', - 1 => - array ( - 0 => 'theseer\\tokenizer\\namespaceuri', - ), - 2 => - array ( - 0 => 'theseer\\tokenizer\\__construct', - 1 => 'theseer\\tokenizer\\asstring', - 2 => 'theseer\\tokenizer\\ensurevaliduri', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/theseer/tokenizer/src/Exception.php' => - array ( - 0 => 'f1984821ed73363a5ede6d1cd570898e01148c23', - 1 => - array ( - 0 => 'theseer\\tokenizer\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/theseer/tokenizer/src/TokenCollectionException.php' => - array ( - 0 => '9c4af3c1624653bf11e5a5291e3c1f447a147c39', - 1 => - array ( - 0 => 'theseer\\tokenizer\\tokencollectionexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/theseer/tokenizer/src/XMLSerializer.php' => - array ( - 0 => '320dd03c7b31e841edf6312b0bbe63f986808b6b', - 1 => - array ( - 0 => 'theseer\\tokenizer\\xmlserializer', - ), - 2 => - array ( - 0 => 'theseer\\tokenizer\\__construct', - 1 => 'theseer\\tokenizer\\todom', - 2 => 'theseer\\tokenizer\\toxml', - 3 => 'theseer\\tokenizer\\appendtowriter', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/theseer/tokenizer/src/TokenCollection.php' => - array ( - 0 => '0599c72d2cad40bfbcec850f1624a81f1cb46371', - 1 => - array ( - 0 => 'theseer\\tokenizer\\tokencollection', - ), - 2 => - array ( - 0 => 'theseer\\tokenizer\\addtoken', - 1 => 'theseer\\tokenizer\\getiterator', - 2 => 'theseer\\tokenizer\\count', - 3 => 'theseer\\tokenizer\\offsetexists', - 4 => 'theseer\\tokenizer\\offsetget', - 5 => 'theseer\\tokenizer\\offsetset', - 6 => 'theseer\\tokenizer\\offsetunset', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/2a/e3/2ae3c863577eb46f36f9325e7cabd30eef1036d3.php b/var/cache/phpstan/cache/PHPStan/2a/e3/2ae3c863577eb46f36f9325e7cabd30eef1036d3.php deleted file mode 100644 index f66d22e..0000000 --- a/var/cache/phpstan/cache/PHPStan/2a/e3/2ae3c863577eb46f36f9325e7cabd30eef1036d3.php +++ /dev/null @@ -1,7 +0,0 @@ - '1763674952-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/2b/4b/2b4b8fe91607300bad638fb8d7b26b7a28c7fbd4.php b/var/cache/phpstan/cache/PHPStan/2b/4b/2b4b8fe91607300bad638fb8d7b26b7a28c7fbd4.php deleted file mode 100644 index f8f36b0..0000000 --- a/var/cache/phpstan/cache/PHPStan/2b/4b/2b4b8fe91607300bad638fb8d7b26b7a28c7fbd4.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764282503-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/2b/d3/2bd31a238d3bcadb33f49d6113f9f7625e4e2af0.php b/var/cache/phpstan/cache/PHPStan/2b/d3/2bd31a238d3bcadb33f49d6113f9f7625e4e2af0.php deleted file mode 100644 index 3e9a056..0000000 --- a/var/cache/phpstan/cache/PHPStan/2b/d3/2bd31a238d3bcadb33f49d6113f9f7625e4e2af0.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764948219-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/2b/e7/2be76a27000c1907010cb84b5e48afdc9203538a.php b/var/cache/phpstan/cache/PHPStan/2b/e7/2be76a27000c1907010cb84b5e48afdc9203538a.php deleted file mode 100644 index 1b10aac..0000000 --- a/var/cache/phpstan/cache/PHPStan/2b/e7/2be76a27000c1907010cb84b5e48afdc9203538a.php +++ /dev/null @@ -1,7 +0,0 @@ - '1763758372-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/2b/ed/2bed329763cd2dcba699f1d5288017315bcb5230.php b/var/cache/phpstan/cache/PHPStan/2b/ed/2bed329763cd2dcba699f1d5288017315bcb5230.php deleted file mode 100644 index 73dff15..0000000 --- a/var/cache/phpstan/cache/PHPStan/2b/ed/2bed329763cd2dcba699f1d5288017315bcb5230.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765799368-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/2c/14/2c14ec66190c8f0f01e88462d0bcc8b684ca9114.php b/var/cache/phpstan/cache/PHPStan/2c/14/2c14ec66190c8f0f01e88462d0bcc8b684ca9114.php deleted file mode 100644 index 7a1eccc..0000000 --- a/var/cache/phpstan/cache/PHPStan/2c/14/2c14ec66190c8f0f01e88462d0bcc8b684ca9114.php +++ /dev/null @@ -1,7 +0,0 @@ - '1763674952-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/2c/1b/2c1b4fc8ac43f07143784dbf58ffc70502ab6102.php b/var/cache/phpstan/cache/PHPStan/2c/1b/2c1b4fc8ac43f07143784dbf58ffc70502ab6102.php deleted file mode 100644 index 4a5e80e..0000000 --- a/var/cache/phpstan/cache/PHPStan/2c/1b/2c1b4fc8ac43f07143784dbf58ffc70502ab6102.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694927-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/2c/7b/2c7b3382440f98e607ed56da38e732bb88c888d9.php b/var/cache/phpstan/cache/PHPStan/2c/7b/2c7b3382440f98e607ed56da38e732bb88c888d9.php deleted file mode 100644 index 52b6ffc..0000000 --- a/var/cache/phpstan/cache/PHPStan/2c/7b/2c7b3382440f98e607ed56da38e732bb88c888d9.php +++ /dev/null @@ -1,1419 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Description.php' => - array ( - 0 => 'a2f9f0b16534f7eefe712876b427bfece07f28ce', - 1 => - array ( - 0 => 'hamcrest\\description', - ), - 2 => - array ( - 0 => 'hamcrest\\appendtext', - 1 => 'hamcrest\\appenddescriptionof', - 2 => 'hamcrest\\appendvalue', - 3 => 'hamcrest\\appendvaluelist', - 4 => 'hamcrest\\appendlist', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/SelfDescribing.php' => - array ( - 0 => '55b89f280431a9ff3f7ee9337cf7da6b54aebe22', - 1 => - array ( - 0 => 'hamcrest\\selfdescribing', - ), - 2 => - array ( - 0 => 'hamcrest\\describeto', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/Xml/HasXPath.php' => - array ( - 0 => 'f574877392d56f3cb0fb56fb8d311d572a55416d', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/hamcrest/hamcrest-php/hamcrest/Hamcrest/AssertionError.php' => - array ( - 0 => '97b25fbb5bc7c32b1ce9428c3e7d141a81614419', - 1 => - array ( - 0 => 'hamcrest\\assertionerror', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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/var/cache/phpstan/cache/PHPStan/2e/47/2e47af6125640ea8f2134842aca5b43dea1e818b.php b/var/cache/phpstan/cache/PHPStan/2e/47/2e47af6125640ea8f2134842aca5b43dea1e818b.php deleted file mode 100644 index e856413..0000000 --- a/var/cache/phpstan/cache/PHPStan/2e/47/2e47af6125640ea8f2134842aca5b43dea1e818b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768835655-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/31/02/31029ed600bf62885cfb62a63762bb6ea758ac0b.php b/var/cache/phpstan/cache/PHPStan/31/02/31029ed600bf62885cfb62a63762bb6ea758ac0b.php deleted file mode 100644 index fdd0e0c..0000000 --- a/var/cache/phpstan/cache/PHPStan/31/02/31029ed600bf62885cfb62a63762bb6ea758ac0b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179079-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/33/e6/33e66ce9d1ba560d748daca9549a54057bb159f1.php b/var/cache/phpstan/cache/PHPStan/33/e6/33e66ce9d1ba560d748daca9549a54057bb159f1.php deleted file mode 100644 index 2e4f274..0000000 --- a/var/cache/phpstan/cache/PHPStan/33/e6/33e66ce9d1ba560d748daca9549a54057bb159f1.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/34/7c/347cac9cc2920028226ebea01da8b4213f720bf9.php b/var/cache/phpstan/cache/PHPStan/34/7c/347cac9cc2920028226ebea01da8b4213f720bf9.php deleted file mode 100644 index 244e3d9..0000000 --- a/var/cache/phpstan/cache/PHPStan/34/7c/347cac9cc2920028226ebea01da8b4213f720bf9.php +++ /dev/null @@ -1,133 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/global-state/src/exceptions/Exception.php' => - array ( - 0 => '80cb1c5ab4f8b552d57291de5ee3703590355cd5', - 1 => - array ( - 0 => 'sebastianbergmann\\globalstate\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/global-state/src/exceptions/RuntimeException.php' => - array ( - 0 => '688710ae08d1ee8e1de9b900c6418ae878999bf7', - 1 => - array ( - 0 => 'sebastianbergmann\\globalstate\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/global-state/src/Snapshot.php' => - array ( - 0 => '5650f0e9e05453447c2673a04ce97e8dd3e4a25c', - 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\\copywithserialize', - 22 => 'sebastianbergmann\\globalstate\\canbeserialized', - 23 => 'sebastianbergmann\\globalstate\\enumerateobjectsandresources', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/global-state/src/Restorer.php' => - array ( - 0 => '0ba876cf6dc842c81ec2f433fedd4947e66ba650', - 1 => - array ( - 0 => 'sebastianbergmann\\globalstate\\restorer', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\globalstate\\restoreglobalvariables', - 1 => 'sebastianbergmann\\globalstate\\restorestaticproperties', - 2 => 'sebastianbergmann\\globalstate\\restoresuperglobalarray', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/38/0e/380e8e55d2a700284a8c71ddba18735794a8257d.php b/var/cache/phpstan/cache/PHPStan/38/0e/380e8e55d2a700284a8c71ddba18735794a8257d.php deleted file mode 100644 index 060a04e..0000000 --- a/var/cache/phpstan/cache/PHPStan/38/0e/380e8e55d2a700284a8c71ddba18735794a8257d.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/38/ed/38ed23844e2036c461f8ab47ec47f993e3fbca2d.php b/var/cache/phpstan/cache/PHPStan/38/ed/38ed23844e2036c461f8ab47ec47f993e3fbca2d.php deleted file mode 100644 index 993fc5e..0000000 --- a/var/cache/phpstan/cache/PHPStan/38/ed/38ed23844e2036c461f8ab47ec47f993e3fbca2d.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/39/50/39502d17f5b69362ade4783a8453af6eaca9ed0c.php b/var/cache/phpstan/cache/PHPStan/39/50/39502d17f5b69362ade4783a8453af6eaca9ed0c.php deleted file mode 100644 index d16442e..0000000 --- a/var/cache/phpstan/cache/PHPStan/39/50/39502d17f5b69362ade4783a8453af6eaca9ed0c.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/3a/2b/3a2b89de013abaafb1b2a5267374fe6c069002cf.php b/var/cache/phpstan/cache/PHPStan/3a/2b/3a2b89de013abaafb1b2a5267374fe6c069002cf.php deleted file mode 100644 index 6300135..0000000 --- a/var/cache/phpstan/cache/PHPStan/3a/2b/3a2b89de013abaafb1b2a5267374fe6c069002cf.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/3b/56/3b56de1bb1602a149202749eaf711c17656ac2aa.php b/var/cache/phpstan/cache/PHPStan/3b/56/3b56de1bb1602a149202749eaf711c17656ac2aa.php deleted file mode 100644 index 3fe7137..0000000 --- a/var/cache/phpstan/cache/PHPStan/3b/56/3b56de1bb1602a149202749eaf711c17656ac2aa.php +++ /dev/null @@ -1,7 +0,0 @@ - '1759867176-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/3b/65/3b65a6e2b8437bd921fe7509a766fb87b87e38eb.php b/var/cache/phpstan/cache/PHPStan/3b/65/3b65a6e2b8437bd921fe7509a766fb87b87e38eb.php deleted file mode 100644 index a45a1cc..0000000 --- a/var/cache/phpstan/cache/PHPStan/3b/65/3b65a6e2b8437bd921fe7509a766fb87b87e38eb.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/3c/1f/3c1f78c1257d8ed3068c22059138f321ffe236ae.php b/var/cache/phpstan/cache/PHPStan/3c/1f/3c1f78c1257d8ed3068c22059138f321ffe236ae.php deleted file mode 100644 index 4c9fc0c..0000000 --- a/var/cache/phpstan/cache/PHPStan/3c/1f/3c1f78c1257d8ed3068c22059138f321ffe236ae.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764085047-v4', - 'data' => true, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/3d/13/3d132f0ad72c68dc92a3c177d7b0960dbcfdb653.php b/var/cache/phpstan/cache/PHPStan/3d/13/3d132f0ad72c68dc92a3c177d7b0960dbcfdb653.php deleted file mode 100644 index c8d1867..0000000 --- a/var/cache/phpstan/cache/PHPStan/3d/13/3d132f0ad72c68dc92a3c177d7b0960dbcfdb653.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/3d/8f/3d8fad2e96eb5baf4e4b1c9d33ba08c4a73f6cd8.php b/var/cache/phpstan/cache/PHPStan/3d/8f/3d8fad2e96eb5baf4e4b1c9d33ba08c4a73f6cd8.php deleted file mode 100644 index b53f3f2..0000000 --- a/var/cache/phpstan/cache/PHPStan/3d/8f/3d8fad2e96eb5baf4e4b1c9d33ba08c4a73f6cd8.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/3d/d1/3dd1b5813f356e6eb8fcaec2e3bb40c397999673.php b/var/cache/phpstan/cache/PHPStan/3d/d1/3dd1b5813f356e6eb8fcaec2e3bb40c397999673.php deleted file mode 100644 index 6a30e1d..0000000 --- a/var/cache/phpstan/cache/PHPStan/3d/d1/3dd1b5813f356e6eb8fcaec2e3bb40c397999673.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/3e/20/3e203bbc3d20adb9a218943f10f5830fa7282d44.php b/var/cache/phpstan/cache/PHPStan/3e/20/3e203bbc3d20adb9a218943f10f5830fa7282d44.php deleted file mode 100644 index b894f45..0000000 --- a/var/cache/phpstan/cache/PHPStan/3e/20/3e203bbc3d20adb9a218943f10f5830fa7282d44.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/3f/47/3f47dacc20e39e940b1fa051841b8dd525dd8595.php b/var/cache/phpstan/cache/PHPStan/3f/47/3f47dacc20e39e940b1fa051841b8dd525dd8595.php deleted file mode 100644 index 4fd763e..0000000 --- a/var/cache/phpstan/cache/PHPStan/3f/47/3f47dacc20e39e940b1fa051841b8dd525dd8595.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/43/11/4311314159c0ae19a6451f21bd674ab2858899f9.php b/var/cache/phpstan/cache/PHPStan/43/11/4311314159c0ae19a6451f21bd674ab2858899f9.php deleted file mode 100644 index f7899ee..0000000 --- a/var/cache/phpstan/cache/PHPStan/43/11/4311314159c0ae19a6451f21bd674ab2858899f9.php +++ /dev/null @@ -1,362 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phar-io/version/src/exceptions/InvalidVersionException.php' => - array ( - 0 => 'b5af6590c57b8aab0245a2c491f96c4614225664', - 1 => - array ( - 0 => 'phario\\version\\invalidversionexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phar-io/version/src/exceptions/Exception.php' => - array ( - 0 => '80bf09b2245e8a57b9fa84102198062b05d28491', - 1 => - array ( - 0 => 'phario\\version\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phar-io/version/src/exceptions/UnsupportedVersionConstraintException.php' => - array ( - 0 => '8ba115bff96f1628f72295ac082b41ae9d2da288', - 1 => - array ( - 0 => 'phario\\version\\unsupportedversionconstraintexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phar-io/version/src/exceptions/NoBuildMetaDataException.php' => - array ( - 0 => '2fbcf83ac53911226fefa01823ebc6b6cd7e2e41', - 1 => - array ( - 0 => 'phario\\version\\nobuildmetadataexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phar-io/version/src/exceptions/NoPreReleaseSuffixException.php' => - array ( - 0 => '30b1fabe90aa1cc2841f4d05e8b40a46679ba879', - 1 => - array ( - 0 => 'phario\\version\\noprereleasesuffixexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phar-io/version/src/exceptions/InvalidPreReleaseSuffixException.php' => - array ( - 0 => 'd295ffaf424bd318b52ca58a22e134a757adc551', - 1 => - array ( - 0 => 'phario\\version\\invalidprereleasesuffixexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/44/24/44240ad6e3514e65994c3160beaab78d712d9f63.php b/var/cache/phpstan/cache/PHPStan/44/24/44240ad6e3514e65994c3160beaab78d712d9f63.php deleted file mode 100644 index a09fc14..0000000 --- a/var/cache/phpstan/cache/PHPStan/44/24/44240ad6e3514e65994c3160beaab78d712d9f63.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/44/c3/44c3354777c24e8c269ea332192a4265f3af112a.php b/var/cache/phpstan/cache/PHPStan/44/c3/44c3354777c24e8c269ea332192a4265f3af112a.php deleted file mode 100644 index c098ba3..0000000 --- a/var/cache/phpstan/cache/PHPStan/44/c3/44c3354777c24e8c269ea332192a4265f3af112a.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/44/dd/44dd6168d28941dd6b2c7d0437897efed6b88b8c.php b/var/cache/phpstan/cache/PHPStan/44/dd/44dd6168d28941dd6b2c7d0437897efed6b88b8c.php deleted file mode 100644 index 89f0e11..0000000 --- a/var/cache/phpstan/cache/PHPStan/44/dd/44dd6168d28941dd6b2c7d0437897efed6b88b8c.php +++ /dev/null @@ -1,106 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/sebastian/lines-of-code/src/Exception/Exception.php' => - array ( - 0 => '8f85e6aa5c47b0c642b4d0e38955cc8e25ad58e5', - 1 => - array ( - 0 => 'sebastianbergmann\\linesofcode\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/lines-of-code/src/Exception/RuntimeException.php' => - array ( - 0 => '846eefcf2a00c4b39378c358f9f9fdf591fa14c6', - 1 => - array ( - 0 => 'sebastianbergmann\\linesofcode\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/lines-of-code/src/Exception/IllogicalValuesException.php' => - array ( - 0 => 'f6aa84e6523cf722c342e5354720cef59f133e23', - 1 => - array ( - 0 => 'sebastianbergmann\\linesofcode\\illogicalvaluesexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/lines-of-code/src/LineCountingVisitor.php' => - array ( - 0 => '72566501277ba276dd8f442fa222e0754cbb1299', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/lines-of-code/src/LinesOfCode.php' => - array ( - 0 => 'f23a297672198436792a0e787f38e6202450f93e', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/lines-of-code/src/Counter.php' => - array ( - 0 => 'fbf3fd4a93f0e234cf9a72f2b8011068b1172f94', - 1 => - array ( - 0 => 'sebastianbergmann\\linesofcode\\counter', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\linesofcode\\countinsourcefile', - 1 => 'sebastianbergmann\\linesofcode\\countinsourcestring', - 2 => 'sebastianbergmann\\linesofcode\\countinabstractsyntaxtree', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/46/f0/46f03735e354922cbc8127e519076fd07d25c9f2.php b/var/cache/phpstan/cache/PHPStan/46/f0/46f03735e354922cbc8127e519076fd07d25c9f2.php deleted file mode 100644 index 01d0002..0000000 --- a/var/cache/phpstan/cache/PHPStan/46/f0/46f03735e354922cbc8127e519076fd07d25c9f2.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764282503-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/47/22/4722e895a14a42bc2ecdd06a74b964d66f15cadc.php b/var/cache/phpstan/cache/PHPStan/47/22/4722e895a14a42bc2ecdd06a74b964d66f15cadc.php deleted file mode 100644 index ff5ac22..0000000 --- a/var/cache/phpstan/cache/PHPStan/47/22/4722e895a14a42bc2ecdd06a74b964d66f15cadc.php +++ /dev/null @@ -1,31 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/sebastian/recursion-context/src/Context.php' => - array ( - 0 => 'd3d19f5d3e7e8aaed6aa095c96ee62cbfe37af33', - 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/var/cache/phpstan/cache/PHPStan/47/31/473173f6553bbf3a9752401b6b7eaca62e3d6aa9.php b/var/cache/phpstan/cache/PHPStan/47/31/473173f6553bbf3a9752401b6b7eaca62e3d6aa9.php deleted file mode 100644 index 3dd0ab2..0000000 --- a/var/cache/phpstan/cache/PHPStan/47/31/473173f6553bbf3a9752401b6b7eaca62e3d6aa9.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/47/40/47404977509da346d24f268093f37e0dabde9ccc.php b/var/cache/phpstan/cache/PHPStan/47/40/47404977509da346d24f268093f37e0dabde9ccc.php deleted file mode 100644 index 622e0b7..0000000 --- a/var/cache/phpstan/cache/PHPStan/47/40/47404977509da346d24f268093f37e0dabde9ccc.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/47/59/4759e182c619f0a13a22f48ed716b0f58116bb85.php b/var/cache/phpstan/cache/PHPStan/47/59/4759e182c619f0a13a22f48ed716b0f58116bb85.php deleted file mode 100644 index 9942349..0000000 --- a/var/cache/phpstan/cache/PHPStan/47/59/4759e182c619f0a13a22f48ed716b0f58116bb85.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764948219-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/47/90/4790eef01ac3f3aae36ba415d38449f4d13dae14.php b/var/cache/phpstan/cache/PHPStan/47/90/4790eef01ac3f3aae36ba415d38449f4d13dae14.php deleted file mode 100644 index c974056..0000000 --- a/var/cache/phpstan/cache/PHPStan/47/90/4790eef01ac3f3aae36ba415d38449f4d13dae14.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765687428-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/48/45/4845b40a2d90e7d9ffc912e1bcaed0c3bf365165.php b/var/cache/phpstan/cache/PHPStan/48/45/4845b40a2d90e7d9ffc912e1bcaed0c3bf365165.php deleted file mode 100644 index 5a938db..0000000 --- a/var/cache/phpstan/cache/PHPStan/48/45/4845b40a2d90e7d9ffc912e1bcaed0c3bf365165.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765799368-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/48/b1/48b16c6edaa59a8d0ec70da03a16b0fc4b337de2.php b/var/cache/phpstan/cache/PHPStan/48/b1/48b16c6edaa59a8d0ec70da03a16b0fc4b337de2.php deleted file mode 100644 index 9b11034..0000000 --- a/var/cache/phpstan/cache/PHPStan/48/b1/48b16c6edaa59a8d0ec70da03a16b0fc4b337de2.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179077-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/49/c7/49c7d486e5b2dce994c068c657cd28cf99ab6820.php b/var/cache/phpstan/cache/PHPStan/49/c7/49c7d486e5b2dce994c068c657cd28cf99ab6820.php deleted file mode 100644 index 179c023..0000000 --- a/var/cache/phpstan/cache/PHPStan/49/c7/49c7d486e5b2dce994c068c657cd28cf99ab6820.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/49/f9/49f9a52db377b75a4dc03eb7045d8415106accbb.php b/var/cache/phpstan/cache/PHPStan/49/f9/49f9a52db377b75a4dc03eb7045d8415106accbb.php deleted file mode 100644 index cc1650f..0000000 --- a/var/cache/phpstan/cache/PHPStan/49/f9/49f9a52db377b75a4dc03eb7045d8415106accbb.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/4a/e2/4ae28fbf7677f4caaf68e4566a119ed2f9b27ca8.php b/var/cache/phpstan/cache/PHPStan/4a/e2/4ae28fbf7677f4caaf68e4566a119ed2f9b27ca8.php deleted file mode 100644 index f1c06e1..0000000 --- a/var/cache/phpstan/cache/PHPStan/4a/e2/4ae28fbf7677f4caaf68e4566a119ed2f9b27ca8.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765799368-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/4a/f7/4af7cddb3d42ed59250dd1c8e51513915232573b.php b/var/cache/phpstan/cache/PHPStan/4a/f7/4af7cddb3d42ed59250dd1c8e51513915232573b.php deleted file mode 100644 index 365d878..0000000 --- a/var/cache/phpstan/cache/PHPStan/4a/f7/4af7cddb3d42ed59250dd1c8e51513915232573b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179076-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/4b/f8/4bf8e581466f53543375f72647a8b7f2a2d66f53.php b/var/cache/phpstan/cache/PHPStan/4b/f8/4bf8e581466f53543375f72647a8b7f2a2d66f53.php deleted file mode 100644 index cb7ce37..0000000 --- a/var/cache/phpstan/cache/PHPStan/4b/f8/4bf8e581466f53543375f72647a8b7f2a2d66f53.php +++ /dev/null @@ -1,7 +0,0 @@ - '1755988561-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/4c/44/4c449fa9da4a25a61d4ad9bed590597d5559ec3a.php b/var/cache/phpstan/cache/PHPStan/4c/44/4c449fa9da4a25a61d4ad9bed590597d5559ec3a.php deleted file mode 100644 index 88d79c1..0000000 --- a/var/cache/phpstan/cache/PHPStan/4c/44/4c449fa9da4a25a61d4ad9bed590597d5559ec3a.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/4f/81/4f815a9538bbecf86f7cab0b06b7b08ec28fb6c9.php b/var/cache/phpstan/cache/PHPStan/4f/81/4f815a9538bbecf86f7cab0b06b7b08ec28fb6c9.php deleted file mode 100644 index 722db53..0000000 --- a/var/cache/phpstan/cache/PHPStan/4f/81/4f815a9538bbecf86f7cab0b06b7b08ec28fb6c9.php +++ /dev/null @@ -1,24 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php85/Resources/stubs/NoDiscard.php' => - array ( - 0 => '82efed00d9e63aeb442118c2e2b9fe9e252f3619', - 1 => - array ( - 0 => 'nodiscard', - ), - 2 => - array ( - 0 => '__construct', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/4f/ac/4facb3ec84c2ce128c13d91b893f0972835aa6f2.php b/var/cache/phpstan/cache/PHPStan/4f/ac/4facb3ec84c2ce128c13d91b893f0972835aa6f2.php deleted file mode 100644 index bab77a5..0000000 --- a/var/cache/phpstan/cache/PHPStan/4f/ac/4facb3ec84c2ce128c13d91b893f0972835aa6f2.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764192961-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/4f/d4/4fd494a4710ca67ab010618605d5083129bf5987.php b/var/cache/phpstan/cache/PHPStan/4f/d4/4fd494a4710ca67ab010618605d5083129bf5987.php deleted file mode 100644 index 3de8469..0000000 --- a/var/cache/phpstan/cache/PHPStan/4f/d4/4fd494a4710ca67ab010618605d5083129bf5987.php +++ /dev/null @@ -1,880 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/GetPoints.php' => - array ( - 0 => 'e2248747a52a53f1b32eb45227385015da8b0157', - 1 => - array ( - 0 => 'app\\integrations\\qdrant\\requests\\getpoints', - ), - 2 => - array ( - 0 => 'app\\integrations\\qdrant\\requests\\__construct', - 1 => 'app\\integrations\\qdrant\\requests\\resolveendpoint', - 2 => 'app\\integrations\\qdrant\\requests\\defaultbody', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/DeletePoints.php' => - array ( - 0 => '6585fb0f0d5370ff300a8b81e5890d13cdb062e3', - 1 => - array ( - 0 => 'app\\integrations\\qdrant\\requests\\deletepoints', - ), - 2 => - array ( - 0 => 'app\\integrations\\qdrant\\requests\\__construct', - 1 => 'app\\integrations\\qdrant\\requests\\resolveendpoint', - 2 => 'app\\integrations\\qdrant\\requests\\defaultbody', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/CreateCollection.php' => - array ( - 0 => '4c4669b1c0fc94471cb8fd4afb6769e08d8a26c3', - 1 => - array ( - 0 => 'app\\integrations\\qdrant\\requests\\createcollection', - ), - 2 => - array ( - 0 => 'app\\integrations\\qdrant\\requests\\__construct', - 1 => 'app\\integrations\\qdrant\\requests\\resolveendpoint', - 2 => 'app\\integrations\\qdrant\\requests\\defaultbody', - 3 => 'app\\integrations\\qdrant\\requests\\builddenseonlybody', - 4 => 'app\\integrations\\qdrant\\requests\\buildhybridbody', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/ScrollPoints.php' => - array ( - 0 => '606b49127bc2d999bd6f580a4ac109409af34799', - 1 => - array ( - 0 => 'app\\integrations\\qdrant\\requests\\scrollpoints', - ), - 2 => - array ( - 0 => 'app\\integrations\\qdrant\\requests\\__construct', - 1 => 'app\\integrations\\qdrant\\requests\\resolveendpoint', - 2 => 'app\\integrations\\qdrant\\requests\\defaultbody', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/UpsertPoints.php' => - array ( - 0 => 'cebb42bba4726cd2e866c32960d104a5ab5da66d', - 1 => - array ( - 0 => 'app\\integrations\\qdrant\\requests\\upsertpoints', - ), - 2 => - array ( - 0 => 'app\\integrations\\qdrant\\requests\\__construct', - 1 => 'app\\integrations\\qdrant\\requests\\resolveendpoint', - 2 => 'app\\integrations\\qdrant\\requests\\defaultbody', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/SearchPoints.php' => - array ( - 0 => '5784ff9984afdfb66df5ccd896779be683d8f50b', - 1 => - array ( - 0 => 'app\\integrations\\qdrant\\requests\\searchpoints', - ), - 2 => - array ( - 0 => 'app\\integrations\\qdrant\\requests\\__construct', - 1 => 'app\\integrations\\qdrant\\requests\\resolveendpoint', - 2 => 'app\\integrations\\qdrant\\requests\\defaultbody', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/GetCollectionInfo.php' => - array ( - 0 => '848731660bb899fa01b953774bc2796186efc81d', - 1 => - array ( - 0 => 'app\\integrations\\qdrant\\requests\\getcollectioninfo', - ), - 2 => - array ( - 0 => 'app\\integrations\\qdrant\\requests\\__construct', - 1 => 'app\\integrations\\qdrant\\requests\\resolveendpoint', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/QdrantConnector.php' => - array ( - 0 => '7f97e900ca6566edf377d16698fbc212a9ffc118', - 1 => - array ( - 0 => 'app\\integrations\\qdrant\\qdrantconnector', - ), - 2 => - array ( - 0 => 'app\\integrations\\qdrant\\__construct', - 1 => 'app\\integrations\\qdrant\\resolvebaseurl', - 2 => 'app\\integrations\\qdrant\\defaultheaders', - 3 => 'app\\integrations\\qdrant\\defaultconfig', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/CollectionCreationException.php' => - array ( - 0 => '3dcbd626d4299eb576afa23b6e81adcc0af3f41c', - 1 => - array ( - 0 => 'app\\exceptions\\qdrant\\collectioncreationexception', - ), - 2 => - array ( - 0 => 'app\\exceptions\\qdrant\\withreason', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/CollectionNotFoundException.php' => - array ( - 0 => '83e24d9f2bbc12080a2e202354df6e13056c462d', - 1 => - array ( - 0 => 'app\\exceptions\\qdrant\\collectionnotfoundexception', - ), - 2 => - array ( - 0 => 'app\\exceptions\\qdrant\\forcollection', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/EmbeddingException.php' => - array ( - 0 => 'bd7ada14342c3dfb058817947adb20bddc06f800', - 1 => - array ( - 0 => 'app\\exceptions\\qdrant\\embeddingexception', - ), - 2 => - array ( - 0 => 'app\\exceptions\\qdrant\\generationfailed', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/QdrantException.php' => - array ( - 0 => '06e6ae7407d18426f6e9a964a5836835af76209f', - 1 => - array ( - 0 => 'app\\exceptions\\qdrant\\qdrantexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/ConnectionException.php' => - array ( - 0 => 'e9f64cace7e53ea9c046ad2bbfbbcd5e9c2ad7bf', - 1 => - array ( - 0 => 'app\\exceptions\\qdrant\\connectionexception', - ), - 2 => - array ( - 0 => 'app\\exceptions\\qdrant\\withmessage', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/UpsertException.php' => - array ( - 0 => '396618aeda3046d09774d251392d591f1137e89d', - 1 => - array ( - 0 => 'app\\exceptions\\qdrant\\upsertexception', - ), - 2 => - array ( - 0 => 'app\\exceptions\\qdrant\\withreason', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Enums/ObservationType.php' => - array ( - 0 => 'fdfa7e572143460674cbf08ba5d4fa8f11a9b652', - 1 => - array ( - 0 => 'app\\enums\\observationtype', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Contracts/EmbeddingServiceInterface.php' => - array ( - 0 => 'efadd45bd5bf983af57087ae0a15d9bd669747a0', - 1 => - array ( - 0 => 'app\\contracts\\embeddingserviceinterface', - ), - 2 => - array ( - 0 => 'app\\contracts\\generate', - 1 => 'app\\contracts\\similarity', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Services/MarkdownExporter.php' => - array ( - 0 => 'ff366f4d2e3f14aee8298366f8a04fdb2d8ba4b4', - 1 => - array ( - 0 => 'app\\services\\markdownexporter', - ), - 2 => - array ( - 0 => 'app\\services\\exportarray', - 1 => 'app\\services\\buildfrontmatterfromarray', - 2 => 'app\\services\\escapeyaml', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Services/EmbeddingService.php' => - array ( - 0 => '771f2cbcedb07af94feb9f1dc22738f271eb2ed1', - 1 => - array ( - 0 => 'app\\services\\embeddingservice', - ), - 2 => - array ( - 0 => 'app\\services\\__construct', - 1 => 'app\\services\\generate', - 2 => 'app\\services\\similarity', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Services/KnowledgePathService.php' => - array ( - 0 => 'c18555771386565470630c2bce6c2c47434e2db1', - 1 => - array ( - 0 => 'app\\services\\knowledgepathservice', - ), - 2 => - array ( - 0 => 'app\\services\\__construct', - 1 => 'app\\services\\getknowledgedirectory', - 2 => 'app\\services\\ensuredirectoryexists', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Services/QdrantService.php' => - array ( - 0 => 'd50fa85c93149b849becad9f49065a0da3112e0a', - 1 => - array ( - 0 => 'app\\services\\qdrantservice', - ), - 2 => - array ( - 0 => 'app\\services\\__construct', - 1 => 'app\\services\\setsparseembeddingservice', - 2 => 'app\\services\\ensurecollection', - 3 => 'app\\services\\upsert', - 4 => 'app\\services\\search', - 5 => 'app\\services\\hybridsearch', - 6 => 'app\\services\\scroll', - 7 => 'app\\services\\delete', - 8 => 'app\\services\\getbyid', - 9 => 'app\\services\\incrementusage', - 10 => 'app\\services\\updatefields', - 11 => 'app\\services\\getcachedembedding', - 12 => 'app\\services\\buildfilter', - 13 => 'app\\services\\count', - 14 => 'app\\services\\getcollectionname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Services/StubEmbeddingService.php' => - array ( - 0 => '4396ca033150412a588b1029752897c92ae8d0e6', - 1 => - array ( - 0 => 'app\\services\\stubembeddingservice', - ), - 2 => - array ( - 0 => 'app\\services\\generate', - 1 => 'app\\services\\similarity', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Services/RuntimeEnvironment.php' => - array ( - 0 => '3ae17cfcc00e08ca6a67d14a322983fe399a8e7b', - 1 => - array ( - 0 => 'app\\services\\runtimeenvironment', - ), - 2 => - array ( - 0 => 'app\\services\\__construct', - 1 => 'app\\services\\isphar', - 2 => 'app\\services\\basepath', - 3 => 'app\\services\\cachepath', - 4 => 'app\\services\\resolvebasepath', - 5 => 'app\\services\\ensuredirectoryexists', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Services/GitContextService.php' => - array ( - 0 => '824c08a27c774d93409c7468d0c786f1629d504e', - 1 => - array ( - 0 => 'app\\services\\gitcontextservice', - ), - 2 => - array ( - 0 => 'app\\services\\__construct', - 1 => 'app\\services\\isgitrepository', - 2 => 'app\\services\\getrepositorypath', - 3 => 'app\\services\\getrepositoryurl', - 4 => 'app\\services\\getcurrentbranch', - 5 => 'app\\services\\getcurrentcommit', - 6 => 'app\\services\\getauthor', - 7 => 'app\\services\\getcontext', - 8 => 'app\\services\\rungitcommand', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeConfigCommand.php' => - array ( - 0 => 'd700cbf2101f871f31763385ec223127aa3a4e98', - 1 => - array ( - 0 => 'app\\commands\\knowledgeconfigcommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - 1 => 'app\\commands\\listconfig', - 2 => 'app\\commands\\getconfig', - 3 => 'app\\commands\\setconfig', - 4 => 'app\\commands\\invalidaction', - 5 => 'app\\commands\\loadconfig', - 6 => 'app\\commands\\saveconfig', - 7 => 'app\\commands\\getconfigpath', - 8 => 'app\\commands\\isvalidkey', - 9 => 'app\\commands\\getnestedvalue', - 10 => 'app\\commands\\setnestedvalue', - 11 => 'app\\commands\\parsevalue', - 12 => 'app\\commands\\validatevalue', - 13 => 'app\\commands\\isvalidurl', - 14 => 'app\\commands\\formatvalue', - 15 => 'app\\commands\\displayconfigtree', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php' => - array ( - 0 => '5aa95fa7ab05ac7ea7a258abbf61f59ce84adc7d', - 1 => - array ( - 0 => 'app\\commands\\knowledgeshowcommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - 1 => 'app\\commands\\renderentry', - 2 => 'app\\commands\\colorize', - 3 => 'app\\commands\\prioritycolor', - 4 => 'app\\commands\\statuscolor', - 5 => 'app\\commands\\confidencecolor', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeAddCommand.php' => - array ( - 0 => 'bba911c4e0a1739b0ef5b1c62e30e1258a20143b', - 1 => - array ( - 0 => 'app\\commands\\knowledgeaddcommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeListCommand.php' => - array ( - 0 => '23c9268cf16b725228b56c9ece8ea7766a15c3f5', - 1 => - array ( - 0 => 'app\\commands\\knowledgelistcommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/InstallCommand.php' => - array ( - 0 => '2604403d3c79fc0d6e06bdd8cfea63b6b1e32904', - 1 => - array ( - 0 => 'app\\commands\\installcommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeArchiveCommand.php' => - array ( - 0 => '31219e1f83ee36e3d86fe6896f743f081d90e2ef', - 1 => - array ( - 0 => 'app\\commands\\knowledgearchivecommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - 1 => 'app\\commands\\archiveentry', - 2 => 'app\\commands\\restoreentry', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchCommand.php' => - array ( - 0 => '507b4855effed70e32f7a89fb560a713c27537f6', - 1 => - array ( - 0 => 'app\\commands\\knowledgesearchcommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeExportAllCommand.php' => - array ( - 0 => 'd3e6830cbe8162134f3044b334dc3ca32332b3b8', - 1 => - array ( - 0 => 'app\\commands\\knowledgeexportallcommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - 1 => 'app\\commands\\generatefilename', - 2 => 'app\\commands\\slugify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php' => - array ( - 0 => '966b9fe507105331b170a0e0cf5664abb33a0d97', - 1 => - array ( - 0 => 'app\\commands\\synccommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - 1 => 'app\\commands\\getclient', - 2 => 'app\\commands\\createclient', - 3 => 'app\\commands\\pullfromcloud', - 4 => 'app\\commands\\pushtocloud', - 5 => 'app\\commands\\generateuniqueid', - 6 => 'app\\commands\\displaysummary', - 7 => 'app\\commands\\displaypullsummary', - 8 => 'app\\commands\\displaypushsummary', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeUpdateCommand.php' => - array ( - 0 => '2d58683c969fc1377a9f99cdd6d72129836f97f6', - 1 => - array ( - 0 => 'app\\commands\\knowledgeupdatecommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchStatusCommand.php' => - array ( - 0 => '4582141ded7873fb2943b619cc2307cb3a773868', - 1 => - array ( - 0 => 'app\\commands\\knowledgesearchstatuscommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php' => - array ( - 0 => '88ac1f8fc1d72e938068cfd3ee653a55166a9963', - 1 => - array ( - 0 => 'app\\commands\\knowledgevalidatecommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeExportCommand.php' => - array ( - 0 => '0fbdda18a91aa29a141eb772452740db9725bbc9', - 1 => - array ( - 0 => 'app\\commands\\knowledgeexportcommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeGitContextCommand.php' => - array ( - 0 => '2a353e88ed6db1f01a6b7f43a0032c5a33baddc2', - 1 => - array ( - 0 => 'app\\commands\\knowledgegitcontextcommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeStatsCommand.php' => - array ( - 0 => '04cef12ab315e21c26dd73351a38c65cebd40cf2', - 1 => - array ( - 0 => 'app\\commands\\knowledgestatscommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - 1 => 'app\\commands\\renderdashboard', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Providers/AppServiceProvider.php' => - array ( - 0 => 'd28bad87d9ead4c3484c081f1829f5a181da5457', - 1 => - array ( - 0 => 'app\\providers\\appserviceprovider', - ), - 2 => - array ( - 0 => 'app\\providers\\boot', - 1 => 'app\\providers\\register', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/HybridSearchPoints.php' => - array ( - 0 => 'ef69730d2a598260cd8f6ea0b010cf574b3a9b06', - 1 => - array ( - 0 => 'app\\integrations\\qdrant\\requests\\hybridsearchpoints', - ), - 2 => - array ( - 0 => 'app\\integrations\\qdrant\\requests\\__construct', - 1 => 'app\\integrations\\qdrant\\requests\\resolveendpoint', - 2 => 'app\\integrations\\qdrant\\requests\\defaultbody', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/DuplicateEntryException.php' => - array ( - 0 => '71869d3446f4d9e8be7c5d2d9be3b41112783037', - 1 => - array ( - 0 => 'app\\exceptions\\qdrant\\duplicateentryexception', - ), - 2 => - array ( - 0 => 'app\\exceptions\\qdrant\\__construct', - 1 => 'app\\exceptions\\qdrant\\hashmatch', - 2 => 'app\\exceptions\\qdrant\\similaritymatch', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Contracts/SparseEmbeddingServiceInterface.php' => - array ( - 0 => 'df0fcee7a3c7f85a73d650d071fc04ed7b014b35', - 1 => - array ( - 0 => 'app\\contracts\\sparseembeddingserviceinterface', - ), - 2 => - array ( - 0 => 'app\\contracts\\generate', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Services/CodeIndexerService.php' => - array ( - 0 => '24926bd92f7599a1df32aba9714cf19f974bc9fb', - 1 => - array ( - 0 => 'app\\services\\codeindexerservice', - ), - 2 => - array ( - 0 => 'app\\services\\__construct', - 1 => 'app\\services\\ensurecollection', - 2 => 'app\\services\\findfiles', - 3 => 'app\\services\\indexfile', - 4 => 'app\\services\\search', - 5 => 'app\\services\\chunkcontent', - 6 => 'app\\services\\detectlanguage', - 7 => 'app\\services\\extractfunctionnames', - 8 => 'app\\services\\buildsearchabletext', - 9 => 'app\\services\\buildfilter', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Services/Bm25SparseEmbeddingService.php' => - array ( - 0 => 'f115e2154b5f27ba34581cfd6e3792dff0ec7415', - 1 => - array ( - 0 => 'app\\services\\bm25sparseembeddingservice', - ), - 2 => - array ( - 0 => 'app\\services\\__construct', - 1 => 'app\\services\\generate', - 2 => 'app\\services\\tokenize', - 3 => 'app\\services\\hashterm', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Services/PatternDetectorService.php' => - array ( - 0 => '6d90fdd399160de677eec19d741a8977edd06190', - 1 => - array ( - 0 => 'app\\services\\patterndetectorservice', - ), - 2 => - array ( - 0 => 'app\\services\\detect', - 1 => 'app\\services\\findentriesmatchingpattern', - 2 => 'app\\services\\extractsignificantwords', - 3 => 'app\\services\\extractprojects', - 4 => 'app\\services\\isdatetag', - 5 => 'app\\services\\filterbyfrequency', - 6 => 'app\\services\\generateinsights', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Services/ThemeClassifierService.php' => - array ( - 0 => 'fbd80933c787ec0db201981109b883edd376ecd0', - 1 => - array ( - 0 => 'app\\services\\themeclassifierservice', - ), - 2 => - array ( - 0 => 'app\\services\\classify', - 1 => 'app\\services\\classifybatch', - 2 => 'app\\services\\getthemetargets', - 3 => 'app\\services\\calculatescore', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/IndexCodeCommand.php' => - array ( - 0 => '05bcc48ab16be0cf75dec1d3ef95c25aa3115793', - 1 => - array ( - 0 => 'app\\commands\\indexcodecommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - 1 => 'app\\commands\\showstats', - 2 => 'app\\commands\\exttolang', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/SynthesizeCommand.php' => - array ( - 0 => 'f0f2804265d41ef8f4229f26f0cfdc5fef65698f', - 1 => - array ( - 0 => 'app\\commands\\synthesizecommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - 1 => 'app\\commands\\rundedupe', - 2 => 'app\\commands\\rundigest', - 3 => 'app\\commands\\runarchivestale', - 4 => 'app\\commands\\getrecenthighvalueentries', - 5 => 'app\\commands\\builddigestcontent', - 6 => 'app\\commands\\displaysummary', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/InsightsCommand.php' => - array ( - 0 => '49d778791dee2097ae15edec02295d948db237df', - 1 => - array ( - 0 => 'app\\commands\\insightscommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - 1 => 'app\\commands\\classifysingleentry', - 2 => 'app\\commands\\showthemeanalysis', - 3 => 'app\\commands\\showpatternanalysis', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/SearchCodeCommand.php' => - array ( - 0 => '98b86703065e9b236c49e984cd116580661add84', - 1 => - array ( - 0 => 'app\\commands\\searchcodecommand', - ), - 2 => - array ( - 0 => 'app\\commands\\handle', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/4f/e9/4fe9133d063336d4596b9e4a0ed04d81a1fc3bf9.php b/var/cache/phpstan/cache/PHPStan/4f/e9/4fe9133d063336d4596b9e4a0ed04d81a1fc3bf9.php deleted file mode 100644 index 9aeee43..0000000 --- a/var/cache/phpstan/cache/PHPStan/4f/e9/4fe9133d063336d4596b9e4a0ed04d81a1fc3bf9.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694927-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/52/89/52891112c52aa24895cd3fd3059a6c6a9b2cc6c4.php b/var/cache/phpstan/cache/PHPStan/52/89/52891112c52aa24895cd3fd3059a6c6a9b2cc6c4.php deleted file mode 100644 index 8b3d4a4..0000000 --- a/var/cache/phpstan/cache/PHPStan/52/89/52891112c52aa24895cd3fd3059a6c6a9b2cc6c4.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765799368-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/53/6b/536b566756201e246f3b85552abbe5edc2f8d7ee.php b/var/cache/phpstan/cache/PHPStan/53/6b/536b566756201e246f3b85552abbe5edc2f8d7ee.php deleted file mode 100644 index 533792f..0000000 --- a/var/cache/phpstan/cache/PHPStan/53/6b/536b566756201e246f3b85552abbe5edc2f8d7ee.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/53/f4/53f40a8a229fee77c654ee4bb15dbc105f96afc5.php b/var/cache/phpstan/cache/PHPStan/53/f4/53f40a8a229fee77c654ee4bb15dbc105f96afc5.php deleted file mode 100644 index cbc67eb..0000000 --- a/var/cache/phpstan/cache/PHPStan/53/f4/53f40a8a229fee77c654ee4bb15dbc105f96afc5.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179076-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/56/2f/562f8ab613fa4bc73c951fed0c9fc52ab6bfa714.php b/var/cache/phpstan/cache/PHPStan/56/2f/562f8ab613fa4bc73c951fed0c9fc52ab6bfa714.php deleted file mode 100644 index 88e22ab..0000000 --- a/var/cache/phpstan/cache/PHPStan/56/2f/562f8ab613fa4bc73c951fed0c9fc52ab6bfa714.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/58/d7/58d7a562110d585a57590a17d40d62cb45c9a99d.php b/var/cache/phpstan/cache/PHPStan/58/d7/58d7a562110d585a57590a17d40d62cb45c9a99d.php deleted file mode 100644 index 7fcb974..0000000 --- a/var/cache/phpstan/cache/PHPStan/58/d7/58d7a562110d585a57590a17d40d62cb45c9a99d.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/59/98/599808ee3b78e6866de6585d67304899bcc593f9.php b/var/cache/phpstan/cache/PHPStan/59/98/599808ee3b78e6866de6585d67304899bcc593f9.php deleted file mode 100644 index 0362cea..0000000 --- a/var/cache/phpstan/cache/PHPStan/59/98/599808ee3b78e6866de6585d67304899bcc593f9.php +++ /dev/null @@ -1,70 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-text-template/src/exceptions/Exception.php' => - array ( - 0 => '0a38bd1cb58cb6ab0f43b58f95608743ae360bfa', - 1 => - array ( - 0 => 'sebastianbergmann\\template\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-text-template/src/exceptions/RuntimeException.php' => - array ( - 0 => '7a19b120a8deaa8f0f3271cf2385276fbc4461ec', - 1 => - array ( - 0 => 'sebastianbergmann\\template\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-text-template/src/exceptions/InvalidArgumentException.php' => - array ( - 0 => '02fc5bf6252c6d418dcaee916fce2f3690251349', - 1 => - array ( - 0 => 'sebastianbergmann\\template\\invalidargumentexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/59/be/59be09d1c92e97738a8a76243c96ec64a424a83e.php b/var/cache/phpstan/cache/PHPStan/59/be/59be09d1c92e97738a8a76243c96ec64a424a83e.php deleted file mode 100644 index 86e640b..0000000 --- a/var/cache/phpstan/cache/PHPStan/59/be/59be09d1c92e97738a8a76243c96ec64a424a83e.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179076-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/5a/1f/5a1f61c8f32702dfa66aa7bdaf13b2f89422dc6e.php b/var/cache/phpstan/cache/PHPStan/5a/1f/5a1f61c8f32702dfa66aa7bdaf13b2f89422dc6e.php deleted file mode 100644 index debcbc6..0000000 --- a/var/cache/phpstan/cache/PHPStan/5a/1f/5a1f61c8f32702dfa66aa7bdaf13b2f89422dc6e.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/5a/89/5a8974e23d6a9bb73b8ec8370f15b3b297cf37b6.php b/var/cache/phpstan/cache/PHPStan/5a/89/5a8974e23d6a9bb73b8ec8370f15b3b297cf37b6.php deleted file mode 100644 index 651067c..0000000 --- a/var/cache/phpstan/cache/PHPStan/5a/89/5a8974e23d6a9bb73b8ec8370f15b3b297cf37b6.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/5b/3c/5b3c32792d04b2b05cc41724d479b2dd0db0d910.php b/var/cache/phpstan/cache/PHPStan/5b/3c/5b3c32792d04b2b05cc41724d479b2dd0db0d910.php deleted file mode 100644 index 00a78c7..0000000 --- a/var/cache/phpstan/cache/PHPStan/5b/3c/5b3c32792d04b2b05cc41724d479b2dd0db0d910.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/5c/17/5c170bfd99d4cc5ea905ccb5eeda8c6eb7ca2d56.php b/var/cache/phpstan/cache/PHPStan/5c/17/5c170bfd99d4cc5ea905ccb5eeda8c6eb7ca2d56.php deleted file mode 100644 index 97296e2..0000000 --- a/var/cache/phpstan/cache/PHPStan/5c/17/5c170bfd99d4cc5ea905ccb5eeda8c6eb7ca2d56.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179076-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/5c/f4/5cf4daf3bd3f06940f4191c66150849218e24610.php b/var/cache/phpstan/cache/PHPStan/5c/f4/5cf4daf3bd3f06940f4191c66150849218e24610.php deleted file mode 100644 index 28b9782..0000000 --- a/var/cache/phpstan/cache/PHPStan/5c/f4/5cf4daf3bd3f06940f4191c66150849218e24610.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179077-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/5e/c6/5ec6aff76c67449f30e1813b5289d282322b5cef.php b/var/cache/phpstan/cache/PHPStan/5e/c6/5ec6aff76c67449f30e1813b5289d282322b5cef.php deleted file mode 100644 index eca5da1..0000000 --- a/var/cache/phpstan/cache/PHPStan/5e/c6/5ec6aff76c67449f30e1813b5289d282322b5cef.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694927-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/5f/88/5f88f44f1b4a5867e4cba0083cf7fb48294367dc.php b/var/cache/phpstan/cache/PHPStan/5f/88/5f88f44f1b4a5867e4cba0083cf7fb48294367dc.php deleted file mode 100644 index fa0ea44..0000000 --- a/var/cache/phpstan/cache/PHPStan/5f/88/5f88f44f1b4a5867e4cba0083cf7fb48294367dc.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765799368-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/60/90/6090b1bcc2ae52e34953b98e32076d343632f21e.php b/var/cache/phpstan/cache/PHPStan/60/90/6090b1bcc2ae52e34953b98e32076d343632f21e.php deleted file mode 100644 index 02b541b..0000000 --- a/var/cache/phpstan/cache/PHPStan/60/90/6090b1bcc2ae52e34953b98e32076d343632f21e.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765799368-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/64/29/6429fb125dce845bc5ff9206c6191214de529a18.php b/var/cache/phpstan/cache/PHPStan/64/29/6429fb125dce845bc5ff9206c6191214de529a18.php deleted file mode 100644 index 8895ac1..0000000 --- a/var/cache/phpstan/cache/PHPStan/64/29/6429fb125dce845bc5ff9206c6191214de529a18.php +++ /dev/null @@ -1,7 +0,0 @@ - '1760613666-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/67/53/6753357c8aaf6dea2294756d48b2be5535011bf9.php b/var/cache/phpstan/cache/PHPStan/67/53/6753357c8aaf6dea2294756d48b2be5535011bf9.php deleted file mode 100644 index bb8895c..0000000 --- a/var/cache/phpstan/cache/PHPStan/67/53/6753357c8aaf6dea2294756d48b2be5535011bf9.php +++ /dev/null @@ -1,7 +0,0 @@ - '1760613666-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/68/16/68161aaa7491a6b69a3ad481950c2ac6569c6a48.php b/var/cache/phpstan/cache/PHPStan/68/16/68161aaa7491a6b69a3ad481950c2ac6569c6a48.php deleted file mode 100644 index 23d5def..0000000 --- a/var/cache/phpstan/cache/PHPStan/68/16/68161aaa7491a6b69a3ad481950c2ac6569c6a48.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/6b/2d/6b2d047da657e0a1e216561ab0838c41a55c103a.php b/var/cache/phpstan/cache/PHPStan/6b/2d/6b2d047da657e0a1e216561ab0838c41a55c103a.php deleted file mode 100644 index ac5b6ba..0000000 --- a/var/cache/phpstan/cache/PHPStan/6b/2d/6b2d047da657e0a1e216561ab0838c41a55c103a.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764192961-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/6b/e2/6be29bbef482d1cf75f264638560d4ccc79f2d38.php b/var/cache/phpstan/cache/PHPStan/6b/e2/6be29bbef482d1cf75f264638560d4ccc79f2d38.php deleted file mode 100644 index eeea13b..0000000 --- a/var/cache/phpstan/cache/PHPStan/6b/e2/6be29bbef482d1cf75f264638560d4ccc79f2d38.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179077-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/6c/14/6c149bf4159710919397cc0d64b729b05e39a9ec.php b/var/cache/phpstan/cache/PHPStan/6c/14/6c149bf4159710919397cc0d64b729b05e39a9ec.php deleted file mode 100644 index 741181b..0000000 --- a/var/cache/phpstan/cache/PHPStan/6c/14/6c149bf4159710919397cc0d64b729b05e39a9ec.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179077-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/6f/30/6f30cfd5c408f0d740ad73c59fada9a1abb72795.php b/var/cache/phpstan/cache/PHPStan/6f/30/6f30cfd5c408f0d740ad73c59fada9a1abb72795.php deleted file mode 100644 index 9bee168..0000000 --- a/var/cache/phpstan/cache/PHPStan/6f/30/6f30cfd5c408f0d740ad73c59fada9a1abb72795.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764282503-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/70/12/7012306a6bb762fc16c6502db78db5b12352ece9.php b/var/cache/phpstan/cache/PHPStan/70/12/7012306a6bb762fc16c6502db78db5b12352ece9.php deleted file mode 100644 index fb74b62..0000000 --- a/var/cache/phpstan/cache/PHPStan/70/12/7012306a6bb762fc16c6502db78db5b12352ece9.php +++ /dev/null @@ -1,24 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/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/var/cache/phpstan/cache/PHPStan/71/2a/712a29d93f7444150c28e7df7c5771a90a965643.php b/var/cache/phpstan/cache/PHPStan/71/2a/712a29d93f7444150c28e7df7c5771a90a965643.php deleted file mode 100644 index 2747fe7..0000000 --- a/var/cache/phpstan/cache/PHPStan/71/2a/712a29d93f7444150c28e7df7c5771a90a965643.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/71/32/7132d6a668e64128d753372673b668826a729d79.php b/var/cache/phpstan/cache/PHPStan/71/32/7132d6a668e64128d753372673b668826a729d79.php deleted file mode 100644 index 546201c..0000000 --- a/var/cache/phpstan/cache/PHPStan/71/32/7132d6a668e64128d753372673b668826a729d79.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/72/cd/72cd0753df4bd774989ec298ad7999b06749887b.php b/var/cache/phpstan/cache/PHPStan/72/cd/72cd0753df4bd774989ec298ad7999b06749887b.php deleted file mode 100644 index 71d958d..0000000 --- a/var/cache/phpstan/cache/PHPStan/72/cd/72cd0753df4bd774989ec298ad7999b06749887b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1759867176-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/73/d4/73d44e2c055543695f6e59b8bea0d9598072f8f7.php b/var/cache/phpstan/cache/PHPStan/73/d4/73d44e2c055543695f6e59b8bea0d9598072f8f7.php deleted file mode 100644 index baeea95..0000000 --- a/var/cache/phpstan/cache/PHPStan/73/d4/73d44e2c055543695f6e59b8bea0d9598072f8f7.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179077-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/74/75/7475caf3425e70a6f0e219e100cdac760a9b6472.php b/var/cache/phpstan/cache/PHPStan/74/75/7475caf3425e70a6f0e219e100cdac760a9b6472.php deleted file mode 100644 index 9129e61..0000000 --- a/var/cache/phpstan/cache/PHPStan/74/75/7475caf3425e70a6f0e219e100cdac760a9b6472.php +++ /dev/null @@ -1,164 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedStringException.php' => - array ( - 0 => '5a2b12bd3f5b10658acf4d9f0c8c9581218a099a', - 1 => - array ( - 0 => 'datemalformedstringexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php83/Resources/stubs/DateError.php' => - array ( - 0 => '507d40e4c8120159602a96ad7f79f2747c075832', - 1 => - array ( - 0 => 'dateerror', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedPeriodStringException.php' => - array ( - 0 => 'c8a6e7796fbec0c3b1a6db401a897ddc128f133b', - 1 => - array ( - 0 => 'datemalformedperiodstringexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php83/Resources/stubs/DateInvalidOperationException.php' => - array ( - 0 => 'c514a879a3544566510c2c0a91b1b1a082f1e59e', - 1 => - array ( - 0 => 'dateinvalidoperationexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php83/Resources/stubs/DateRangeError.php' => - array ( - 0 => '95434544bd2764aa084667729cc6a9c5b10db9e3', - 1 => - array ( - 0 => 'daterangeerror', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php83/Resources/stubs/Override.php' => - array ( - 0 => 'ea5a9d50cfb4d187336cf7aecac4ba7268777a20', - 1 => - array ( - 0 => 'override', - ), - 2 => - array ( - 0 => '__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php83/Resources/stubs/DateException.php' => - array ( - 0 => 'af1baabcbe518784f6f8cec728df655e5f7d26a9', - 1 => - array ( - 0 => 'dateexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php83/Resources/stubs/DateObjectError.php' => - array ( - 0 => '5ecda63e0c1a1d420422a90b060c5b9a82b3b856', - 1 => - array ( - 0 => 'dateobjecterror', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php83/Resources/stubs/DateMalformedIntervalStringException.php' => - array ( - 0 => 'dbd4ce64cc4cb83a81cacb01dc9a7e2e02beaea5', - 1 => - array ( - 0 => 'datemalformedintervalstringexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php83/Resources/stubs/SQLite3Exception.php' => - array ( - 0 => '1bb73b922ce93a9ac9fe50baccccf014c0a47a15', - 1 => - array ( - 0 => 'sqlite3exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php83/Resources/stubs/DateInvalidTimeZoneException.php' => - array ( - 0 => '9dd3725abd945fff1eecdccda915e4fe5e13f4fe', - 1 => - array ( - 0 => 'dateinvalidtimezoneexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/76/1b/761bf17b7ff739bff36b7a4d1475cba5dc84a6a9.php b/var/cache/phpstan/cache/PHPStan/76/1b/761bf17b7ff739bff36b7a4d1475cba5dc84a6a9.php deleted file mode 100644 index 6db8ff7..0000000 --- a/var/cache/phpstan/cache/PHPStan/76/1b/761bf17b7ff739bff36b7a4d1475cba5dc84a6a9.php +++ /dev/null @@ -1,154 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/sebastian/complexity/src/Exception/Exception.php' => - array ( - 0 => '022209ac794d1b2cef438ba5ac0dc80e1e84f66c', - 1 => - array ( - 0 => 'sebastianbergmann\\complexity\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/complexity/src/Exception/RuntimeException.php' => - array ( - 0 => 'e8ff0c097319875f50b1ff0a4a184747bbf724ac', - 1 => - array ( - 0 => 'sebastianbergmann\\complexity\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/complexity/src/Visitor/ComplexityCalculatingVisitor.php' => - array ( - 0 => '26dfb09339e105d24ea64afb40715af75672133c', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/complexity/src/Visitor/CyclomaticComplexityCalculatingVisitor.php' => - array ( - 0 => '57e06b8165d2d9efacbc2a624d7b810dd05b6798', - 1 => - array ( - 0 => 'sebastianbergmann\\complexity\\cyclomaticcomplexitycalculatingvisitor', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\complexity\\enternode', - 1 => 'sebastianbergmann\\complexity\\cyclomaticcomplexity', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/complexity/src/Calculator.php' => - array ( - 0 => '405203790792c74d3b71a632c2df0906cf36d930', - 1 => - array ( - 0 => 'sebastianbergmann\\complexity\\calculator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\complexity\\calculateforsourcefile', - 1 => 'sebastianbergmann\\complexity\\calculateforsourcestring', - 2 => 'sebastianbergmann\\complexity\\calculateforabstractsyntaxtree', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/complexity/src/Complexity/ComplexityCollection.php' => - array ( - 0 => '2ecfa3edd54d0c336e320e2a3988c7680860e7c0', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/76/7c/767cf6b8187c4e5922c5da868ebbd0fc10aa243e.php b/var/cache/phpstan/cache/PHPStan/76/7c/767cf6b8187c4e5922c5da868ebbd0fc10aa243e.php deleted file mode 100644 index b7a4b08..0000000 --- a/var/cache/phpstan/cache/PHPStan/76/7c/767cf6b8187c4e5922c5da868ebbd0fc10aa243e.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764192961-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/77/37/7737e55e13e87c06a257f7a4cc5e25db5454cd61.php b/var/cache/phpstan/cache/PHPStan/77/37/7737e55e13e87c06a257f7a4cc5e25db5454cd61.php deleted file mode 100644 index db9827b..0000000 --- a/var/cache/phpstan/cache/PHPStan/77/37/7737e55e13e87c06a257f7a4cc5e25db5454cd61.php +++ /dev/null @@ -1,7 +0,0 @@ - '1760613666-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/78/89/7889b4c4f8d013273c0186d114302eaee2913027.php b/var/cache/phpstan/cache/PHPStan/78/89/7889b4c4f8d013273c0186d114302eaee2913027.php deleted file mode 100644 index dbec180..0000000 --- a/var/cache/phpstan/cache/PHPStan/78/89/7889b4c4f8d013273c0186d114302eaee2913027.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/79/22/79225ebb9654e883d92a55d35324c269eff217ba.php b/var/cache/phpstan/cache/PHPStan/79/22/79225ebb9654e883d92a55d35324c269eff217ba.php deleted file mode 100644 index 2c8ad3b..0000000 --- a/var/cache/phpstan/cache/PHPStan/79/22/79225ebb9654e883d92a55d35324c269eff217ba.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/79/b8/79b8b0d53d8ba7b947f7bf8c69c8210ef523181f.php b/var/cache/phpstan/cache/PHPStan/79/b8/79b8b0d53d8ba7b947f7bf8c69c8210ef523181f.php deleted file mode 100644 index 2183777..0000000 --- a/var/cache/phpstan/cache/PHPStan/79/b8/79b8b0d53d8ba7b947f7bf8c69c8210ef523181f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179076-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/7a/19/7a19b7759749b161e59451e538f7476068e66559.php b/var/cache/phpstan/cache/PHPStan/7a/19/7a19b7759749b161e59451e538f7476068e66559.php deleted file mode 100644 index dde07e3..0000000 --- a/var/cache/phpstan/cache/PHPStan/7a/19/7a19b7759749b161e59451e538f7476068e66559.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/7a/a6/7aa6722045332be77649e72491c2aa3a2938bcf6.php b/var/cache/phpstan/cache/PHPStan/7a/a6/7aa6722045332be77649e72491c2aa3a2938bcf6.php deleted file mode 100644 index ea2f32b..0000000 --- a/var/cache/phpstan/cache/PHPStan/7a/a6/7aa6722045332be77649e72491c2aa3a2938bcf6.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/7a/e7/7ae75e8350e88ad846a63dea66b0dfa4f811366a.php b/var/cache/phpstan/cache/PHPStan/7a/e7/7ae75e8350e88ad846a63dea66b0dfa4f811366a.php deleted file mode 100644 index 0451921..0000000 --- a/var/cache/phpstan/cache/PHPStan/7a/e7/7ae75e8350e88ad846a63dea66b0dfa4f811366a.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179076-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/7b/65/7b6510965facc1daaf2413c8988117264461abf2.php b/var/cache/phpstan/cache/PHPStan/7b/65/7b6510965facc1daaf2413c8988117264461abf2.php deleted file mode 100644 index bcf0133..0000000 --- a/var/cache/phpstan/cache/PHPStan/7b/65/7b6510965facc1daaf2413c8988117264461abf2.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764084145-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/7c/7f/7c7f9511df6b577009f7bcbf2c0b54eab24a6568.php b/var/cache/phpstan/cache/PHPStan/7c/7f/7c7f9511df6b577009f7bcbf2c0b54eab24a6568.php deleted file mode 100644 index c0cea13..0000000 --- a/var/cache/phpstan/cache/PHPStan/7c/7f/7c7f9511df6b577009f7bcbf2c0b54eab24a6568.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/7d/38/7d380f13b1468717be3e3e93256561ddc77b341f.php b/var/cache/phpstan/cache/PHPStan/7d/38/7d380f13b1468717be3e3e93256561ddc77b341f.php deleted file mode 100644 index 4b4f2fb..0000000 --- a/var/cache/phpstan/cache/PHPStan/7d/38/7d380f13b1468717be3e3e93256561ddc77b341f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179077-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/7e/1c/7e1cacb7f6058a042a97695858f783a1d787dce1.php b/var/cache/phpstan/cache/PHPStan/7e/1c/7e1cacb7f6058a042a97695858f783a1d787dce1.php deleted file mode 100644 index ff18de7..0000000 --- a/var/cache/phpstan/cache/PHPStan/7e/1c/7e1cacb7f6058a042a97695858f783a1d787dce1.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/7e/c4/7ec47f2c235cdb6bfd471d4a727bc6a2a13e1ab9.php b/var/cache/phpstan/cache/PHPStan/7e/c4/7ec47f2c235cdb6bfd471d4a727bc6a2a13e1ab9.php deleted file mode 100644 index 3fa6a8c..0000000 --- a/var/cache/phpstan/cache/PHPStan/7e/c4/7ec47f2c235cdb6bfd471d4a727bc6a2a13e1ab9.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179079-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/7e/d2/7ed2e039f26293d88a45c6dbd2224495565bf316.php b/var/cache/phpstan/cache/PHPStan/7e/d2/7ed2e039f26293d88a45c6dbd2224495565bf316.php deleted file mode 100644 index 671f0d9..0000000 --- a/var/cache/phpstan/cache/PHPStan/7e/d2/7ed2e039f26293d88a45c6dbd2224495565bf316.php +++ /dev/null @@ -1,7 +0,0 @@ - '1755988561-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/7f/a3/7fa3e4b1f6724b4122982bafa16b243c353f3b3f.php b/var/cache/phpstan/cache/PHPStan/7f/a3/7fa3e4b1f6724b4122982bafa16b243c353f3b3f.php deleted file mode 100644 index 9fefa64..0000000 --- a/var/cache/phpstan/cache/PHPStan/7f/a3/7fa3e4b1f6724b4122982bafa16b243c353f3b3f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179076-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/80/b3/80b3fae4db0bfd30a1a54642228b239490b28b2e.php b/var/cache/phpstan/cache/PHPStan/80/b3/80b3fae4db0bfd30a1a54642228b239490b28b2e.php deleted file mode 100644 index e2d644e..0000000 --- a/var/cache/phpstan/cache/PHPStan/80/b3/80b3fae4db0bfd30a1a54642228b239490b28b2e.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/80/d3/80d39b951d6cecde80c83da0e4d2e24cc1edc20b.php b/var/cache/phpstan/cache/PHPStan/80/d3/80d39b951d6cecde80c83da0e4d2e24cc1edc20b.php deleted file mode 100644 index fb492ee..0000000 --- a/var/cache/phpstan/cache/PHPStan/80/d3/80d39b951d6cecde80c83da0e4d2e24cc1edc20b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764282503-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/81/d1/81d17d0cae3916892db51dfc04b27b763a1e0989.php b/var/cache/phpstan/cache/PHPStan/81/d1/81d17d0cae3916892db51dfc04b27b763a1e0989.php deleted file mode 100644 index 8a263e9..0000000 --- a/var/cache/phpstan/cache/PHPStan/81/d1/81d17d0cae3916892db51dfc04b27b763a1e0989.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/82/e1/82e1d28b9f679bbcda139cf26297f2ade714d2a2.php b/var/cache/phpstan/cache/PHPStan/82/e1/82e1d28b9f679bbcda139cf26297f2ade714d2a2.php deleted file mode 100644 index e87cd84..0000000 --- a/var/cache/phpstan/cache/PHPStan/82/e1/82e1d28b9f679bbcda139cf26297f2ade714d2a2.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694927-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/83/2c/832c52a406e27d05efb26c5ac808d980d13ace7a.php b/var/cache/phpstan/cache/PHPStan/83/2c/832c52a406e27d05efb26c5ac808d980d13ace7a.php deleted file mode 100644 index cff20e8..0000000 --- a/var/cache/phpstan/cache/PHPStan/83/2c/832c52a406e27d05efb26c5ac808d980d13ace7a.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764282503-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/83/5c/835c31ef26fd06a8ea04a02958c444cae612f0cb.php b/var/cache/phpstan/cache/PHPStan/83/5c/835c31ef26fd06a8ea04a02958c444cae612f0cb.php deleted file mode 100644 index 41611f7..0000000 --- a/var/cache/phpstan/cache/PHPStan/83/5c/835c31ef26fd06a8ea04a02958c444cae612f0cb.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765799368-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/83/fe/83fe35ccf9f2017bfb6865ce061c4c1d47986efb.php b/var/cache/phpstan/cache/PHPStan/83/fe/83fe35ccf9f2017bfb6865ce061c4c1d47986efb.php deleted file mode 100644 index 10c376c..0000000 --- a/var/cache/phpstan/cache/PHPStan/83/fe/83fe35ccf9f2017bfb6865ce061c4c1d47986efb.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/84/36/84364b84e8bff9d6b441a32940e3ac884e87dd9a.php b/var/cache/phpstan/cache/PHPStan/84/36/84364b84e8bff9d6b441a32940e3ac884e87dd9a.php deleted file mode 100644 index d1846c8..0000000 --- a/var/cache/phpstan/cache/PHPStan/84/36/84364b84e8bff9d6b441a32940e3ac884e87dd9a.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/84/8c/848c5b940f293648663b821fe6a79ff48623fb8f.php b/var/cache/phpstan/cache/PHPStan/84/8c/848c5b940f293648663b821fe6a79ff48623fb8f.php deleted file mode 100644 index 849b0da..0000000 --- a/var/cache/phpstan/cache/PHPStan/84/8c/848c5b940f293648663b821fe6a79ff48623fb8f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/85/53/8553a332f201c19fd4fe33df1acc90ef03262dde.php b/var/cache/phpstan/cache/PHPStan/85/53/8553a332f201c19fd4fe33df1acc90ef03262dde.php deleted file mode 100644 index 4af7879..0000000 --- a/var/cache/phpstan/cache/PHPStan/85/53/8553a332f201c19fd4fe33df1acc90ef03262dde.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => true, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/85/63/85638860c0817504cb524d1f782213b81301907c.php b/var/cache/phpstan/cache/PHPStan/85/63/85638860c0817504cb524d1f782213b81301907c.php deleted file mode 100644 index a956d2d..0000000 --- a/var/cache/phpstan/cache/PHPStan/85/63/85638860c0817504cb524d1f782213b81301907c.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179076-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/85/7d/857d1297c0f921cc4f509288d2451ee6a73163be.php b/var/cache/phpstan/cache/PHPStan/85/7d/857d1297c0f921cc4f509288d2451ee6a73163be.php deleted file mode 100644 index 2182679..0000000 --- a/var/cache/phpstan/cache/PHPStan/85/7d/857d1297c0f921cc4f509288d2451ee6a73163be.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764084145-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/85/a3/85a3b9b7f12428f7accf6346f42265da36f8db0c.php b/var/cache/phpstan/cache/PHPStan/85/a3/85a3b9b7f12428f7accf6346f42265da36f8db0c.php deleted file mode 100644 index 5147256..0000000 --- a/var/cache/phpstan/cache/PHPStan/85/a3/85a3b9b7f12428f7accf6346f42265da36f8db0c.php +++ /dev/null @@ -1,2252 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Data/ProcessedPathCoverageData.php' => - array ( - 0 => '02b108a0e727a070c096fe54de178f655164774f', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\data\\processedpathcoveragedata', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\data\\fromxdebugcoverage', - 1 => 'sebastianbergmann\\codecoverage\\data\\__construct', - 2 => 'sebastianbergmann\\codecoverage\\data\\merge', - 3 => 'sebastianbergmann\\codecoverage\\data\\recordhit', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Data/ProcessedClassType.php' => - array ( - 0 => '087dd2d27f92c73d755a222bad6b3236a308df31', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\data\\processedclasstype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\data\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Data/ProcessedTraitType.php' => - array ( - 0 => '6c36133a607063713db0ade6a34146991fa93238', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\data\\processedtraittype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\data\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Data/ProcessedFunctionCoverageData.php' => - array ( - 0 => 'ea0aa35f58ae27d8a2ffcc7f90c14a66612368cf', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\data\\processedfunctioncoveragedata', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\data\\fromxdebugcoverage', - 1 => 'sebastianbergmann\\codecoverage\\data\\__construct', - 2 => 'sebastianbergmann\\codecoverage\\data\\merge', - 3 => 'sebastianbergmann\\codecoverage\\data\\recordbranchhit', - 4 => 'sebastianbergmann\\codecoverage\\data\\recordpathhit', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Data/ProcessedFunctionType.php' => - array ( - 0 => '6b8971dfe845529e34820fb93f56f3e122b8fc6b', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\data\\processedfunctiontype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\data\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Data/ProcessedMethodType.php' => - array ( - 0 => 'e94844a28dd53349513dee3fbdbf6f3b9ba53cee', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\data\\processedmethodtype', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\data\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Data/ProcessedCodeCoverageData.php' => - array ( - 0 => 'd94f7bd6c40328876669e1d091d332b8985d6326', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Data/ProcessedBranchCoverageData.php' => - array ( - 0 => 'df341cce82511aa21b555f02d0f4170533f69758', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\data\\processedbranchcoveragedata', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\data\\fromxdebugcoverage', - 1 => 'sebastianbergmann\\codecoverage\\data\\__construct', - 2 => 'sebastianbergmann\\codecoverage\\data\\merge', - 3 => 'sebastianbergmann\\codecoverage\\data\\recordhit', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Data/RawCodeCoverageData.php' => - array ( - 0 => '7bef55dc170987ecf9a351c35d3e5d32759d0c7a', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Exception/DirectoryCouldNotBeCreatedException.php' => - array ( - 0 => 'a8ee1d68bf7129412dc749bd67956f89029e9b86', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\util\\directorycouldnotbecreatedexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Exception/BranchAndPathCoverageNotSupportedException.php' => - array ( - 0 => '4d97113dfd5fc7061a8d54e823f595a0dd4e825d', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\branchandpathcoveragenotsupportedexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Exception/PathExistsButIsNotDirectoryException.php' => - array ( - 0 => 'f9021c14156871f14e974ec7c46cdf835147b56d', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\pathexistsbutisnotdirectoryexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Exception/InvalidCodeCoverageTargetException.php' => - array ( - 0 => '4bc9693e44d2b4d635abae0a2fbb1983d537a8e4', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\invalidcodecoveragetargetexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Exception/Exception.php' => - array ( - 0 => '0b964ff4c340596e66d278d1f225f966e2fb1dbd', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Exception/StaticAnalysisCacheNotConfiguredException.php' => - array ( - 0 => '5171f525858d3dc95c7ab369aea8255cbade747a', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysiscachenotconfiguredexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Exception/ParserException.php' => - array ( - 0 => 'c26409359c3a33b442a381458cca03082850892e', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\parserexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Exception/XmlException.php' => - array ( - 0 => 'db4673016c1cd94a038419baa0712f8ff4dfb569', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\xmlexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Exception/XdebugVersionNotSupportedException.php' => - array ( - 0 => '2078fdce627779d250a589eb35987397682f843f', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\xdebugversionnotsupportedexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Exception/InvalidArgumentException.php' => - array ( - 0 => '24d0d9939b7c3a3d540fd65bf97c771c1b25a0f9', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\invalidargumentexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Exception/FileCouldNotBeWrittenException.php' => - array ( - 0 => '4b4f39d716f64078053d6dcff5803023fffc5426', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\filecouldnotbewrittenexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Exception/ReflectionException.php' => - array ( - 0 => '8ffed9167ee166b937f865ade7c9544115b4701b', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\reflectionexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Exception/WriteOperationFailedException.php' => - array ( - 0 => 'e072622499dd3c5ae3d4c754592958742c67eb3d', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\writeoperationfailedexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/CodeCoverage.php' => - array ( - 0 => '6058c4c786cbe27e4d46e794cf6b5d008a401488', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\codecoverage', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\__serialize', - 2 => 'sebastianbergmann\\codecoverage\\getreport', - 3 => 'sebastianbergmann\\codecoverage\\clear', - 4 => 'sebastianbergmann\\codecoverage\\clearcache', - 5 => 'sebastianbergmann\\codecoverage\\filter', - 6 => 'sebastianbergmann\\codecoverage\\getdata', - 7 => 'sebastianbergmann\\codecoverage\\setdata', - 8 => 'sebastianbergmann\\codecoverage\\gettests', - 9 => 'sebastianbergmann\\codecoverage\\settests', - 10 => 'sebastianbergmann\\codecoverage\\start', - 11 => 'sebastianbergmann\\codecoverage\\stop', - 12 => 'sebastianbergmann\\codecoverage\\append', - 13 => 'sebastianbergmann\\codecoverage\\merge', - 14 => 'sebastianbergmann\\codecoverage\\enablecheckforunintentionallycoveredcode', - 15 => 'sebastianbergmann\\codecoverage\\disablecheckforunintentionallycoveredcode', - 16 => 'sebastianbergmann\\codecoverage\\includeuncoveredfiles', - 17 => 'sebastianbergmann\\codecoverage\\excludeuncoveredfiles', - 18 => 'sebastianbergmann\\codecoverage\\enableannotationsforignoringcode', - 19 => 'sebastianbergmann\\codecoverage\\disableannotationsforignoringcode', - 20 => 'sebastianbergmann\\codecoverage\\ignoredeprecatedcode', - 21 => 'sebastianbergmann\\codecoverage\\donotignoredeprecatedcode', - 22 => 'sebastianbergmann\\codecoverage\\cachesstaticanalysis', - 23 => 'sebastianbergmann\\codecoverage\\cachestaticanalysis', - 24 => 'sebastianbergmann\\codecoverage\\donotcachestaticanalysis', - 25 => 'sebastianbergmann\\codecoverage\\cachedirectory', - 26 => 'sebastianbergmann\\codecoverage\\excludesubclassesofthisclassfromunintentionallycoveredcodecheck', - 27 => 'sebastianbergmann\\codecoverage\\enablebranchandpathcoverage', - 28 => 'sebastianbergmann\\codecoverage\\disablebranchandpathcoverage', - 29 => 'sebastianbergmann\\codecoverage\\collectsbranchandpathcoverage', - 30 => 'sebastianbergmann\\codecoverage\\validate', - 31 => 'sebastianbergmann\\codecoverage\\applycoversandusesfilter', - 32 => 'sebastianbergmann\\codecoverage\\applyfilter', - 33 => 'sebastianbergmann\\codecoverage\\applyexecutablelinesfilter', - 34 => 'sebastianbergmann\\codecoverage\\applyignoredlinesfilter', - 35 => 'sebastianbergmann\\codecoverage\\adduncoveredfilesfromfilter', - 36 => 'sebastianbergmann\\codecoverage\\performunintentionallycoveredcodecheck', - 37 => 'sebastianbergmann\\codecoverage\\getallowedlines', - 38 => 'sebastianbergmann\\codecoverage\\processunintentionallycoveredunits', - 39 => 'sebastianbergmann\\codecoverage\\targetmapper', - 40 => 'sebastianbergmann\\codecoverage\\analyser', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Filter.php' => - array ( - 0 => 'dd861e4a19cf532eedcef719b4cb25e14fd82d47', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Util/Percentage.php' => - array ( - 0 => 'e4c802a2109a894e1d7e521a15f98f69a9cc0785', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Util/Filesystem.php' => - array ( - 0 => '8660748047a81a792959295464761430a51f2a87', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\util\\filesystem', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\util\\createdirectory', - 1 => 'sebastianbergmann\\codecoverage\\util\\write', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Util/Xml.php' => - array ( - 0 => '1908479594b37f97ae9cd4d8f22e94cb40b5b994', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\util\\xml', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\util\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Driver/XdebugDriver.php' => - array ( - 0 => 'f6f6dc950de688e024a7aafbe4f408faadc9aed7', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\xdebugdriver', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\driver\\cancollectbranchandpathcoverage', - 2 => 'sebastianbergmann\\codecoverage\\driver\\start', - 3 => 'sebastianbergmann\\codecoverage\\driver\\stop', - 4 => 'sebastianbergmann\\codecoverage\\driver\\nameandversion', - 5 => 'sebastianbergmann\\codecoverage\\driver\\ensurexdebugisavailable', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Driver/Driver.php' => - array ( - 0 => 'd717f9d5f899cc8393679203eba140ab7556058f', - 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\\nameandversion', - 5 => 'sebastianbergmann\\codecoverage\\driver\\start', - 6 => 'sebastianbergmann\\codecoverage\\driver\\stop', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Driver/PcovDriver.php' => - array ( - 0 => '1ff61b643865456e7bbbd99180e2d54f1e56283e', - 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', - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Driver/Selector.php' => - array ( - 0 => '082838ebc5390e73f37513f92894fffd86def6db', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\selector', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\driver\\forlinecoverage', - 1 => 'sebastianbergmann\\codecoverage\\driver\\forlineandpathcoverage', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Target/ClassesThatImplementInterface.php' => - array ( - 0 => 'b20cd6cd1d2a9f638b03806d52364f621111f11d', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\classesthatimplementinterface', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\test\\target\\isclassesthatimplementinterface', - 2 => 'sebastianbergmann\\codecoverage\\test\\target\\interfacename', - 3 => 'sebastianbergmann\\codecoverage\\test\\target\\key', - 4 => 'sebastianbergmann\\codecoverage\\test\\target\\target', - 5 => 'sebastianbergmann\\codecoverage\\test\\target\\description', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Target/Function_.php' => - array ( - 0 => '153e54d29febfb8d6ca79fdf8c62cbad414b5083', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\function_', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\test\\target\\isfunction', - 2 => 'sebastianbergmann\\codecoverage\\test\\target\\functionname', - 3 => 'sebastianbergmann\\codecoverage\\test\\target\\key', - 4 => 'sebastianbergmann\\codecoverage\\test\\target\\target', - 5 => 'sebastianbergmann\\codecoverage\\test\\target\\description', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Target/ValidationResult.php' => - array ( - 0 => 'b9523c80b275fc8c234d2ecd77620d50e41bc601', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\validationresult', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\success', - 1 => 'sebastianbergmann\\codecoverage\\test\\target\\failure', - 2 => 'sebastianbergmann\\codecoverage\\test\\target\\issuccess', - 3 => 'sebastianbergmann\\codecoverage\\test\\target\\isfailure', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Target/Method.php' => - array ( - 0 => 'c8624d8353071f4041d3987ecae122ce48993a35', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\method', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\test\\target\\ismethod', - 2 => 'sebastianbergmann\\codecoverage\\test\\target\\classname', - 3 => 'sebastianbergmann\\codecoverage\\test\\target\\methodname', - 4 => 'sebastianbergmann\\codecoverage\\test\\target\\key', - 5 => 'sebastianbergmann\\codecoverage\\test\\target\\target', - 6 => 'sebastianbergmann\\codecoverage\\test\\target\\description', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Target/Class_.php' => - array ( - 0 => '1ca6728ad5614c7d0f0cfa89f3b4191ac172831e', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\class_', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\test\\target\\isclass', - 2 => 'sebastianbergmann\\codecoverage\\test\\target\\classname', - 3 => 'sebastianbergmann\\codecoverage\\test\\target\\key', - 4 => 'sebastianbergmann\\codecoverage\\test\\target\\target', - 5 => 'sebastianbergmann\\codecoverage\\test\\target\\description', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Target/ClassesThatExtendClass.php' => - array ( - 0 => 'c6eb2219abd8f3ff5a9b6b53d71440fc25c9a321', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\classesthatextendclass', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\test\\target\\isclassesthatextendclass', - 2 => 'sebastianbergmann\\codecoverage\\test\\target\\classname', - 3 => 'sebastianbergmann\\codecoverage\\test\\target\\key', - 4 => 'sebastianbergmann\\codecoverage\\test\\target\\target', - 5 => 'sebastianbergmann\\codecoverage\\test\\target\\description', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Target/Namespace_.php' => - array ( - 0 => 'f3c8e8f10e208e7817354e8cd35cff63204cd17a', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\namespace_', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\test\\target\\isnamespace', - 2 => 'sebastianbergmann\\codecoverage\\test\\target\\namespace', - 3 => 'sebastianbergmann\\codecoverage\\test\\target\\key', - 4 => 'sebastianbergmann\\codecoverage\\test\\target\\target', - 5 => 'sebastianbergmann\\codecoverage\\test\\target\\description', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Target/Target.php' => - array ( - 0 => 'cb8dd53c938b36f15e83c2b0a232d1cb2ccc7d48', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\target', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\fornamespace', - 1 => 'sebastianbergmann\\codecoverage\\test\\target\\forclass', - 2 => 'sebastianbergmann\\codecoverage\\test\\target\\formethod', - 3 => 'sebastianbergmann\\codecoverage\\test\\target\\forclassesthatimplementinterface', - 4 => 'sebastianbergmann\\codecoverage\\test\\target\\forclassesthatextendclass', - 5 => 'sebastianbergmann\\codecoverage\\test\\target\\forfunction', - 6 => 'sebastianbergmann\\codecoverage\\test\\target\\fortrait', - 7 => 'sebastianbergmann\\codecoverage\\test\\target\\isnamespace', - 8 => 'sebastianbergmann\\codecoverage\\test\\target\\isclass', - 9 => 'sebastianbergmann\\codecoverage\\test\\target\\ismethod', - 10 => 'sebastianbergmann\\codecoverage\\test\\target\\isclassesthatimplementinterface', - 11 => 'sebastianbergmann\\codecoverage\\test\\target\\isclassesthatextendclass', - 12 => 'sebastianbergmann\\codecoverage\\test\\target\\isfunction', - 13 => 'sebastianbergmann\\codecoverage\\test\\target\\istrait', - 14 => 'sebastianbergmann\\codecoverage\\test\\target\\key', - 15 => 'sebastianbergmann\\codecoverage\\test\\target\\target', - 16 => 'sebastianbergmann\\codecoverage\\test\\target\\description', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Target/ValidationFailure.php' => - array ( - 0 => '0b7096642e26134913609a80fa2c72eecfe943ee', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\validationfailure', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\test\\target\\isfailure', - 2 => 'sebastianbergmann\\codecoverage\\test\\target\\message', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Target/TargetCollectionIterator.php' => - array ( - 0 => 'ec8978d0942ebf5d028e19644a3eeff8b11bd2ee', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\targetcollectioniterator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\test\\target\\rewind', - 2 => 'sebastianbergmann\\codecoverage\\test\\target\\valid', - 3 => 'sebastianbergmann\\codecoverage\\test\\target\\key', - 4 => 'sebastianbergmann\\codecoverage\\test\\target\\current', - 5 => 'sebastianbergmann\\codecoverage\\test\\target\\next', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Target/TargetCollection.php' => - array ( - 0 => '810fce8a5a5df83a0bf59ce2123a8d8a15f70498', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\targetcollection', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\fromarray', - 1 => 'sebastianbergmann\\codecoverage\\test\\target\\__construct', - 2 => 'sebastianbergmann\\codecoverage\\test\\target\\asarray', - 3 => 'sebastianbergmann\\codecoverage\\test\\target\\count', - 4 => 'sebastianbergmann\\codecoverage\\test\\target\\isempty', - 5 => 'sebastianbergmann\\codecoverage\\test\\target\\isnotempty', - 6 => 'sebastianbergmann\\codecoverage\\test\\target\\getiterator', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Target/TargetCollectionValidator.php' => - array ( - 0 => 'efa0743627a8c6ef547c9c6ca1a6e194835ff976', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\targetcollectionvalidator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\validate', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Target/MapBuilder.php' => - array ( - 0 => 'cc2cc29d477c553ee7541733175122e37b77b530', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\mapbuilder', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\build', - 1 => 'sebastianbergmann\\codecoverage\\test\\target\\mergelines', - 2 => 'sebastianbergmann\\codecoverage\\test\\target\\processmethods', - 3 => 'sebastianbergmann\\codecoverage\\test\\target\\processnamespace', - 4 => 'sebastianbergmann\\codecoverage\\test\\target\\process', - 5 => 'sebastianbergmann\\codecoverage\\test\\target\\parentclasses', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Target/ValidationSuccess.php' => - array ( - 0 => '795c1b1aaf1957e7597dab765c1f04aad660de40', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\validationsuccess', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\issuccess', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Target/Trait_.php' => - array ( - 0 => '5d9fa51c95cbca96397feecd5fb27eca8f826a84', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\trait_', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\test\\target\\istrait', - 2 => 'sebastianbergmann\\codecoverage\\test\\target\\traitname', - 3 => 'sebastianbergmann\\codecoverage\\test\\target\\key', - 4 => 'sebastianbergmann\\codecoverage\\test\\target\\target', - 5 => 'sebastianbergmann\\codecoverage\\test\\target\\description', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Target/Mapper.php' => - array ( - 0 => '4f27768310268b2a28ec28f983b335b29728bc6d', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\mapper', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\test\\target\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\test\\target\\maptargets', - 2 => 'sebastianbergmann\\codecoverage\\test\\target\\maptarget', - 3 => 'sebastianbergmann\\codecoverage\\test\\target\\lookup', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Node/File.php' => - array ( - 0 => '0ada5abc6b6852cd3ec1b87f679971a126d21a64', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\node\\file', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\node\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\node\\count', - 2 => 'sebastianbergmann\\codecoverage\\node\\sha1', - 3 => 'sebastianbergmann\\codecoverage\\node\\linecoveragedata', - 4 => 'sebastianbergmann\\codecoverage\\node\\functioncoveragedata', - 5 => 'sebastianbergmann\\codecoverage\\node\\testdata', - 6 => 'sebastianbergmann\\codecoverage\\node\\classes', - 7 => 'sebastianbergmann\\codecoverage\\node\\traits', - 8 => 'sebastianbergmann\\codecoverage\\node\\functions', - 9 => 'sebastianbergmann\\codecoverage\\node\\linesofcode', - 10 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablelines', - 11 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedlines', - 12 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablebranches', - 13 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedbranches', - 14 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablepaths', - 15 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedpaths', - 16 => 'sebastianbergmann\\codecoverage\\node\\numberofclasses', - 17 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedclasses', - 18 => 'sebastianbergmann\\codecoverage\\node\\numberoftraits', - 19 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedtraits', - 20 => 'sebastianbergmann\\codecoverage\\node\\numberofmethods', - 21 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedmethods', - 22 => 'sebastianbergmann\\codecoverage\\node\\numberoffunctions', - 23 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedfunctions', - 24 => 'sebastianbergmann\\codecoverage\\node\\calculatestatistics', - 25 => 'sebastianbergmann\\codecoverage\\node\\processclasses', - 26 => 'sebastianbergmann\\codecoverage\\node\\processtraits', - 27 => 'sebastianbergmann\\codecoverage\\node\\processfunctions', - 28 => 'sebastianbergmann\\codecoverage\\node\\newmethod', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Node/Builder.php' => - array ( - 0 => '5ce83225b4533225e1ccb87685e83ae85789ce7c', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Node/CrapIndex.php' => - array ( - 0 => '69d23d38f9b4e263bf927e2c50f6976ea65fece4', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\node\\crapindex', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\node\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\node\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Node/AbstractNode.php' => - array ( - 0 => 'fcf1c112590e3eea299460d9de0aee17f7fc4a8e', - 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\\cyclomaticcomplexity', - 21 => 'sebastianbergmann\\codecoverage\\node\\classes', - 22 => 'sebastianbergmann\\codecoverage\\node\\traits', - 23 => 'sebastianbergmann\\codecoverage\\node\\functions', - 24 => 'sebastianbergmann\\codecoverage\\node\\linesofcode', - 25 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablelines', - 26 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedlines', - 27 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablebranches', - 28 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedbranches', - 29 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutablepaths', - 30 => 'sebastianbergmann\\codecoverage\\node\\numberofexecutedpaths', - 31 => 'sebastianbergmann\\codecoverage\\node\\numberofclasses', - 32 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedclasses', - 33 => 'sebastianbergmann\\codecoverage\\node\\numberoftraits', - 34 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedtraits', - 35 => 'sebastianbergmann\\codecoverage\\node\\numberofmethods', - 36 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedmethods', - 37 => 'sebastianbergmann\\codecoverage\\node\\numberoffunctions', - 38 => 'sebastianbergmann\\codecoverage\\node\\numberoftestedfunctions', - 39 => 'sebastianbergmann\\codecoverage\\node\\processid', - 40 => 'sebastianbergmann\\codecoverage\\node\\processpath', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Node/Directory.php' => - array ( - 0 => '9e76f82f1afd064730935bca9f642c54a8de2826', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Node/Iterator.php' => - array ( - 0 => '8e2c1cc1a7183fcf65578a829cb8ae06f9cc4561', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Version.php' => - array ( - 0 => '6932a3a29f6c21d78a799655c6da544326e6aca6', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\version', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\id', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Xml/Unit.php' => - array ( - 0 => 'e20c16c9fefb83fdf2598a70a13d7d2456bfbc66', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\unit', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\addmethod', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Xml/File.php' => - array ( - 0 => 'e8fd547bb2d0998ff5b9012ddb902dcbdb8f6fb8', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\file', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\getwriter', - 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\totals', - 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\linecoverage', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Xml/Method.php' => - array ( - 0 => '4bfecc8d10ff30c30f54e4df80444fb92365b746', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\method', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Xml/Report.php' => - array ( - 0 => '77c1621ed9ed3184230536bd2c8fc10f4ab2d096', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\report', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\finalize', - 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\functionobject', - 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\classobject', - 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\traitobject', - 5 => 'sebastianbergmann\\codecoverage\\report\\xml\\source', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Xml/Facade.php' => - array ( - 0 => '1a9a72cefd742356172df006344bba951db6a649', - 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\\targetfilepath', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Xml/Tests.php' => - array ( - 0 => 'f42ae508b844754d41eb16b72ee5bec42254e30d', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\tests', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\addtest', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Xml/Node.php' => - array ( - 0 => '780b6693cc4829069a4d1ad1063bd00413662345', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\node', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\totals', - 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\adddirectory', - 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\addfile', - 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\getwriter', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Xml/Source.php' => - array ( - 0 => 'a6656f80cc781632deac6ef5835730b7fd6a81e3', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\source', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\setsourcecode', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Xml/BuildInformation.php' => - array ( - 0 => '1de59e1e74feaa9ebb962209817cc885aa333fab', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\buildinformation', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Xml/Project.php' => - array ( - 0 => '21da5e18c97445b0b9345970a0ecb71ddc4a7fe9', - 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\\getwriter', - 5 => 'sebastianbergmann\\codecoverage\\report\\xml\\startproject', - 6 => 'sebastianbergmann\\codecoverage\\report\\xml\\finalize', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Xml/Totals.php' => - array ( - 0 => '7fc520ba6c013a7e7b91b2f3adce444e398037ea', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\totals', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\setnumlines', - 2 => 'sebastianbergmann\\codecoverage\\report\\xml\\setnumclasses', - 3 => 'sebastianbergmann\\codecoverage\\report\\xml\\setnumtraits', - 4 => 'sebastianbergmann\\codecoverage\\report\\xml\\setnummethods', - 5 => 'sebastianbergmann\\codecoverage\\report\\xml\\setnumfunctions', - 6 => 'sebastianbergmann\\codecoverage\\report\\xml\\getwriter', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Xml/Coverage.php' => - array ( - 0 => '68212dbeabe0bb2f2a9f7eeb6f0b006045f18385', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\coverage', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\xml\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\report\\xml\\finalize', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Cobertura.php' => - array ( - 0 => 'bc27b29402b346a5c914b03d02c069e7fb7c4c5a', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\cobertura', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\process', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Text.php' => - array ( - 0 => '2f77a57c8c83f3ec66175fcbf55492d2f531f94c', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Html/Facade.php' => - array ( - 0 => '7ff099e21a78d8b86c52a46425313f3bd1168e90', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/File.php' => - array ( - 0 => '8742621855c24b2c617132d384fea6fa8f95ed5f', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Dashboard.php' => - array ( - 0 => '5e5cd05a15b1040da23f129058fc45ccae565c05', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Html/CustomCssFile.php' => - array ( - 0 => '30d640a4c76c35552152bebbb2a8e6b795d6a8a8', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Html/Colors.php' => - array ( - 0 => '3d24858a612344ded02fd51d7f9013749235ddc3', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer.php' => - array ( - 0 => 'd338d9e9202efea5d5a04bb8b0a8d72e57a49228', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/OpenClover.php' => - array ( - 0 => '9b2104f0260095da5ba7028efe6dfb608836189b', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\openclover', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\process', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Clover.php' => - array ( - 0 => '07fbb0fb2ef783e2213b05cc6f4be7b542236f5e', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\clover', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\process', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Thresholds.php' => - array ( - 0 => 'c07677de79900394495eba5a7f82f32882a2234c', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/Crap4j.php' => - array ( - 0 => '22f77216a35ecd5fd7af4e05dcf1567515b31138', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/Report/PHP.php' => - array ( - 0 => 'def30cd5fc74c84969a689f1ae85e5415b831fb6', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\php', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\report\\process', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/StaticAnalysis/Value/Visibility.php' => - array ( - 0 => '33ea211b25c9806590bd98357bea7ee9471d0f69', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\visibility', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/StaticAnalysis/Value/Function_.php' => - array ( - 0 => '57dec976e138beb540885c090beb3238938357d3', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\function_', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\name', - 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\namespacedname', - 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\isnamespaced', - 4 => 'sebastianbergmann\\codecoverage\\staticanalysis\\namespace', - 5 => 'sebastianbergmann\\codecoverage\\staticanalysis\\startline', - 6 => 'sebastianbergmann\\codecoverage\\staticanalysis\\endline', - 7 => 'sebastianbergmann\\codecoverage\\staticanalysis\\signature', - 8 => 'sebastianbergmann\\codecoverage\\staticanalysis\\cyclomaticcomplexity', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/StaticAnalysis/Value/Method.php' => - array ( - 0 => '0c6c1d51178dd373cc08891d2714c70c504f259d', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\method', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\name', - 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\startline', - 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\endline', - 4 => 'sebastianbergmann\\codecoverage\\staticanalysis\\signature', - 5 => 'sebastianbergmann\\codecoverage\\staticanalysis\\visibility', - 6 => 'sebastianbergmann\\codecoverage\\staticanalysis\\cyclomaticcomplexity', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/StaticAnalysis/Value/Class_.php' => - array ( - 0 => 'c4162f45946763448df7fcd9fbdf16caed67ddc2', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\class_', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\name', - 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\namespacedname', - 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\isnamespaced', - 4 => 'sebastianbergmann\\codecoverage\\staticanalysis\\namespace', - 5 => 'sebastianbergmann\\codecoverage\\staticanalysis\\file', - 6 => 'sebastianbergmann\\codecoverage\\staticanalysis\\startline', - 7 => 'sebastianbergmann\\codecoverage\\staticanalysis\\endline', - 8 => 'sebastianbergmann\\codecoverage\\staticanalysis\\hasparent', - 9 => 'sebastianbergmann\\codecoverage\\staticanalysis\\parentclass', - 10 => 'sebastianbergmann\\codecoverage\\staticanalysis\\interfaces', - 11 => 'sebastianbergmann\\codecoverage\\staticanalysis\\traits', - 12 => 'sebastianbergmann\\codecoverage\\staticanalysis\\methods', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/StaticAnalysis/Value/LinesOfCode.php' => - array ( - 0 => '8472c3c28ddc55da7fffb2a10b05c26ecbfb98a5', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\linesofcode', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\linesofcode', - 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\commentlinesofcode', - 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\noncommentlinesofcode', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/StaticAnalysis/Value/Interface_.php' => - array ( - 0 => '9d26d89239cd57d462de91dcb9999d2535e73f4e', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\interface_', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\name', - 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\namespacedname', - 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\isnamespaced', - 4 => 'sebastianbergmann\\codecoverage\\staticanalysis\\namespace', - 5 => 'sebastianbergmann\\codecoverage\\staticanalysis\\startline', - 6 => 'sebastianbergmann\\codecoverage\\staticanalysis\\endline', - 7 => 'sebastianbergmann\\codecoverage\\staticanalysis\\parentinterfaces', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/StaticAnalysis/Value/AnalysisResult.php' => - array ( - 0 => '0252d34967d0018753fdad16ad5459f5902ff616', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\analysisresult', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\interfaces', - 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\classes', - 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\traits', - 4 => 'sebastianbergmann\\codecoverage\\staticanalysis\\functions', - 5 => 'sebastianbergmann\\codecoverage\\staticanalysis\\linesofcode', - 6 => 'sebastianbergmann\\codecoverage\\staticanalysis\\executablelines', - 7 => 'sebastianbergmann\\codecoverage\\staticanalysis\\ignoredlines', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/StaticAnalysis/Value/Trait_.php' => - array ( - 0 => 'd1ec0ce4dc3f14a28f521d4283b3beb3e35f6889', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\trait_', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\name', - 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\namespacedname', - 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\isnamespaced', - 4 => 'sebastianbergmann\\codecoverage\\staticanalysis\\namespace', - 5 => 'sebastianbergmann\\codecoverage\\staticanalysis\\file', - 6 => 'sebastianbergmann\\codecoverage\\staticanalysis\\startline', - 7 => 'sebastianbergmann\\codecoverage\\staticanalysis\\endline', - 8 => 'sebastianbergmann\\codecoverage\\staticanalysis\\traits', - 9 => 'sebastianbergmann\\codecoverage\\staticanalysis\\methods', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/StaticAnalysis/SourceAnalyser.php' => - array ( - 0 => '1e6791fd551a68c74421dfecba986920bd1003c3', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\sourceanalyser', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\analyse', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/StaticAnalysis/Visitor/IgnoredLinesFindingVisitor.php' => - array ( - 0 => '693f9a95ab85d262db628621476710d20d02b6b9', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/StaticAnalysis/Visitor/AttributeParentConnectingVisitor.php' => - array ( - 0 => '341ca86810d38f52dd880efc8d49cfc9f8183e9e', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\attributeparentconnectingvisitor', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\beforetraverse', - 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\enternode', - 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\leavenode', - 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\aftertraverse', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/StaticAnalysis/Visitor/ExecutableLinesFindingVisitor.php' => - array ( - 0 => '0cf1cf01c628a3899dbf22e72d15a198bf4b1b2f', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/StaticAnalysis/Visitor/CodeUnitFindingVisitor.php' => - array ( - 0 => 'ee03a578afb871a5965a937bcef3e5c161a32535', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\codeunitfindingvisitor', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\enternode', - 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\leavenode', - 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\interfaces', - 4 => 'sebastianbergmann\\codecoverage\\staticanalysis\\classes', - 5 => 'sebastianbergmann\\codecoverage\\staticanalysis\\traits', - 6 => 'sebastianbergmann\\codecoverage\\staticanalysis\\functions', - 7 => 'sebastianbergmann\\codecoverage\\staticanalysis\\cyclomaticcomplexity', - 8 => 'sebastianbergmann\\codecoverage\\staticanalysis\\signature', - 9 => 'sebastianbergmann\\codecoverage\\staticanalysis\\type', - 10 => 'sebastianbergmann\\codecoverage\\staticanalysis\\visibility', - 11 => 'sebastianbergmann\\codecoverage\\staticanalysis\\processinterface', - 12 => 'sebastianbergmann\\codecoverage\\staticanalysis\\processclass', - 13 => 'sebastianbergmann\\codecoverage\\staticanalysis\\processtrait', - 14 => 'sebastianbergmann\\codecoverage\\staticanalysis\\processmethods', - 15 => 'sebastianbergmann\\codecoverage\\staticanalysis\\processfunction', - 16 => 'sebastianbergmann\\codecoverage\\staticanalysis\\namespace', - 17 => 'sebastianbergmann\\codecoverage\\staticanalysis\\uniontypeasstring', - 18 => 'sebastianbergmann\\codecoverage\\staticanalysis\\intersectiontypeasstring', - 19 => 'sebastianbergmann\\codecoverage\\staticanalysis\\typeasstring', - 20 => 'sebastianbergmann\\codecoverage\\staticanalysis\\postprocessclassortrait', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/StaticAnalysis/ParsingSourceAnalyser.php' => - array ( - 0 => 'f571f42fdcdafc7887ee5054430a6999e61eba0e', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\parsingsourceanalyser', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\analyse', - 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\findlinesignoredbylinebasedannotations', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/StaticAnalysis/FileAnalyser.php' => - array ( - 0 => '11704487ddf051f4e4248748e1ca9f04b9878f19', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\fileanalyser', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\analyse', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/StaticAnalysis/CacheWarmer.php' => - array ( - 0 => '2e510c82d41e8bf36eae055de0581c90249162e3', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\cachewarmer', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\warmcache', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-code-coverage/src/StaticAnalysis/CachingSourceAnalyser.php' => - array ( - 0 => '52b7fee539a076b6a57f12ba06e80e0e3bfd0d53', - 1 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\cachingsourceanalyser', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\codecoverage\\staticanalysis\\__construct', - 1 => 'sebastianbergmann\\codecoverage\\staticanalysis\\analyse', - 2 => 'sebastianbergmann\\codecoverage\\staticanalysis\\cachehits', - 3 => 'sebastianbergmann\\codecoverage\\staticanalysis\\cachemisses', - 4 => 'sebastianbergmann\\codecoverage\\staticanalysis\\read', - 5 => 'sebastianbergmann\\codecoverage\\staticanalysis\\write', - 6 => 'sebastianbergmann\\codecoverage\\staticanalysis\\cachefile', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/85/b7/85b78129b11a702c1812942c0abd96396f79865b.php b/var/cache/phpstan/cache/PHPStan/85/b7/85b78129b11a702c1812942c0abd96396f79865b.php deleted file mode 100644 index 71f3953..0000000 --- a/var/cache/phpstan/cache/PHPStan/85/b7/85b78129b11a702c1812942c0abd96396f79865b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694927-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/87/47/8747b724e15feabdfd024213c01f760924a2e4f6.php b/var/cache/phpstan/cache/PHPStan/87/47/8747b724e15feabdfd024213c01f760924a2e4f6.php deleted file mode 100644 index a2c32bf..0000000 --- a/var/cache/phpstan/cache/PHPStan/87/47/8747b724e15feabdfd024213c01f760924a2e4f6.php +++ /dev/null @@ -1,7 +0,0 @@ - '1763674952-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/87/ca/87ca1cd9415d9312cba03a1ab5b8c1c829b14613.php b/var/cache/phpstan/cache/PHPStan/87/ca/87ca1cd9415d9312cba03a1ab5b8c1c829b14613.php deleted file mode 100644 index ee0d29e..0000000 --- a/var/cache/phpstan/cache/PHPStan/87/ca/87ca1cd9415d9312cba03a1ab5b8c1c829b14613.php +++ /dev/null @@ -1,7 +0,0 @@ - '1680602091-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/89/ab/89aba787e2baa25afb9359172894391fb5b8cd0f.php b/var/cache/phpstan/cache/PHPStan/89/ab/89aba787e2baa25afb9359172894391fb5b8cd0f.php deleted file mode 100644 index a68c03e..0000000 --- a/var/cache/phpstan/cache/PHPStan/89/ab/89aba787e2baa25afb9359172894391fb5b8cd0f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1763758372-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/8a/75/8a75212420a233d21b6e12fcc623edf7c4ccb910.php b/var/cache/phpstan/cache/PHPStan/8a/75/8a75212420a233d21b6e12fcc623edf7c4ccb910.php deleted file mode 100644 index 365d4d9..0000000 --- a/var/cache/phpstan/cache/PHPStan/8a/75/8a75212420a233d21b6e12fcc623edf7c4ccb910.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694927-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/8b/2a/8b2a6f96d12ed0640a1cd319b6f5aa0dc47aaacf.php b/var/cache/phpstan/cache/PHPStan/8b/2a/8b2a6f96d12ed0640a1cd319b6f5aa0dc47aaacf.php deleted file mode 100644 index 80e788d..0000000 --- a/var/cache/phpstan/cache/PHPStan/8b/2a/8b2a6f96d12ed0640a1cd319b6f5aa0dc47aaacf.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/8b/e8/8be8c1c0e3f871a9c2a9e9012b83017027584806.php b/var/cache/phpstan/cache/PHPStan/8b/e8/8be8c1c0e3f871a9c2a9e9012b83017027584806.php deleted file mode 100644 index b0d56a0..0000000 --- a/var/cache/phpstan/cache/PHPStan/8b/e8/8be8c1c0e3f871a9c2a9e9012b83017027584806.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/8b/ed/8bed1de26c3e8220bca750ccd9265fca2254419b.php b/var/cache/phpstan/cache/PHPStan/8b/ed/8bed1de26c3e8220bca750ccd9265fca2254419b.php deleted file mode 100644 index 819f0a6..0000000 --- a/var/cache/phpstan/cache/PHPStan/8b/ed/8bed1de26c3e8220bca750ccd9265fca2254419b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/8c/6a/8c6affe5ec617d96cb4790f847911572ca25fab1.php b/var/cache/phpstan/cache/PHPStan/8c/6a/8c6affe5ec617d96cb4790f847911572ca25fab1.php deleted file mode 100644 index d2fe186..0000000 --- a/var/cache/phpstan/cache/PHPStan/8c/6a/8c6affe5ec617d96cb4790f847911572ca25fab1.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768835655-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/8c/df/8cdfb09425cf96bb5afa4a229d59c10d924ee734.php b/var/cache/phpstan/cache/PHPStan/8c/df/8cdfb09425cf96bb5afa4a229d59c10d924ee734.php deleted file mode 100644 index 21a7d70..0000000 --- a/var/cache/phpstan/cache/PHPStan/8c/df/8cdfb09425cf96bb5afa4a229d59c10d924ee734.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179077-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/8d/33/8d338cccb705d8bf89b49837214af9a93f8ff7bc.php b/var/cache/phpstan/cache/PHPStan/8d/33/8d338cccb705d8bf89b49837214af9a93f8ff7bc.php deleted file mode 100644 index 48b1c5b..0000000 --- a/var/cache/phpstan/cache/PHPStan/8d/33/8d338cccb705d8bf89b49837214af9a93f8ff7bc.php +++ /dev/null @@ -1,23 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/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/var/cache/phpstan/cache/PHPStan/8d/ff/8dffc00eca88aabee9444eaee2ae949ada972749.php b/var/cache/phpstan/cache/PHPStan/8d/ff/8dffc00eca88aabee9444eaee2ae949ada972749.php deleted file mode 100644 index 94342c9..0000000 --- a/var/cache/phpstan/cache/PHPStan/8d/ff/8dffc00eca88aabee9444eaee2ae949ada972749.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179077-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/8e/33/8e33e636c9a2b647653be8d07081dcded335b7e5.php b/var/cache/phpstan/cache/PHPStan/8e/33/8e33e636c9a2b647653be8d07081dcded335b7e5.php deleted file mode 100644 index 9b31f76..0000000 --- a/var/cache/phpstan/cache/PHPStan/8e/33/8e33e636c9a2b647653be8d07081dcded335b7e5.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/8e/98/8e981ddef98619bb79be41d06361e15d33583582.php b/var/cache/phpstan/cache/PHPStan/8e/98/8e981ddef98619bb79be41d06361e15d33583582.php deleted file mode 100644 index a76baa6..0000000 --- a/var/cache/phpstan/cache/PHPStan/8e/98/8e981ddef98619bb79be41d06361e15d33583582.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179077-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/91/35/9135e5c42d9cbdecbce5d38f3c32a71d64d90d97.php b/var/cache/phpstan/cache/PHPStan/91/35/9135e5c42d9cbdecbce5d38f3c32a71d64d90d97.php deleted file mode 100644 index 3f227d4..0000000 --- a/var/cache/phpstan/cache/PHPStan/91/35/9135e5c42d9cbdecbce5d38f3c32a71d64d90d97.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/91/aa/91aa9530804ce12f7047ab43b3b36d2f49a75e77.php b/var/cache/phpstan/cache/PHPStan/91/aa/91aa9530804ce12f7047ab43b3b36d2f49a75e77.php deleted file mode 100644 index db95f09..0000000 --- a/var/cache/phpstan/cache/PHPStan/91/aa/91aa9530804ce12f7047ab43b3b36d2f49a75e77.php +++ /dev/null @@ -1,7 +0,0 @@ - '1763606099-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/93/ba/93ba204678b5604cdac16fd6b63d2f3a9c14495e.php b/var/cache/phpstan/cache/PHPStan/93/ba/93ba204678b5604cdac16fd6b63d2f3a9c14495e.php deleted file mode 100644 index 493011f..0000000 --- a/var/cache/phpstan/cache/PHPStan/93/ba/93ba204678b5604cdac16fd6b63d2f3a9c14495e.php +++ /dev/null @@ -1,7 +0,0 @@ - '1755988561-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/93/d1/93d16ffe7b56246288483b35eedc741901fdf033.php b/var/cache/phpstan/cache/PHPStan/93/d1/93d16ffe7b56246288483b35eedc741901fdf033.php deleted file mode 100644 index 4e6d715..0000000 --- a/var/cache/phpstan/cache/PHPStan/93/d1/93d16ffe7b56246288483b35eedc741901fdf033.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764282503-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/93/da/93dab693513c335b19f817b70b7b8a140e03a099.php b/var/cache/phpstan/cache/PHPStan/93/da/93dab693513c335b19f817b70b7b8a140e03a099.php deleted file mode 100644 index 799f966..0000000 --- a/var/cache/phpstan/cache/PHPStan/93/da/93dab693513c335b19f817b70b7b8a140e03a099.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/94/a1/94a188625ef144b1de4852f4cd49731ff6c650a6.php b/var/cache/phpstan/cache/PHPStan/94/a1/94a188625ef144b1de4852f4cd49731ff6c650a6.php deleted file mode 100644 index 40586e8..0000000 --- a/var/cache/phpstan/cache/PHPStan/94/a1/94a188625ef144b1de4852f4cd49731ff6c650a6.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/95/06/9506b8a3834eaf6abc6017e8c66609a1147cdb8f.php b/var/cache/phpstan/cache/PHPStan/95/06/9506b8a3834eaf6abc6017e8c66609a1147cdb8f.php deleted file mode 100644 index a8eea75..0000000 --- a/var/cache/phpstan/cache/PHPStan/95/06/9506b8a3834eaf6abc6017e8c66609a1147cdb8f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/95/14/951425f02cdda5cb034edea054d051fbcaad6a1c.php b/var/cache/phpstan/cache/PHPStan/95/14/951425f02cdda5cb034edea054d051fbcaad6a1c.php deleted file mode 100644 index 02e11e0..0000000 --- a/var/cache/phpstan/cache/PHPStan/95/14/951425f02cdda5cb034edea054d051fbcaad6a1c.php +++ /dev/null @@ -1,101 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/sebastian/cli-parser/src/Parser.php' => - array ( - 0 => 'b3499e4d1af04c38461fa10948ba0b66da23ba1d', - 1 => - array ( - 0 => 'sebastianbergmann\\cliparser\\parser', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\cliparser\\parse', - 1 => 'sebastianbergmann\\cliparser\\parseshortoption', - 2 => 'sebastianbergmann\\cliparser\\parselongoption', - 3 => 'sebastianbergmann\\cliparser\\formatsimilaroptions', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/cli-parser/src/exceptions/UnknownOptionException.php' => - array ( - 0 => '64e569c79b86796141894d724e38f32b22e518e9', - 1 => - array ( - 0 => 'sebastianbergmann\\cliparser\\unknownoptionexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\cliparser\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/cli-parser/src/exceptions/Exception.php' => - array ( - 0 => '9f4eed104c2dff7495ead0ec11c708ab090e9cef', - 1 => - array ( - 0 => 'sebastianbergmann\\cliparser\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/cli-parser/src/exceptions/AmbiguousOptionException.php' => - array ( - 0 => '961090451811f97125a0687afd7c122b71fc81cd', - 1 => - array ( - 0 => 'sebastianbergmann\\cliparser\\ambiguousoptionexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\cliparser\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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/var/cache/phpstan/cache/PHPStan/95/3a/953a2270c4ff0ddda2cfa06545151aeca5a10100.php b/var/cache/phpstan/cache/PHPStan/95/3a/953a2270c4ff0ddda2cfa06545151aeca5a10100.php deleted file mode 100644 index 44d80f3..0000000 --- a/var/cache/phpstan/cache/PHPStan/95/3a/953a2270c4ff0ddda2cfa06545151aeca5a10100.php +++ /dev/null @@ -1,7 +0,0 @@ - '1763674952-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/97/74/977432195431d831bc106467355af26d5d7a01db.php b/var/cache/phpstan/cache/PHPStan/97/74/977432195431d831bc106467355af26d5d7a01db.php deleted file mode 100644 index 5faac66..0000000 --- a/var/cache/phpstan/cache/PHPStan/97/74/977432195431d831bc106467355af26d5d7a01db.php +++ /dev/null @@ -1,7 +0,0 @@ - '1763758372-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/97/bf/97bf58694d83b84fd032d3e0c655c0cd9df82574.php b/var/cache/phpstan/cache/PHPStan/97/bf/97bf58694d83b84fd032d3e0c655c0cd9df82574.php deleted file mode 100644 index 9d32309..0000000 --- a/var/cache/phpstan/cache/PHPStan/97/bf/97bf58694d83b84fd032d3e0c655c0cd9df82574.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768835655-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/98/04/9804c6c687a6c1d5c4ea59355408752553fb5464.php b/var/cache/phpstan/cache/PHPStan/98/04/9804c6c687a6c1d5c4ea59355408752553fb5464.php deleted file mode 100644 index a557b95..0000000 --- a/var/cache/phpstan/cache/PHPStan/98/04/9804c6c687a6c1d5c4ea59355408752553fb5464.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694927-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/98/45/9845a568e64ab4aa58281c9896c9079c7403d92a.php b/var/cache/phpstan/cache/PHPStan/98/45/9845a568e64ab4aa58281c9896c9079c7403d92a.php deleted file mode 100644 index 2f3c5f4..0000000 --- a/var/cache/phpstan/cache/PHPStan/98/45/9845a568e64ab4aa58281c9896c9079c7403d92a.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694927-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/99/b4/99b4bc67dea3e3417539bb81101ab40960f10b32.php b/var/cache/phpstan/cache/PHPStan/99/b4/99b4bc67dea3e3417539bb81101ab40960f10b32.php deleted file mode 100644 index 8e29883..0000000 --- a/var/cache/phpstan/cache/PHPStan/99/b4/99b4bc67dea3e3417539bb81101ab40960f10b32.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/9a/1a/9a1ab91ce19f7bc4787fb3ff4b87dde122835ea5.php b/var/cache/phpstan/cache/PHPStan/9a/1a/9a1ab91ce19f7bc4787fb3ff4b87dde122835ea5.php deleted file mode 100644 index 24356f3..0000000 --- a/var/cache/phpstan/cache/PHPStan/9a/1a/9a1ab91ce19f7bc4787fb3ff4b87dde122835ea5.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/9b/1c/9b1c7611ade2f57cba6509e93d41532868b6b2c3.php b/var/cache/phpstan/cache/PHPStan/9b/1c/9b1c7611ade2f57cba6509e93d41532868b6b2c3.php deleted file mode 100644 index 21b4049..0000000 --- a/var/cache/phpstan/cache/PHPStan/9b/1c/9b1c7611ade2f57cba6509e93d41532868b6b2c3.php +++ /dev/null @@ -1,7 +0,0 @@ - '1760613666-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/9b/4a/9b4a4bf52f193948eb18504693ab87f0c7f419d8.php b/var/cache/phpstan/cache/PHPStan/9b/4a/9b4a4bf52f193948eb18504693ab87f0c7f419d8.php deleted file mode 100644 index 390dd94..0000000 --- a/var/cache/phpstan/cache/PHPStan/9b/4a/9b4a4bf52f193948eb18504693ab87f0c7f419d8.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765799368-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/9b/6c/9b6ce6d8db107bbf786b17050a9c5dbeca011ff6.php b/var/cache/phpstan/cache/PHPStan/9b/6c/9b6ce6d8db107bbf786b17050a9c5dbeca011ff6.php deleted file mode 100644 index db513cf..0000000 --- a/var/cache/phpstan/cache/PHPStan/9b/6c/9b6ce6d8db107bbf786b17050a9c5dbeca011ff6.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/9b/95/9b950d2b0647dc2b40116e2fbe26b614bc43bb9f.php b/var/cache/phpstan/cache/PHPStan/9b/95/9b950d2b0647dc2b40116e2fbe26b614bc43bb9f.php deleted file mode 100644 index f93c02d..0000000 --- a/var/cache/phpstan/cache/PHPStan/9b/95/9b950d2b0647dc2b40116e2fbe26b614bc43bb9f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765799368-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/9c/90/9c9063914c331d9c8b7d83c48a995c69c032609d.php b/var/cache/phpstan/cache/PHPStan/9c/90/9c9063914c331d9c8b7d83c48a995c69c032609d.php deleted file mode 100644 index 5b8dc1f..0000000 --- a/var/cache/phpstan/cache/PHPStan/9c/90/9c9063914c331d9c8b7d83c48a995c69c032609d.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/9e/1f/9e1fe57a6e2212cdbd51c71172cbeb198327a7da.php b/var/cache/phpstan/cache/PHPStan/9e/1f/9e1fe57a6e2212cdbd51c71172cbeb198327a7da.php deleted file mode 100644 index 6e7b45d..0000000 --- a/var/cache/phpstan/cache/PHPStan/9e/1f/9e1fe57a6e2212cdbd51c71172cbeb198327a7da.php +++ /dev/null @@ -1,7 +0,0 @@ - '1763758372-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/9e/f4/9ef49e01b8a49bc65bd8ad0124581aa2a3a884c1.php b/var/cache/phpstan/cache/PHPStan/9e/f4/9ef49e01b8a49bc65bd8ad0124581aa2a3a884c1.php deleted file mode 100644 index ac18530..0000000 --- a/var/cache/phpstan/cache/PHPStan/9e/f4/9ef49e01b8a49bc65bd8ad0124581aa2a3a884c1.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179079-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/a0/e6/a0e6842f98955cbed43af35a2dbe5f4ca90f6e98.php b/var/cache/phpstan/cache/PHPStan/a0/e6/a0e6842f98955cbed43af35a2dbe5f4ca90f6e98.php deleted file mode 100644 index d4bdd5d..0000000 --- a/var/cache/phpstan/cache/PHPStan/a0/e6/a0e6842f98955cbed43af35a2dbe5f4ca90f6e98.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/a0/fa/a0fae9329cede8a7fe6ec6197f0c53a81710314b.php b/var/cache/phpstan/cache/PHPStan/a0/fa/a0fae9329cede8a7fe6ec6197f0c53a81710314b.php deleted file mode 100644 index 0ed03d7..0000000 --- a/var/cache/phpstan/cache/PHPStan/a0/fa/a0fae9329cede8a7fe6ec6197f0c53a81710314b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/a1/70/a1709cc4e2915eabaf8f481e45ba4297f3693c2f.php b/var/cache/phpstan/cache/PHPStan/a1/70/a1709cc4e2915eabaf8f481e45ba4297f3693c2f.php deleted file mode 100644 index 4433189..0000000 --- a/var/cache/phpstan/cache/PHPStan/a1/70/a1709cc4e2915eabaf8f481e45ba4297f3693c2f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/a2/37/a237943dd44589e999c8e2602e63580e9efe6a31.php b/var/cache/phpstan/cache/PHPStan/a2/37/a237943dd44589e999c8e2602e63580e9efe6a31.php deleted file mode 100644 index 0dd7546..0000000 --- a/var/cache/phpstan/cache/PHPStan/a2/37/a237943dd44589e999c8e2602e63580e9efe6a31.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764084145-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/a2/9d/a29d0e31319cc6641d55e5eb2b302136dc3f41ba.php b/var/cache/phpstan/cache/PHPStan/a2/9d/a29d0e31319cc6641d55e5eb2b302136dc3f41ba.php deleted file mode 100644 index 3dfef7b..0000000 --- a/var/cache/phpstan/cache/PHPStan/a2/9d/a29d0e31319cc6641d55e5eb2b302136dc3f41ba.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179073-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/a3/86/a38601b704bc70edad86ec80445462a8255ae218.php b/var/cache/phpstan/cache/PHPStan/a3/86/a38601b704bc70edad86ec80445462a8255ae218.php deleted file mode 100644 index 87f4e42..0000000 --- a/var/cache/phpstan/cache/PHPStan/a3/86/a38601b704bc70edad86ec80445462a8255ae218.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768835655-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/a3/89/a38969d2293bd245891f2c91fa304c306f8cffef.php b/var/cache/phpstan/cache/PHPStan/a3/89/a38969d2293bd245891f2c91fa304c306f8cffef.php deleted file mode 100644 index 740829d..0000000 --- a/var/cache/phpstan/cache/PHPStan/a3/89/a38969d2293bd245891f2c91fa304c306f8cffef.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764192961-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/a3/8e/a38e47a9c1a607a47693e34f6f500aba86908aee.php b/var/cache/phpstan/cache/PHPStan/a3/8e/a38e47a9c1a607a47693e34f6f500aba86908aee.php deleted file mode 100644 index 9385888..0000000 --- a/var/cache/phpstan/cache/PHPStan/a3/8e/a38e47a9c1a607a47693e34f6f500aba86908aee.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764948219-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/a3/aa/a3aac31b44783427232e6c531ebf92f128c791c4.php b/var/cache/phpstan/cache/PHPStan/a3/aa/a3aac31b44783427232e6c531ebf92f128c791c4.php deleted file mode 100644 index 4a25c30..0000000 --- a/var/cache/phpstan/cache/PHPStan/a3/aa/a3aac31b44783427232e6c531ebf92f128c791c4.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/a4/8f/a48f6365c45cc1ff863bd0eabca0eea67f34e2e6.php b/var/cache/phpstan/cache/PHPStan/a4/8f/a48f6365c45cc1ff863bd0eabca0eea67f34e2e6.php deleted file mode 100644 index e407f16..0000000 --- a/var/cache/phpstan/cache/PHPStan/a4/8f/a48f6365c45cc1ff863bd0eabca0eea67f34e2e6.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/a5/aa/a5aa34c83bfe446fa93c42dcef7391997f4e4fa1.php b/var/cache/phpstan/cache/PHPStan/a5/aa/a5aa34c83bfe446fa93c42dcef7391997f4e4fa1.php deleted file mode 100644 index 97aaf72..0000000 --- a/var/cache/phpstan/cache/PHPStan/a5/aa/a5aa34c83bfe446fa93c42dcef7391997f4e4fa1.php +++ /dev/null @@ -1,27 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/sebastian/version/src/Version.php' => - array ( - 0 => '6f5064921ae0a162dc3275024daae4dcbee20b3c', - 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/var/cache/phpstan/cache/PHPStan/a6/1e/a61e1712662f96d99dc669904f5a60711e2d9f56.php b/var/cache/phpstan/cache/PHPStan/a6/1e/a61e1712662f96d99dc669904f5a60711e2d9f56.php deleted file mode 100644 index e6a6a93..0000000 --- a/var/cache/phpstan/cache/PHPStan/a6/1e/a61e1712662f96d99dc669904f5a60711e2d9f56.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/a7/50/a75069becfb6870a026ee2b2053152fa03109712.php b/var/cache/phpstan/cache/PHPStan/a7/50/a75069becfb6870a026ee2b2053152fa03109712.php deleted file mode 100644 index 58e7b5c..0000000 --- a/var/cache/phpstan/cache/PHPStan/a7/50/a75069becfb6870a026ee2b2053152fa03109712.php +++ /dev/null @@ -1,24 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/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/var/cache/phpstan/cache/PHPStan/a8/13/a8136eed0ad1a876b29f6d170f39fa3463ba78f7.php b/var/cache/phpstan/cache/PHPStan/a8/13/a8136eed0ad1a876b29f6d170f39fa3463ba78f7.php deleted file mode 100644 index f5edcf0..0000000 --- a/var/cache/phpstan/cache/PHPStan/a8/13/a8136eed0ad1a876b29f6d170f39fa3463ba78f7.php +++ /dev/null @@ -1,60 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/sebastian/environment/src/Runtime.php' => - array ( - 0 => '22293c94d864b5f0000ea93021cec9edb24d4fb1', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/environment/src/Console.php' => - array ( - 0 => '9f0ae5e8de6a9c0cbfd5b0f077f1568000dd7e20', - 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/var/cache/phpstan/cache/PHPStan/a8/4a/a84a63cfacde63897acf74e5c5094bea63c3798c.php b/var/cache/phpstan/cache/PHPStan/a8/4a/a84a63cfacde63897acf74e5c5094bea63c3798c.php deleted file mode 100644 index 65b0c26..0000000 --- a/var/cache/phpstan/cache/PHPStan/a8/4a/a84a63cfacde63897acf74e5c5094bea63c3798c.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/a8/eb/a8ebecb2da810f8bafff0e532feea147002bbf83.php b/var/cache/phpstan/cache/PHPStan/a8/eb/a8ebecb2da810f8bafff0e532feea147002bbf83.php deleted file mode 100644 index 56bd1b5..0000000 --- a/var/cache/phpstan/cache/PHPStan/a8/eb/a8ebecb2da810f8bafff0e532feea147002bbf83.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179076-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/a9/a9/a9a94809b96b27b36fd2bab54a77f9791d75e216.php b/var/cache/phpstan/cache/PHPStan/a9/a9/a9a94809b96b27b36fd2bab54a77f9791d75e216.php deleted file mode 100644 index 069919f..0000000 --- a/var/cache/phpstan/cache/PHPStan/a9/a9/a9a94809b96b27b36fd2bab54a77f9791d75e216.php +++ /dev/null @@ -1,7 +0,0 @@ - '1759867176-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/a9/be/a9bef07275683d79ffc5d35a04a3c172c8b7e671.php b/var/cache/phpstan/cache/PHPStan/a9/be/a9bef07275683d79ffc5d35a04a3c172c8b7e671.php deleted file mode 100644 index 5ad68b4..0000000 --- a/var/cache/phpstan/cache/PHPStan/a9/be/a9bef07275683d79ffc5d35a04a3c172c8b7e671.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179077-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/aa/6d/aa6dd8b98299f115f084503d192087be0c805264.php b/var/cache/phpstan/cache/PHPStan/aa/6d/aa6dd8b98299f115f084503d192087be0c805264.php deleted file mode 100644 index 133cac8..0000000 --- a/var/cache/phpstan/cache/PHPStan/aa/6d/aa6dd8b98299f115f084503d192087be0c805264.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179076-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/aa/eb/aaeb826e3f2d3ce2b959f955153a0adbcd3b8f0e.php b/var/cache/phpstan/cache/PHPStan/aa/eb/aaeb826e3f2d3ce2b959f955153a0adbcd3b8f0e.php deleted file mode 100644 index 642e9fc..0000000 --- a/var/cache/phpstan/cache/PHPStan/aa/eb/aaeb826e3f2d3ce2b959f955153a0adbcd3b8f0e.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ab/d4/abd423b22442370719c23119c134cda517801eae.php b/var/cache/phpstan/cache/PHPStan/ab/d4/abd423b22442370719c23119c134cda517801eae.php deleted file mode 100644 index a6fd28f..0000000 --- a/var/cache/phpstan/cache/PHPStan/ab/d4/abd423b22442370719c23119c134cda517801eae.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ac/0e/ac0eff25f434a146be0599427ca4ed5823320ee6.php b/var/cache/phpstan/cache/PHPStan/ac/0e/ac0eff25f434a146be0599427ca4ed5823320ee6.php deleted file mode 100644 index 109713e..0000000 --- a/var/cache/phpstan/cache/PHPStan/ac/0e/ac0eff25f434a146be0599427ca4ed5823320ee6.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179077-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ac/56/ac56511e2d57b6d8f4ce5a8d419ae484d80a7ccd.php b/var/cache/phpstan/cache/PHPStan/ac/56/ac56511e2d57b6d8f4ce5a8d419ae484d80a7ccd.php deleted file mode 100644 index aa81a9f..0000000 --- a/var/cache/phpstan/cache/PHPStan/ac/56/ac56511e2d57b6d8f4ce5a8d419ae484d80a7ccd.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ac/5f/ac5ff6d0bd254d7729b8b4fe54e5d2f6066b25fc.php b/var/cache/phpstan/cache/PHPStan/ac/5f/ac5ff6d0bd254d7729b8b4fe54e5d2f6066b25fc.php deleted file mode 100644 index deca741..0000000 --- a/var/cache/phpstan/cache/PHPStan/ac/5f/ac5ff6d0bd254d7729b8b4fe54e5d2f6066b25fc.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ad/62/ad6295916759e99ff41bee1adef1156490d76831.php b/var/cache/phpstan/cache/PHPStan/ad/62/ad6295916759e99ff41bee1adef1156490d76831.php deleted file mode 100644 index 9ef3d61..0000000 --- a/var/cache/phpstan/cache/PHPStan/ad/62/ad6295916759e99ff41bee1adef1156490d76831.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ae/0b/ae0bd7123e386cc015ef8fd2957734ae914f2b28.php b/var/cache/phpstan/cache/PHPStan/ae/0b/ae0bd7123e386cc015ef8fd2957734ae914f2b28.php deleted file mode 100644 index dcf7d77..0000000 --- a/var/cache/phpstan/cache/PHPStan/ae/0b/ae0bd7123e386cc015ef8fd2957734ae914f2b28.php +++ /dev/null @@ -1,106 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/phpunit/php-timer/src/exceptions/NoActiveTimerException.php' => - array ( - 0 => '83b14a0d942e084460fc373c896ecf868ea4b7b7', - 1 => - array ( - 0 => 'sebastianbergmann\\timer\\noactivetimerexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-timer/src/exceptions/Exception.php' => - array ( - 0 => '585b1208820c28f65d4ccebe577ca93444b2364c', - 1 => - array ( - 0 => 'sebastianbergmann\\timer\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-timer/src/exceptions/TimeSinceStartOfRequestNotAvailableException.php' => - array ( - 0 => '31c00ec28beba93d9853845c77887597821c9ee6', - 1 => - array ( - 0 => 'sebastianbergmann\\timer\\timesincestartofrequestnotavailableexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-timer/src/ResourceUsageFormatter.php' => - array ( - 0 => 'd7350c8d41bb6e0d6e16382c9f6d2c999e3459f5', - 1 => - array ( - 0 => 'sebastianbergmann\\timer\\resourceusageformatter', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\timer\\resourceusage', - 1 => 'sebastianbergmann\\timer\\resourceusagesincestartofrequest', - 2 => 'sebastianbergmann\\timer\\bytestostring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/b2/13/b213840766b96e002ccc2a7a01ba4869abf2f380.php b/var/cache/phpstan/cache/PHPStan/b2/13/b213840766b96e002ccc2a7a01ba4869abf2f380.php deleted file mode 100644 index 44a742a..0000000 --- a/var/cache/phpstan/cache/PHPStan/b2/13/b213840766b96e002ccc2a7a01ba4869abf2f380.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/b2/e1/b2e1dc23952042895130aa112dbd93dd5fb7c17b.php b/var/cache/phpstan/cache/PHPStan/b2/e1/b2e1dc23952042895130aa112dbd93dd5fb7c17b.php deleted file mode 100644 index bb0784c..0000000 --- a/var/cache/phpstan/cache/PHPStan/b2/e1/b2e1dc23952042895130aa112dbd93dd5fb7c17b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1763674952-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/b2/ff/b2ff3f6c212994cd6e2110bfa7052025e596e346.php b/var/cache/phpstan/cache/PHPStan/b2/ff/b2ff3f6c212994cd6e2110bfa7052025e596e346.php deleted file mode 100644 index b80ae7b..0000000 --- a/var/cache/phpstan/cache/PHPStan/b2/ff/b2ff3f6c212994cd6e2110bfa7052025e596e346.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/b3/bf/b3bf68aebb4cdf2e1a0e26dada2dcc76ad215e7f.php b/var/cache/phpstan/cache/PHPStan/b3/bf/b3bf68aebb4cdf2e1a0e26dada2dcc76ad215e7f.php deleted file mode 100644 index 6e82367..0000000 --- a/var/cache/phpstan/cache/PHPStan/b3/bf/b3bf68aebb4cdf2e1a0e26dada2dcc76ad215e7f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694927-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/b3/d4/b3d4a9673c20c9ee4dd71be185cb81ba98714eed.php b/var/cache/phpstan/cache/PHPStan/b3/d4/b3d4a9673c20c9ee4dd71be185cb81ba98714eed.php deleted file mode 100644 index 6bc899e..0000000 --- a/var/cache/phpstan/cache/PHPStan/b3/d4/b3d4a9673c20c9ee4dd71be185cb81ba98714eed.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/b5/2f/b52f2f378667fe9d90bf03e7d2b4afb90f348d51.php b/var/cache/phpstan/cache/PHPStan/b5/2f/b52f2f378667fe9d90bf03e7d2b4afb90f348d51.php deleted file mode 100644 index 6f348d3..0000000 --- a/var/cache/phpstan/cache/PHPStan/b5/2f/b52f2f378667fe9d90bf03e7d2b4afb90f348d51.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765799368-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/b7/b5/b7b505053bb19ca4a440e9ed76f3c2794236c9f0.php b/var/cache/phpstan/cache/PHPStan/b7/b5/b7b505053bb19ca4a440e9ed76f3c2794236c9f0.php deleted file mode 100644 index e1c48f9..0000000 --- a/var/cache/phpstan/cache/PHPStan/b7/b5/b7b505053bb19ca4a440e9ed76f3c2794236c9f0.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/b8/61/b8619008f6cd1b26fccf38e17ecbafa0cfea3b41.php b/var/cache/phpstan/cache/PHPStan/b8/61/b8619008f6cd1b26fccf38e17ecbafa0cfea3b41.php deleted file mode 100644 index 32f569d..0000000 --- a/var/cache/phpstan/cache/PHPStan/b8/61/b8619008f6cd1b26fccf38e17ecbafa0cfea3b41.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/b8/a7/b8a7092f856cca491807749149c338a608825179.php b/var/cache/phpstan/cache/PHPStan/b8/a7/b8a7092f856cca491807749149c338a608825179.php deleted file mode 100644 index 9354221..0000000 --- a/var/cache/phpstan/cache/PHPStan/b8/a7/b8a7092f856cca491807749149c338a608825179.php +++ /dev/null @@ -1,7 +0,0 @@ - '1715829193-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/bc/2c/bc2c73c274b94a53a6302aa44d8723eda1f1acb2.php b/var/cache/phpstan/cache/PHPStan/bc/2c/bc2c73c274b94a53a6302aa44d8723eda1f1acb2.php deleted file mode 100644 index 9cc9664..0000000 --- a/var/cache/phpstan/cache/PHPStan/bc/2c/bc2c73c274b94a53a6302aa44d8723eda1f1acb2.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/bc/63/bc63dc0bb4db3a85ddd90bb2bc3b1496e304f1fa.php b/var/cache/phpstan/cache/PHPStan/bc/63/bc63dc0bb4db3a85ddd90bb2bc3b1496e304f1fa.php deleted file mode 100644 index 2186a1a..0000000 --- a/var/cache/phpstan/cache/PHPStan/bc/63/bc63dc0bb4db3a85ddd90bb2bc3b1496e304f1fa.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/bc/92/bc925b83dc27a7894a0e2b20b1ec38b5e3263911.php b/var/cache/phpstan/cache/PHPStan/bc/92/bc925b83dc27a7894a0e2b20b1ec38b5e3263911.php deleted file mode 100644 index 8137796..0000000 --- a/var/cache/phpstan/cache/PHPStan/bc/92/bc925b83dc27a7894a0e2b20b1ec38b5e3263911.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765799368-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/c0/0c/c00c33cb7489aa61a55934cb0d3ff5b76411d4fb.php b/var/cache/phpstan/cache/PHPStan/c0/0c/c00c33cb7489aa61a55934cb0d3ff5b76411d4fb.php deleted file mode 100644 index 10ddf5d..0000000 --- a/var/cache/phpstan/cache/PHPStan/c0/0c/c00c33cb7489aa61a55934cb0d3ff5b76411d4fb.php +++ /dev/null @@ -1,47 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php84/Resources/stubs/Deprecated.php' => - array ( - 0 => 'ae070590b6e01ff65312d593de5fa704cca8b2ee', - 1 => - array ( - 0 => 'deprecated', - ), - 2 => - array ( - 0 => '__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/symfony/polyfill-php84/Resources/stubs/ReflectionConstant.php' => - array ( - 0 => '8274c49d807e0942cccc1ac18bbb3eac494fc408', - 1 => - array ( - 0 => 'reflectionconstant', - ), - 2 => - array ( - 0 => '__construct', - 1 => 'getname', - 2 => 'getvalue', - 3 => 'getnamespacename', - 4 => 'getshortname', - 5 => 'isdeprecated', - 6 => '__tostring', - 7 => '__sleep', - 8 => '__wakeup', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/c0/8e/c08e94a614cb165e2afcba59300561b510a6da7b.php b/var/cache/phpstan/cache/PHPStan/c0/8e/c08e94a614cb165e2afcba59300561b510a6da7b.php deleted file mode 100644 index a230ad0..0000000 --- a/var/cache/phpstan/cache/PHPStan/c0/8e/c08e94a614cb165e2afcba59300561b510a6da7b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1760613666-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/c0/c1/c0c1159d38441db20ebbf0f5881c92cb586112c8.php b/var/cache/phpstan/cache/PHPStan/c0/c1/c0c1159d38441db20ebbf0f5881c92cb586112c8.php deleted file mode 100644 index 2f19a38..0000000 --- a/var/cache/phpstan/cache/PHPStan/c0/c1/c0c1159d38441db20ebbf0f5881c92cb586112c8.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765799368-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/c0/e0/c0e027a7213ad1e7b71b02709b1b410dc27f1f4b.php b/var/cache/phpstan/cache/PHPStan/c0/e0/c0e027a7213ad1e7b71b02709b1b410dc27f1f4b.php deleted file mode 100644 index cb4e3fa..0000000 --- a/var/cache/phpstan/cache/PHPStan/c0/e0/c0e027a7213ad1e7b71b02709b1b410dc27f1f4b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/c1/c0/c1c0c21cec81eee205fec6b3f7840cb49371a989.php b/var/cache/phpstan/cache/PHPStan/c1/c0/c1c0c21cec81eee205fec6b3f7840cb49371a989.php deleted file mode 100644 index e9cbf6f..0000000 --- a/var/cache/phpstan/cache/PHPStan/c1/c0/c1c0c21cec81eee205fec6b3f7840cb49371a989.php +++ /dev/null @@ -1,36 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/sebastian/exporter/src/Exporter.php' => - array ( - 0 => '727441dfe4c24b1a3e76ef073db585e62336f073', - 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/var/cache/phpstan/cache/PHPStan/c3/1f/c31f649caeeb417f3380424632e169f80018994f.php b/var/cache/phpstan/cache/PHPStan/c3/1f/c31f649caeeb417f3380424632e169f80018994f.php deleted file mode 100644 index e2e412b..0000000 --- a/var/cache/phpstan/cache/PHPStan/c3/1f/c31f649caeeb417f3380424632e169f80018994f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179073-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/c4/12/c4120d8c8276c171088ca7b1a4f528f4143dd9a3.php b/var/cache/phpstan/cache/PHPStan/c4/12/c4120d8c8276c171088ca7b1a4f528f4143dd9a3.php deleted file mode 100644 index 8883874..0000000 --- a/var/cache/phpstan/cache/PHPStan/c4/12/c4120d8c8276c171088ca7b1a4f528f4143dd9a3.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765799368-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/c4/f3/c4f3fb68817af8231b33b1048a6a69109d736d08.php b/var/cache/phpstan/cache/PHPStan/c4/f3/c4f3fb68817af8231b33b1048a6a69109d736d08.php deleted file mode 100644 index 3e5a47f..0000000 --- a/var/cache/phpstan/cache/PHPStan/c4/f3/c4f3fb68817af8231b33b1048a6a69109d736d08.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768835655-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/c6/75/c67529cdeb61a915884ecbd38fac88ee617e401f.php b/var/cache/phpstan/cache/PHPStan/c6/75/c67529cdeb61a915884ecbd38fac88ee617e401f.php deleted file mode 100644 index 37a8806..0000000 --- a/var/cache/phpstan/cache/PHPStan/c6/75/c67529cdeb61a915884ecbd38fac88ee617e401f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179079-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/c6/83/c683e705eb853927e354116c465e8321980209b5.php b/var/cache/phpstan/cache/PHPStan/c6/83/c683e705eb853927e354116c465e8321980209b5.php deleted file mode 100644 index 98d0785..0000000 --- a/var/cache/phpstan/cache/PHPStan/c6/83/c683e705eb853927e354116c465e8321980209b5.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765233265-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/c7/dc/c7dcf1f16b939dea9a0374d73610b47d4472c897.php b/var/cache/phpstan/cache/PHPStan/c7/dc/c7dcf1f16b939dea9a0374d73610b47d4472c897.php deleted file mode 100644 index 86cbcef..0000000 --- a/var/cache/phpstan/cache/PHPStan/c7/dc/c7dcf1f16b939dea9a0374d73610b47d4472c897.php +++ /dev/null @@ -1,80 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-file-iterator/src/Factory.php' => - array ( - 0 => '046c776ccc68f7f72373e7a8eed4fc3828364411', - 1 => - array ( - 0 => 'sebastianbergmann\\fileiterator\\factory', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\fileiterator\\getfileiterator', - 1 => 'sebastianbergmann\\fileiterator\\resolvewildcards', - 2 => 'sebastianbergmann\\fileiterator\\globstar', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/php-file-iterator/src/Iterator.php' => - array ( - 0 => '0537e0bc6fd66a2b35f49402d81e75c84a83b7cb', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/c9/b4/c9b46731ec70a8019905b9ca4229d5c88d33ab06.php b/var/cache/phpstan/cache/PHPStan/c9/b4/c9b46731ec70a8019905b9ca4229d5c88d33ab06.php deleted file mode 100644 index 24ddec1..0000000 --- a/var/cache/phpstan/cache/PHPStan/c9/b4/c9b46731ec70a8019905b9ca4229d5c88d33ab06.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/c9/fd/c9fd2c5ecea88e2823aba82e9d2b58e50bf6a4fa.php b/var/cache/phpstan/cache/PHPStan/c9/fd/c9fd2c5ecea88e2823aba82e9d2b58e50bf6a4fa.php deleted file mode 100644 index 3373af3..0000000 --- a/var/cache/phpstan/cache/PHPStan/c9/fd/c9fd2c5ecea88e2823aba82e9d2b58e50bf6a4fa.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764192961-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ca/c2/cac24868a5c2c8ae0cb77485b01048434d92c74c.php b/var/cache/phpstan/cache/PHPStan/ca/c2/cac24868a5c2c8ae0cb77485b01048434d92c74c.php deleted file mode 100644 index 80a1f0f..0000000 --- a/var/cache/phpstan/cache/PHPStan/ca/c2/cac24868a5c2c8ae0cb77485b01048434d92c74c.php +++ /dev/null @@ -1,7 +0,0 @@ - '1763674952-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ca/e7/cae793df1edcde4650ba20128c8725b5f502cfbc.php b/var/cache/phpstan/cache/PHPStan/ca/e7/cae793df1edcde4650ba20128c8725b5f502cfbc.php deleted file mode 100644 index 7e54ffc..0000000 --- a/var/cache/phpstan/cache/PHPStan/ca/e7/cae793df1edcde4650ba20128c8725b5f502cfbc.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764709468-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/cb/85/cb855496a59e1f8921ba4df2ccacaee84da6f5c2.php b/var/cache/phpstan/cache/PHPStan/cb/85/cb855496a59e1f8921ba4df2ccacaee84da6f5c2.php deleted file mode 100644 index 5e5387e..0000000 --- a/var/cache/phpstan/cache/PHPStan/cb/85/cb855496a59e1f8921ba4df2ccacaee84da6f5c2.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764282503-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/cb/a7/cba730baf0cf83fa15696fd32c40976f33a1f9d2.php b/var/cache/phpstan/cache/PHPStan/cb/a7/cba730baf0cf83fa15696fd32c40976f33a1f9d2.php deleted file mode 100644 index 2f15fe3..0000000 --- a/var/cache/phpstan/cache/PHPStan/cb/a7/cba730baf0cf83fa15696fd32c40976f33a1f9d2.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/cb/eb/cbeba509369264302b93963eba28fe9981002a38.php b/var/cache/phpstan/cache/PHPStan/cb/eb/cbeba509369264302b93963eba28fe9981002a38.php deleted file mode 100644 index 551992e..0000000 --- a/var/cache/phpstan/cache/PHPStan/cb/eb/cbeba509369264302b93963eba28fe9981002a38.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/cc/ec/ccec14322039abdac32a896f65dd38e50f4ef2fc.php b/var/cache/phpstan/cache/PHPStan/cc/ec/ccec14322039abdac32a896f65dd38e50f4ef2fc.php deleted file mode 100644 index 5085941..0000000 --- a/var/cache/phpstan/cache/PHPStan/cc/ec/ccec14322039abdac32a896f65dd38e50f4ef2fc.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/cd/63/cd638b4d0916a1d1b195567a6a69dbbaf6054317.php b/var/cache/phpstan/cache/PHPStan/cd/63/cd638b4d0916a1d1b195567a6a69dbbaf6054317.php deleted file mode 100644 index c8289bc..0000000 --- a/var/cache/phpstan/cache/PHPStan/cd/63/cd638b4d0916a1d1b195567a6a69dbbaf6054317.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764282503-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/d0/7b/d07bc01cec9446faf34ceafadd3a77b08bc9920f.php b/var/cache/phpstan/cache/PHPStan/d0/7b/d07bc01cec9446faf34ceafadd3a77b08bc9920f.php deleted file mode 100644 index e6d75bc..0000000 --- a/var/cache/phpstan/cache/PHPStan/d0/7b/d07bc01cec9446faf34ceafadd3a77b08bc9920f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/d0/a2/d0a24c5d12d97575754a3bbb92dea48d0109be9f.php b/var/cache/phpstan/cache/PHPStan/d0/a2/d0a24c5d12d97575754a3bbb92dea48d0109be9f.php deleted file mode 100644 index 1a345ed..0000000 --- a/var/cache/phpstan/cache/PHPStan/d0/a2/d0a24c5d12d97575754a3bbb92dea48d0109be9f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1760613666-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/d0/fa/d0fa39719fc5b44c485976e6ebba57aed48c615c.php b/var/cache/phpstan/cache/PHPStan/d0/fa/d0fa39719fc5b44c485976e6ebba57aed48c615c.php deleted file mode 100644 index 884df1c..0000000 --- a/var/cache/phpstan/cache/PHPStan/d0/fa/d0fa39719fc5b44c485976e6ebba57aed48c615c.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768835655-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/d1/67/d1676ca72c24354e9a7a4c217958642d1271e3f0.php b/var/cache/phpstan/cache/PHPStan/d1/67/d1676ca72c24354e9a7a4c217958642d1271e3f0.php deleted file mode 100644 index 737f438..0000000 --- a/var/cache/phpstan/cache/PHPStan/d1/67/d1676ca72c24354e9a7a4c217958642d1271e3f0.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/d2/66/d266a4b1f6bae388ba6b96ea8006f9d1b2da2f9b.php b/var/cache/phpstan/cache/PHPStan/d2/66/d266a4b1f6bae388ba6b96ea8006f9d1b2da2f9b.php deleted file mode 100644 index 90b7a9b..0000000 --- a/var/cache/phpstan/cache/PHPStan/d2/66/d266a4b1f6bae388ba6b96ea8006f9d1b2da2f9b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179079-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/d3/6b/d36b6f63e19cd3330e60c9559fce3bb34445dd7a.php b/var/cache/phpstan/cache/PHPStan/d3/6b/d36b6f63e19cd3330e60c9559fce3bb34445dd7a.php deleted file mode 100644 index cd4ace0..0000000 --- a/var/cache/phpstan/cache/PHPStan/d3/6b/d36b6f63e19cd3330e60c9559fce3bb34445dd7a.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764084145-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/d4/07/d4070d76d178d300d0a973d1fca2b157b4605155.php b/var/cache/phpstan/cache/PHPStan/d4/07/d4070d76d178d300d0a973d1fca2b157b4605155.php deleted file mode 100644 index 187679a..0000000 --- a/var/cache/phpstan/cache/PHPStan/d4/07/d4070d76d178d300d0a973d1fca2b157b4605155.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765799368-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/d4/58/d458a006830f6e84d3bda1fdabb57a4250f9e095.php b/var/cache/phpstan/cache/PHPStan/d4/58/d458a006830f6e84d3bda1fdabb57a4250f9e095.php deleted file mode 100644 index ad6074a..0000000 --- a/var/cache/phpstan/cache/PHPStan/d4/58/d458a006830f6e84d3bda1fdabb57a4250f9e095.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/d5/24/d524f88980ab09caaa8e9cd4931ae6e49fdd55b8.php b/var/cache/phpstan/cache/PHPStan/d5/24/d524f88980ab09caaa8e9cd4931ae6e49fdd55b8.php deleted file mode 100644 index bbe6a34..0000000 --- a/var/cache/phpstan/cache/PHPStan/d5/24/d524f88980ab09caaa8e9cd4931ae6e49fdd55b8.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/d5/49/d5497e82cc5b213c7681921ab812c19985ae12f7.php b/var/cache/phpstan/cache/PHPStan/d5/49/d5497e82cc5b213c7681921ab812c19985ae12f7.php deleted file mode 100644 index 6227f0b..0000000 --- a/var/cache/phpstan/cache/PHPStan/d5/49/d5497e82cc5b213c7681921ab812c19985ae12f7.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/d6/01/d601e131cc396e4c7f44ce84632bb2933091758f.php b/var/cache/phpstan/cache/PHPStan/d6/01/d601e131cc396e4c7f44ce84632bb2933091758f.php deleted file mode 100644 index 6ee3b9f..0000000 --- a/var/cache/phpstan/cache/PHPStan/d6/01/d601e131cc396e4c7f44ce84632bb2933091758f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/d6/0b/d60bc355c0278b003c244ee0cdac1d73b19ba96d.php b/var/cache/phpstan/cache/PHPStan/d6/0b/d60bc355c0278b003c244ee0cdac1d73b19ba96d.php deleted file mode 100644 index eadb9a9..0000000 --- a/var/cache/phpstan/cache/PHPStan/d6/0b/d60bc355c0278b003c244ee0cdac1d73b19ba96d.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/d6/4e/d64e8e604b4aa5404d671e0048aad0aaa7674320.php b/var/cache/phpstan/cache/PHPStan/d6/4e/d64e8e604b4aa5404d671e0048aad0aaa7674320.php deleted file mode 100644 index 1a6055e..0000000 --- a/var/cache/phpstan/cache/PHPStan/d6/4e/d64e8e604b4aa5404d671e0048aad0aaa7674320.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764282503-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/d6/c3/d6c33bac1032f6e515b09fb8b2dc26d0d692f038.php b/var/cache/phpstan/cache/PHPStan/d6/c3/d6c33bac1032f6e515b09fb8b2dc26d0d692f038.php deleted file mode 100644 index 18848ba..0000000 --- a/var/cache/phpstan/cache/PHPStan/d6/c3/d6c33bac1032f6e515b09fb8b2dc26d0d692f038.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765294012-v4', - 'data' => true, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/d8/68/d8681add9712613514c8f7e9648f525cb3a19922.php b/var/cache/phpstan/cache/PHPStan/d8/68/d8681add9712613514c8f7e9648f525cb3a19922.php deleted file mode 100644 index 7289ef6..0000000 --- a/var/cache/phpstan/cache/PHPStan/d8/68/d8681add9712613514c8f7e9648f525cb3a19922.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/d9/5c/d95c640894cb75f255a45d4838ac6936a5dc85d5.php b/var/cache/phpstan/cache/PHPStan/d9/5c/d95c640894cb75f255a45d4838ac6936a5dc85d5.php deleted file mode 100644 index e4b2965..0000000 --- a/var/cache/phpstan/cache/PHPStan/d9/5c/d95c640894cb75f255a45d4838ac6936a5dc85d5.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179079-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/d9/89/d989803d47a325dd853fb580c5fb6b8c69871634.php b/var/cache/phpstan/cache/PHPStan/d9/89/d989803d47a325dd853fb580c5fb6b8c69871634.php deleted file mode 100644 index 6d76aca..0000000 --- a/var/cache/phpstan/cache/PHPStan/d9/89/d989803d47a325dd853fb580c5fb6b8c69871634.php +++ /dev/null @@ -1,7 +0,0 @@ - '1763758372-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/da/3a/da3abf0f446a69d4fa8e9cb9698ef688c8d531e4.php b/var/cache/phpstan/cache/PHPStan/da/3a/da3abf0f446a69d4fa8e9cb9698ef688c8d531e4.php deleted file mode 100644 index 9dd2bcd..0000000 --- a/var/cache/phpstan/cache/PHPStan/da/3a/da3abf0f446a69d4fa8e9cb9698ef688c8d531e4.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179076-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/da/bb/dabb7e82c39ae851eb3a81ece0db9a39a484ab32.php b/var/cache/phpstan/cache/PHPStan/da/bb/dabb7e82c39ae851eb3a81ece0db9a39a484ab32.php deleted file mode 100644 index 15e1593..0000000 --- a/var/cache/phpstan/cache/PHPStan/da/bb/dabb7e82c39ae851eb3a81ece0db9a39a484ab32.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179079-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/db/01/db0120580adaa2f9ecb2f0987a212b0fd971904a.php b/var/cache/phpstan/cache/PHPStan/db/01/db0120580adaa2f9ecb2f0987a212b0fd971904a.php deleted file mode 100644 index 8c3cd50..0000000 --- a/var/cache/phpstan/cache/PHPStan/db/01/db0120580adaa2f9ecb2f0987a212b0fd971904a.php +++ /dev/null @@ -1,7 +0,0 @@ - '1759867176-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/db/1c/db1caea69cb2cb91fb632088d46fb125efcfbdf4.php b/var/cache/phpstan/cache/PHPStan/db/1c/db1caea69cb2cb91fb632088d46fb125efcfbdf4.php deleted file mode 100644 index 8bcb73b..0000000 --- a/var/cache/phpstan/cache/PHPStan/db/1c/db1caea69cb2cb91fb632088d46fb125efcfbdf4.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/db/90/db904200b4c9c4a0967eeb2947c996c2fa2ed86c.php b/var/cache/phpstan/cache/PHPStan/db/90/db904200b4c9c4a0967eeb2947c996c2fa2ed86c.php deleted file mode 100644 index f20f70d..0000000 --- a/var/cache/phpstan/cache/PHPStan/db/90/db904200b4c9c4a0967eeb2947c996c2fa2ed86c.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/db/b3/dbb3494d2581604f263bfe0653507ff79164cda8.php b/var/cache/phpstan/cache/PHPStan/db/b3/dbb3494d2581604f263bfe0653507ff79164cda8.php deleted file mode 100644 index d0c90f5..0000000 --- a/var/cache/phpstan/cache/PHPStan/db/b3/dbb3494d2581604f263bfe0653507ff79164cda8.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/dc/65/dc65981ced057352aeec1ac523823458297b314e.php b/var/cache/phpstan/cache/PHPStan/dc/65/dc65981ced057352aeec1ac523823458297b314e.php deleted file mode 100644 index 0e77f9b..0000000 --- a/var/cache/phpstan/cache/PHPStan/dc/65/dc65981ced057352aeec1ac523823458297b314e.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765294012-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/dc/82/dc82d62722fd3d227fef78150dacbebbcbd10df1.php b/var/cache/phpstan/cache/PHPStan/dc/82/dc82d62722fd3d227fef78150dacbebbcbd10df1.php deleted file mode 100644 index 1998de9..0000000 --- a/var/cache/phpstan/cache/PHPStan/dc/82/dc82d62722fd3d227fef78150dacbebbcbd10df1.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764084145-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/dc/d2/dcd26e5e56cb7edddb0853e34847b0da4cd3699b.php b/var/cache/phpstan/cache/PHPStan/dc/d2/dcd26e5e56cb7edddb0853e34847b0da4cd3699b.php deleted file mode 100644 index 7d00e35..0000000 --- a/var/cache/phpstan/cache/PHPStan/dc/d2/dcd26e5e56cb7edddb0853e34847b0da4cd3699b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179079-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/de/f0/def0cd8a795d61c00f3418b7cf9435f7f2584593.php b/var/cache/phpstan/cache/PHPStan/de/f0/def0cd8a795d61c00f3418b7cf9435f7f2584593.php deleted file mode 100644 index 5d886a1..0000000 --- a/var/cache/phpstan/cache/PHPStan/de/f0/def0cd8a795d61c00f3418b7cf9435f7f2584593.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765294012-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/df/25/df25cab3a2479caedfc9cd0dc73b4dd1ae7bc148.php b/var/cache/phpstan/cache/PHPStan/df/25/df25cab3a2479caedfc9cd0dc73b4dd1ae7bc148.php deleted file mode 100644 index 774fb02..0000000 --- a/var/cache/phpstan/cache/PHPStan/df/25/df25cab3a2479caedfc9cd0dc73b4dd1ae7bc148.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179077-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/df/25/df25f468441902d838a98780481c7253b7b51a4d.php b/var/cache/phpstan/cache/PHPStan/df/25/df25f468441902d838a98780481c7253b7b51a4d.php deleted file mode 100644 index 4711fe1..0000000 --- a/var/cache/phpstan/cache/PHPStan/df/25/df25f468441902d838a98780481c7253b7b51a4d.php +++ /dev/null @@ -1,7 +0,0 @@ - '1680602091-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/df/58/df5869180c65dd8a508fbba52f34c536c43e13db.php b/var/cache/phpstan/cache/PHPStan/df/58/df5869180c65dd8a508fbba52f34c536c43e13db.php deleted file mode 100644 index 2639aa9..0000000 --- a/var/cache/phpstan/cache/PHPStan/df/58/df5869180c65dd8a508fbba52f34c536c43e13db.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765294012-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/df/a6/dfa6ec17bc7985d5d814a90fdce64d1593e780df.php b/var/cache/phpstan/cache/PHPStan/df/a6/dfa6ec17bc7985d5d814a90fdce64d1593e780df.php deleted file mode 100644 index 04d49e6..0000000 --- a/var/cache/phpstan/cache/PHPStan/df/a6/dfa6ec17bc7985d5d814a90fdce64d1593e780df.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/e0/43/e0433f49ad1cbbde5a87a5fb31a329df431a9142.php b/var/cache/phpstan/cache/PHPStan/e0/43/e0433f49ad1cbbde5a87a5fb31a329df431a9142.php deleted file mode 100644 index 789a0f6..0000000 --- a/var/cache/phpstan/cache/PHPStan/e0/43/e0433f49ad1cbbde5a87a5fb31a329df431a9142.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/e0/66/e066a577e84137cd2f5d56e9e0be7b521f118067.php b/var/cache/phpstan/cache/PHPStan/e0/66/e066a577e84137cd2f5d56e9e0be7b521f118067.php deleted file mode 100644 index 82b9962..0000000 --- a/var/cache/phpstan/cache/PHPStan/e0/66/e066a577e84137cd2f5d56e9e0be7b521f118067.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694927-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/e1/1c/e11cc8d7f378baa1d46c84107bc40837d905318b.php b/var/cache/phpstan/cache/PHPStan/e1/1c/e11cc8d7f378baa1d46c84107bc40837d905318b.php deleted file mode 100644 index dff8c10..0000000 --- a/var/cache/phpstan/cache/PHPStan/e1/1c/e11cc8d7f378baa1d46c84107bc40837d905318b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1764084145-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/e3/03/e3039e315bd2ae75e92beef66856cb15c469ff85.php b/var/cache/phpstan/cache/PHPStan/e3/03/e3039e315bd2ae75e92beef66856cb15c469ff85.php deleted file mode 100644 index 2e6dfd7..0000000 --- a/var/cache/phpstan/cache/PHPStan/e3/03/e3039e315bd2ae75e92beef66856cb15c469ff85.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768835655-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/e4/b7/e4b74b5cc3d5179debf25a6d89af03a7366737a3.php b/var/cache/phpstan/cache/PHPStan/e4/b7/e4b74b5cc3d5179debf25a6d89af03a7366737a3.php deleted file mode 100644 index 85d30ea..0000000 --- a/var/cache/phpstan/cache/PHPStan/e4/b7/e4b74b5cc3d5179debf25a6d89af03a7366737a3.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/e5/ec/e5ec2b0aad70a7e91fb77e518d99f1acf8c15815.php b/var/cache/phpstan/cache/PHPStan/e5/ec/e5ec2b0aad70a7e91fb77e518d99f1acf8c15815.php deleted file mode 100644 index a9248fb..0000000 --- a/var/cache/phpstan/cache/PHPStan/e5/ec/e5ec2b0aad70a7e91fb77e518d99f1acf8c15815.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768835655-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/e7/80/e780ea39b9d3f78bd6185d04444f3134128f69b8.php b/var/cache/phpstan/cache/PHPStan/e7/80/e780ea39b9d3f78bd6185d04444f3134128f69b8.php deleted file mode 100644 index a0fddcd..0000000 --- a/var/cache/phpstan/cache/PHPStan/e7/80/e780ea39b9d3f78bd6185d04444f3134128f69b8.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/e7/b9/e7b9d56203a1355c23b33a0bf9c610bed582cc5c.php b/var/cache/phpstan/cache/PHPStan/e7/b9/e7b9d56203a1355c23b33a0bf9c610bed582cc5c.php deleted file mode 100644 index 829c51a..0000000 --- a/var/cache/phpstan/cache/PHPStan/e7/b9/e7b9d56203a1355c23b33a0bf9c610bed582cc5c.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768835655-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/e8/5e/e85e8a12386df4098f0cba20aec14ae058fbbb42.php b/var/cache/phpstan/cache/PHPStan/e8/5e/e85e8a12386df4098f0cba20aec14ae058fbbb42.php deleted file mode 100644 index e59435d..0000000 --- a/var/cache/phpstan/cache/PHPStan/e8/5e/e85e8a12386df4098f0cba20aec14ae058fbbb42.php +++ /dev/null @@ -1,283 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/sebastian/diff/src/MemoryEfficientLongestCommonSubsequenceCalculator.php' => - array ( - 0 => 'c052d026d8782a610a928632bfaada65ff98510c', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\memoryefficientlongestcommonsubsequencecalculator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\calculate', - 1 => 'sebastianbergmann\\diff\\length', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/diff/src/Exception/ConfigurationException.php' => - array ( - 0 => '571cbfb177038436a3e578ac8c70aadeecd6e1bd', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\configurationexception', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/diff/src/Exception/Exception.php' => - array ( - 0 => '865e3da032089b0a5694654f5f4f50be667a495b', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/diff/src/Exception/InvalidArgumentException.php' => - array ( - 0 => 'b28e42d650f365b33fbdea839fcabdc7caec6327', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\invalidargumentexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/diff/src/Parser.php' => - array ( - 0 => '2c85a238a84a260ce1b734ceb8c57d499b5fab19', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\parser', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\parse', - 1 => 'sebastianbergmann\\diff\\parsefilediff', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/diff/src/Output/StrictUnifiedDiffOutputBuilder.php' => - array ( - 0 => '98ce4571fddb73df039e92ba3d615e869e7508dc', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/diff/src/Output/DiffOnlyOutputBuilder.php' => - array ( - 0 => '5ad1a5d9d2d6162b9c0b70dbfcb01d3a177340f0', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\output\\diffonlyoutputbuilder', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\output\\__construct', - 1 => 'sebastianbergmann\\diff\\output\\getdiff', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/diff/src/Output/AbstractChunkOutputBuilder.php' => - array ( - 0 => 'c881f0ace7bba93331837f68c877d11c15d466f6', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\output\\abstractchunkoutputbuilder', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\output\\getcommonchunks', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/diff/src/Output/UnifiedDiffOutputBuilder.php' => - array ( - 0 => 'f0418dbc4fb82021df199609392cf05ea4f1b47b', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/diff/src/Chunk.php' => - array ( - 0 => '7242bf12a10fc69bf9cf611a8edb8d00cba83c0b', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/diff/src/Line.php' => - array ( - 0 => 'fa60cb36ed5c6a136c0d08ee83df6b3a6b8aade6', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/diff/src/Differ.php' => - array ( - 0 => 'f22c63e231e90f81ba15e5e2b1191d62158dd151', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/diff/src/TimeEfficientLongestCommonSubsequenceCalculator.php' => - array ( - 0 => '48e5cf957d8b396ab9b3abe976a8def9fb06c10d', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\timeefficientlongestcommonsubsequencecalculator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\calculate', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/sebastian/diff/src/LongestCommonSubsequenceCalculator.php' => - array ( - 0 => '48dc5b3654bf8d4950bbdb6af729f6dcf13bda16', - 1 => - array ( - 0 => 'sebastianbergmann\\diff\\longestcommonsubsequencecalculator', - ), - 2 => - array ( - 0 => 'sebastianbergmann\\diff\\calculate', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/e8/76/e8760ffbbd10b44eba54089fdad32973731985d7.php b/var/cache/phpstan/cache/PHPStan/e8/76/e8760ffbbd10b44eba54089fdad32973731985d7.php deleted file mode 100644 index 46cd4f2..0000000 --- a/var/cache/phpstan/cache/PHPStan/e8/76/e8760ffbbd10b44eba54089fdad32973731985d7.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ea/eb/eaeb975e06b5c76bfbe711f3a678e8a89467c781.php b/var/cache/phpstan/cache/PHPStan/ea/eb/eaeb975e06b5c76bfbe711f3a678e8a89467c781.php deleted file mode 100644 index df95a26..0000000 --- a/var/cache/phpstan/cache/PHPStan/ea/eb/eaeb975e06b5c76bfbe711f3a678e8a89467c781.php +++ /dev/null @@ -1,7 +0,0 @@ - '1763674952-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/eb/38/eb3857be2d89348890b940b50c26910e20887310.php b/var/cache/phpstan/cache/PHPStan/eb/38/eb3857be2d89348890b940b50c26910e20887310.php deleted file mode 100644 index 1e82d57..0000000 --- a/var/cache/phpstan/cache/PHPStan/eb/38/eb3857be2d89348890b940b50c26910e20887310.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179077-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ec/18/ec18776124c9d275cb9e290b0864e3a7244b90c5.php b/var/cache/phpstan/cache/PHPStan/ec/18/ec18776124c9d275cb9e290b0864e3a7244b90c5.php deleted file mode 100644 index 2c11a51..0000000 --- a/var/cache/phpstan/cache/PHPStan/ec/18/ec18776124c9d275cb9e290b0864e3a7244b90c5.php +++ /dev/null @@ -1,18489 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/PreCondition.php' => - array ( - 0 => 'd5b4eb0fd2e561f3d217a089eb1cdf4e780438b8', - 1 => - array ( - 0 => 'phpunit\\metadata\\precondition', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isprecondition', - 2 => 'phpunit\\metadata\\priority', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/BackupGlobals.php' => - array ( - 0 => '45b4ab01e8029b8dc0ab4cc290f71b43760dfbcd', - 1 => - array ( - 0 => 'phpunit\\metadata\\backupglobals', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isbackupglobals', - 2 => 'phpunit\\metadata\\enabled', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/DoesNotPerformAssertions.php' => - array ( - 0 => 'b17d64d572cf95638a4bc6dc5f7fa17f60e96459', - 1 => - array ( - 0 => 'phpunit\\metadata\\doesnotperformassertions', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\isdoesnotperformassertions', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/MetadataCollection.php' => - array ( - 0 => 'f6fc777907cfc39fc258866c709f21bd28a04de0', - 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\\isallowmockobjectswithoutexpectations', - 13 => 'phpunit\\metadata\\isbackupglobals', - 14 => 'phpunit\\metadata\\isbackupstaticproperties', - 15 => 'phpunit\\metadata\\isbeforeclass', - 16 => 'phpunit\\metadata\\isbefore', - 17 => 'phpunit\\metadata\\iscoversnamespace', - 18 => 'phpunit\\metadata\\iscoversclass', - 19 => 'phpunit\\metadata\\iscoversclassesthatextendclass', - 20 => 'phpunit\\metadata\\iscoversclassesthatimplementinterface', - 21 => 'phpunit\\metadata\\iscoverstrait', - 22 => 'phpunit\\metadata\\iscoversfunction', - 23 => 'phpunit\\metadata\\iscoversmethod', - 24 => 'phpunit\\metadata\\isexcludeglobalvariablefrombackup', - 25 => 'phpunit\\metadata\\isexcludestaticpropertyfrombackup', - 26 => 'phpunit\\metadata\\iscoversnothing', - 27 => 'phpunit\\metadata\\isdataprovider', - 28 => 'phpunit\\metadata\\isdepends', - 29 => 'phpunit\\metadata\\isdependsonclass', - 30 => 'phpunit\\metadata\\isdependsonmethod', - 31 => 'phpunit\\metadata\\isdisablereturnvaluegenerationfortestdoubles', - 32 => 'phpunit\\metadata\\isdoesnotperformassertions', - 33 => 'phpunit\\metadata\\isgroup', - 34 => 'phpunit\\metadata\\isignoredeprecations', - 35 => 'phpunit\\metadata\\isignorephpunitdeprecations', - 36 => 'phpunit\\metadata\\isignorephpunitwarnings', - 37 => 'phpunit\\metadata\\isrunclassinseparateprocess', - 38 => 'phpunit\\metadata\\isruninseparateprocess', - 39 => 'phpunit\\metadata\\isruntestsinseparateprocesses', - 40 => 'phpunit\\metadata\\istest', - 41 => 'phpunit\\metadata\\isprecondition', - 42 => 'phpunit\\metadata\\ispostcondition', - 43 => 'phpunit\\metadata\\ispreserveglobalstate', - 44 => 'phpunit\\metadata\\isrequiresmethod', - 45 => 'phpunit\\metadata\\isrequiresfunction', - 46 => 'phpunit\\metadata\\isrequiresoperatingsystem', - 47 => 'phpunit\\metadata\\isrequiresoperatingsystemfamily', - 48 => 'phpunit\\metadata\\isrequiresphp', - 49 => 'phpunit\\metadata\\isrequiresphpextension', - 50 => 'phpunit\\metadata\\isrequiresphpunit', - 51 => 'phpunit\\metadata\\isrequiresphpunitextension', - 52 => 'phpunit\\metadata\\isrequiresenvironmentvariable', - 53 => 'phpunit\\metadata\\iswithenvironmentvariable', - 54 => 'phpunit\\metadata\\isrequiressetting', - 55 => 'phpunit\\metadata\\istestdox', - 56 => 'phpunit\\metadata\\istestdoxformatter', - 57 => 'phpunit\\metadata\\istestwith', - 58 => 'phpunit\\metadata\\isusesnamespace', - 59 => 'phpunit\\metadata\\isusesclass', - 60 => 'phpunit\\metadata\\isusesclassesthatextendclass', - 61 => 'phpunit\\metadata\\isusesclassesthatimplementinterface', - 62 => 'phpunit\\metadata\\isusestrait', - 63 => 'phpunit\\metadata\\isusesfunction', - 64 => 'phpunit\\metadata\\isusesmethod', - 65 => 'phpunit\\metadata\\iswithouterrorhandler', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/Exception/InvalidVersionRequirementException.php' => - array ( - 0 => 'feebefcc2bb574e2ef80a50bb0514eebdb113b50', - 1 => - array ( - 0 => 'phpunit\\metadata\\invalidversionrequirementexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/Exception/NoVersionRequirementException.php' => - array ( - 0 => '90ef9fe1cec8a892ec6c920ecc3d256812cd809c', - 1 => - array ( - 0 => 'phpunit\\metadata\\noversionrequirementexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/Exception/Exception.php' => - array ( - 0 => '3f7b6b5be892cc9a9c306238e1a51f5d3d4c26c3', - 1 => - array ( - 0 => 'phpunit\\metadata\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/Exception/InvalidAttributeException.php' => - array ( - 0 => '13244d61de84ccf2e172a5099b41a4465490ced9', - 1 => - array ( - 0 => 'phpunit\\metadata\\invalidattributeexception', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/AllowMockObjectsWithoutExpectations.php' => - array ( - 0 => 'a802c541e25e5cbde532321e74aa3b65f0e022b8', - 1 => - array ( - 0 => 'phpunit\\metadata\\allowmockobjectswithoutexpectations', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\isallowmockobjectswithoutexpectations', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/After.php' => - array ( - 0 => '27d7125da1bc6e9488d456c548973a8155bdba20', - 1 => - array ( - 0 => 'phpunit\\metadata\\after', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isafter', - 2 => 'phpunit\\metadata\\priority', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/CoversClass.php' => - array ( - 0 => 'aa39abc5f37a076b8e00d2b8be4d4e3ab4a9af73', - 1 => - array ( - 0 => 'phpunit\\metadata\\coversclass', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\iscoversclass', - 2 => 'phpunit\\metadata\\classname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/DataProvider.php' => - array ( - 0 => '9d8907b3cf9d1cad404c342c26e4139cd752a297', - 1 => - array ( - 0 => 'phpunit\\metadata\\dataprovider', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isdataprovider', - 2 => 'phpunit\\metadata\\classname', - 3 => 'phpunit\\metadata\\methodname', - 4 => 'phpunit\\metadata\\validateargumentcount', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/PreserveGlobalState.php' => - array ( - 0 => '535e4a8e802c78fdb929dd05513d0b4d7f8803bb', - 1 => - array ( - 0 => 'phpunit\\metadata\\preserveglobalstate', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\ispreserveglobalstate', - 2 => 'phpunit\\metadata\\enabled', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/BeforeClass.php' => - array ( - 0 => '83dcb5a6be400245496270e137a0e943d134ffa1', - 1 => - array ( - 0 => 'phpunit\\metadata\\beforeclass', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isbeforeclass', - 2 => 'phpunit\\metadata\\priority', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/ExcludeStaticPropertyFromBackup.php' => - array ( - 0 => '9fbf2f7772c56611948023150849ca6aac135a14', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/RunInSeparateProcess.php' => - array ( - 0 => 'd4b2556df0523f2e9b2081202b90acdf0ee6e2e8', - 1 => - array ( - 0 => 'phpunit\\metadata\\runinseparateprocess', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\isruninseparateprocess', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/DisableReturnValueGenerationForTestDoubles.php' => - array ( - 0 => '14c8c8d615aa1db3fe8c5873cd1e40919be22631', - 1 => - array ( - 0 => 'phpunit\\metadata\\disablereturnvaluegenerationfortestdoubles', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\isdisablereturnvaluegenerationfortestdoubles', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/CoversTrait.php' => - array ( - 0 => 'b0d0fe008de282df9d776061eca6fe37c15e33ae', - 1 => - array ( - 0 => 'phpunit\\metadata\\coverstrait', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\iscoverstrait', - 2 => 'phpunit\\metadata\\traitname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/Before.php' => - array ( - 0 => '83c1814b5749e02c1eb1c81fc49ecc66a6892f47', - 1 => - array ( - 0 => 'phpunit\\metadata\\before', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isbefore', - 2 => 'phpunit\\metadata\\priority', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/Test.php' => - array ( - 0 => 'f5c2a2790f58a2105579268d4d0f6ff963a80fef', - 1 => - array ( - 0 => 'phpunit\\metadata\\test', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\istest', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/CoversMethod.php' => - array ( - 0 => '9bc0e76da94557d78736b98d5b5ae2880b7b8054', - 1 => - array ( - 0 => 'phpunit\\metadata\\coversmethod', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\iscoversmethod', - 2 => 'phpunit\\metadata\\classname', - 3 => 'phpunit\\metadata\\methodname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/UsesFunction.php' => - array ( - 0 => '1fcaf33bc228547d17af8a6296274b729bb7ebe5', - 1 => - array ( - 0 => 'phpunit\\metadata\\usesfunction', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isusesfunction', - 2 => 'phpunit\\metadata\\functionname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/CoversNamespace.php' => - array ( - 0 => '190bf63a44dbe0706d54874fbd80de9c366b9b5b', - 1 => - array ( - 0 => 'phpunit\\metadata\\coversnamespace', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\iscoversnamespace', - 2 => 'phpunit\\metadata\\namespace', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/UsesMethod.php' => - array ( - 0 => 'dce80fe660f913332763a7282a2b5869e5faf287', - 1 => - array ( - 0 => 'phpunit\\metadata\\usesmethod', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isusesmethod', - 2 => 'phpunit\\metadata\\classname', - 3 => 'phpunit\\metadata\\methodname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/IgnorePhpunitDeprecations.php' => - array ( - 0 => '2b672f381e5f32851068b058ba03f4dd9d008fe1', - 1 => - array ( - 0 => 'phpunit\\metadata\\ignorephpunitdeprecations', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\isignorephpunitdeprecations', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/RequiresFunction.php' => - array ( - 0 => '0a0370aecf9d4e6006bb1be49a8a978b3f3da947', - 1 => - array ( - 0 => 'phpunit\\metadata\\requiresfunction', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isrequiresfunction', - 2 => 'phpunit\\metadata\\functionname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/RequiresPhpExtension.php' => - array ( - 0 => 'c74b5388363d995842ade8f58b5634e1d687f839', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/DependsOnClass.php' => - array ( - 0 => '05d248c3b20560c6be3386f7e5545f5c0fc00306', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/RunTestsInSeparateProcesses.php' => - array ( - 0 => 'ab4d9f54f1a8b2a72553cd378317033ac642ace3', - 1 => - array ( - 0 => 'phpunit\\metadata\\runtestsinseparateprocesses', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\isruntestsinseparateprocesses', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/DependsOnMethod.php' => - array ( - 0 => '67d22fb88c9fd60635498bbbe2d6911e316e0dc8', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/RequiresPhpunit.php' => - array ( - 0 => '913d94d8cb29a925a335579be424c315fb24fbd9', - 1 => - array ( - 0 => 'phpunit\\metadata\\requiresphpunit', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isrequiresphpunit', - 2 => 'phpunit\\metadata\\versionrequirement', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/BackupStaticProperties.php' => - array ( - 0 => 'b0eed104feac807c4d80f1caceb64f1ee8c084dc', - 1 => - array ( - 0 => 'phpunit\\metadata\\backupstaticproperties', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isbackupstaticproperties', - 2 => 'phpunit\\metadata\\enabled', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/WithEnvironmentVariable.php' => - array ( - 0 => '238ad6e2d4a2e60e3b58bca4d9f27a34ebf1f7e6', - 1 => - array ( - 0 => 'phpunit\\metadata\\withenvironmentvariable', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\iswithenvironmentvariable', - 2 => 'phpunit\\metadata\\environmentvariablename', - 3 => 'phpunit\\metadata\\value', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/RequiresOperatingSystem.php' => - array ( - 0 => 'ea3f0972638e4a8d3f661bee9c1922a360bbb2e3', - 1 => - array ( - 0 => 'phpunit\\metadata\\requiresoperatingsystem', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isrequiresoperatingsystem', - 2 => 'phpunit\\metadata\\operatingsystem', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/UsesNamespace.php' => - array ( - 0 => 'a5603cc9b11d7fddf6eee8c851b327b98209f383', - 1 => - array ( - 0 => 'phpunit\\metadata\\usesnamespace', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isusesnamespace', - 2 => 'phpunit\\metadata\\namespace', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/UsesTrait.php' => - array ( - 0 => 'c0728a4fd01c2ed58f6e886b3dcf364091104208', - 1 => - array ( - 0 => 'phpunit\\metadata\\usestrait', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isusestrait', - 2 => 'phpunit\\metadata\\traitname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/TestDoxFormatter.php' => - array ( - 0 => 'e6e87ace65f22fc4b5ac5d59c78a10607706bf3b', - 1 => - array ( - 0 => 'phpunit\\metadata\\testdoxformatter', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\istestdoxformatter', - 2 => 'phpunit\\metadata\\classname', - 3 => 'phpunit\\metadata\\methodname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/IgnoreDeprecations.php' => - array ( - 0 => '0e0d267f00440c406d1d129a6a75d14ab9ba995b', - 1 => - array ( - 0 => 'phpunit\\metadata\\ignoredeprecations', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isignoredeprecations', - 2 => 'phpunit\\metadata\\messagepattern', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/UsesClassesThatExtendClass.php' => - array ( - 0 => '809b6429271ab9871729c369f10278fefa6f947b', - 1 => - array ( - 0 => 'phpunit\\metadata\\usesclassesthatextendclass', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isusesclassesthatextendclass', - 2 => 'phpunit\\metadata\\classname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/Group.php' => - array ( - 0 => '5c6a00d7c134945f366b433241f97221462e3b19', - 1 => - array ( - 0 => 'phpunit\\metadata\\group', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isgroup', - 2 => 'phpunit\\metadata\\groupname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/ExcludeGlobalVariableFromBackup.php' => - array ( - 0 => '73f960b7f96fab7cc33b09a7e36e3c94b44d203f', - 1 => - array ( - 0 => 'phpunit\\metadata\\excludeglobalvariablefrombackup', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isexcludeglobalvariablefrombackup', - 2 => 'phpunit\\metadata\\globalvariablename', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/CoversClassesThatImplementInterface.php' => - array ( - 0 => '9af5bf8d41d7a28a1131566a445e405b84eaa083', - 1 => - array ( - 0 => 'phpunit\\metadata\\coversclassesthatimplementinterface', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\iscoversclassesthatimplementinterface', - 2 => 'phpunit\\metadata\\interfacename', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/RequiresEnvironmentVariable.php' => - array ( - 0 => '17e5873d8257b6918c76bc5997065dc7bc42463a', - 1 => - array ( - 0 => 'phpunit\\metadata\\requiresenvironmentvariable', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isrequiresenvironmentvariable', - 2 => 'phpunit\\metadata\\environmentvariablename', - 3 => 'phpunit\\metadata\\value', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/RunClassInSeparateProcess.php' => - array ( - 0 => '187f82b00d52b64ed987ffc6801aa47f438ea450', - 1 => - array ( - 0 => 'phpunit\\metadata\\runclassinseparateprocess', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\isrunclassinseparateprocess', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/UsesClass.php' => - array ( - 0 => '376ebc652593c66c92f28171d8d8d1a251277156', - 1 => - array ( - 0 => 'phpunit\\metadata\\usesclass', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isusesclass', - 2 => 'phpunit\\metadata\\classname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/CoversClassesThatExtendClass.php' => - array ( - 0 => '1b99f268e9adb884ee7dd2904ff4811194450e0d', - 1 => - array ( - 0 => 'phpunit\\metadata\\coversclassesthatextendclass', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\iscoversclassesthatextendclass', - 2 => 'phpunit\\metadata\\classname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/CoversNothing.php' => - array ( - 0 => '193f8ab93b9d169d7163a87e409f9169649bb031', - 1 => - array ( - 0 => 'phpunit\\metadata\\coversnothing', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\iscoversnothing', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/IgnorePhpunitWarnings.php' => - array ( - 0 => 'de83a9e8d8c4ba21ba6f30e5c69bb09240e19a98', - 1 => - array ( - 0 => 'phpunit\\metadata\\ignorephpunitwarnings', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isignorephpunitwarnings', - 2 => 'phpunit\\metadata\\messagepattern', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/Metadata.php' => - array ( - 0 => '0de4c900247e5d96df508c38cdfe06737a0cac5b', - 1 => - array ( - 0 => 'phpunit\\metadata\\metadata', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\after', - 1 => 'phpunit\\metadata\\afterclass', - 2 => 'phpunit\\metadata\\allowmockobjectswithoutexpectations', - 3 => 'phpunit\\metadata\\backupglobalsonclass', - 4 => 'phpunit\\metadata\\backupglobalsonmethod', - 5 => 'phpunit\\metadata\\backupstaticpropertiesonclass', - 6 => 'phpunit\\metadata\\backupstaticpropertiesonmethod', - 7 => 'phpunit\\metadata\\before', - 8 => 'phpunit\\metadata\\beforeclass', - 9 => 'phpunit\\metadata\\coversnamespace', - 10 => 'phpunit\\metadata\\coversclass', - 11 => 'phpunit\\metadata\\coversclassesthatextendclass', - 12 => 'phpunit\\metadata\\coversclassesthatimplementinterface', - 13 => 'phpunit\\metadata\\coverstrait', - 14 => 'phpunit\\metadata\\coversmethod', - 15 => 'phpunit\\metadata\\coversfunction', - 16 => 'phpunit\\metadata\\coversnothingonclass', - 17 => 'phpunit\\metadata\\coversnothingonmethod', - 18 => 'phpunit\\metadata\\dataprovider', - 19 => 'phpunit\\metadata\\dependsonclass', - 20 => 'phpunit\\metadata\\dependsonmethod', - 21 => 'phpunit\\metadata\\disablereturnvaluegenerationfortestdoubles', - 22 => 'phpunit\\metadata\\doesnotperformassertionsonclass', - 23 => 'phpunit\\metadata\\doesnotperformassertionsonmethod', - 24 => 'phpunit\\metadata\\excludeglobalvariablefrombackuponclass', - 25 => 'phpunit\\metadata\\excludeglobalvariablefrombackuponmethod', - 26 => 'phpunit\\metadata\\excludestaticpropertyfrombackuponclass', - 27 => 'phpunit\\metadata\\excludestaticpropertyfrombackuponmethod', - 28 => 'phpunit\\metadata\\grouponclass', - 29 => 'phpunit\\metadata\\grouponmethod', - 30 => 'phpunit\\metadata\\ignoredeprecationsonclass', - 31 => 'phpunit\\metadata\\ignoredeprecationsonmethod', - 32 => 'phpunit\\metadata\\ignorephpunitdeprecationsonclass', - 33 => 'phpunit\\metadata\\ignorephpunitdeprecationsonmethod', - 34 => 'phpunit\\metadata\\postcondition', - 35 => 'phpunit\\metadata\\precondition', - 36 => 'phpunit\\metadata\\preserveglobalstateonclass', - 37 => 'phpunit\\metadata\\preserveglobalstateonmethod', - 38 => 'phpunit\\metadata\\requiresfunctiononclass', - 39 => 'phpunit\\metadata\\requiresfunctiononmethod', - 40 => 'phpunit\\metadata\\requiresmethodonclass', - 41 => 'phpunit\\metadata\\requiresmethodonmethod', - 42 => 'phpunit\\metadata\\requiresoperatingsystemonclass', - 43 => 'phpunit\\metadata\\requiresoperatingsystemonmethod', - 44 => 'phpunit\\metadata\\requiresoperatingsystemfamilyonclass', - 45 => 'phpunit\\metadata\\requiresoperatingsystemfamilyonmethod', - 46 => 'phpunit\\metadata\\requiresphponclass', - 47 => 'phpunit\\metadata\\requiresphponmethod', - 48 => 'phpunit\\metadata\\requiresphpextensiononclass', - 49 => 'phpunit\\metadata\\requiresphpextensiononmethod', - 50 => 'phpunit\\metadata\\requiresphpunitonclass', - 51 => 'phpunit\\metadata\\requiresphpunitonmethod', - 52 => 'phpunit\\metadata\\requiresphpunitextensiononclass', - 53 => 'phpunit\\metadata\\requiresphpunitextensiononmethod', - 54 => 'phpunit\\metadata\\requiresenvironmentvariableonclass', - 55 => 'phpunit\\metadata\\requiresenvironmentvariableonmethod', - 56 => 'phpunit\\metadata\\withenvironmentvariableonclass', - 57 => 'phpunit\\metadata\\withenvironmentvariableonmethod', - 58 => 'phpunit\\metadata\\requiressettingonclass', - 59 => 'phpunit\\metadata\\requiressettingonmethod', - 60 => 'phpunit\\metadata\\runclassinseparateprocess', - 61 => 'phpunit\\metadata\\runtestsinseparateprocesses', - 62 => 'phpunit\\metadata\\runinseparateprocess', - 63 => 'phpunit\\metadata\\test', - 64 => 'phpunit\\metadata\\testdoxonclass', - 65 => 'phpunit\\metadata\\testdoxonmethod', - 66 => 'phpunit\\metadata\\testdoxformatter', - 67 => 'phpunit\\metadata\\testwith', - 68 => 'phpunit\\metadata\\usesnamespace', - 69 => 'phpunit\\metadata\\usesclass', - 70 => 'phpunit\\metadata\\usesclassesthatextendclass', - 71 => 'phpunit\\metadata\\usesclassesthatimplementinterface', - 72 => 'phpunit\\metadata\\usestrait', - 73 => 'phpunit\\metadata\\usesfunction', - 74 => 'phpunit\\metadata\\usesmethod', - 75 => 'phpunit\\metadata\\withouterrorhandler', - 76 => 'phpunit\\metadata\\ignorephpunitwarnings', - 77 => 'phpunit\\metadata\\__construct', - 78 => 'phpunit\\metadata\\isclasslevel', - 79 => 'phpunit\\metadata\\ismethodlevel', - 80 => 'phpunit\\metadata\\isafter', - 81 => 'phpunit\\metadata\\isafterclass', - 82 => 'phpunit\\metadata\\isallowmockobjectswithoutexpectations', - 83 => 'phpunit\\metadata\\isbackupglobals', - 84 => 'phpunit\\metadata\\isbackupstaticproperties', - 85 => 'phpunit\\metadata\\isbeforeclass', - 86 => 'phpunit\\metadata\\isbefore', - 87 => 'phpunit\\metadata\\iscoversnamespace', - 88 => 'phpunit\\metadata\\iscoversclass', - 89 => 'phpunit\\metadata\\iscoversclassesthatextendclass', - 90 => 'phpunit\\metadata\\iscoversclassesthatimplementinterface', - 91 => 'phpunit\\metadata\\iscoverstrait', - 92 => 'phpunit\\metadata\\iscoversfunction', - 93 => 'phpunit\\metadata\\iscoversmethod', - 94 => 'phpunit\\metadata\\iscoversnothing', - 95 => 'phpunit\\metadata\\isdataprovider', - 96 => 'phpunit\\metadata\\isdependsonclass', - 97 => 'phpunit\\metadata\\isdependsonmethod', - 98 => 'phpunit\\metadata\\isdisablereturnvaluegenerationfortestdoubles', - 99 => 'phpunit\\metadata\\isdoesnotperformassertions', - 100 => 'phpunit\\metadata\\isexcludeglobalvariablefrombackup', - 101 => 'phpunit\\metadata\\isexcludestaticpropertyfrombackup', - 102 => 'phpunit\\metadata\\isgroup', - 103 => 'phpunit\\metadata\\isignoredeprecations', - 104 => 'phpunit\\metadata\\isignorephpunitdeprecations', - 105 => 'phpunit\\metadata\\isrunclassinseparateprocess', - 106 => 'phpunit\\metadata\\isruninseparateprocess', - 107 => 'phpunit\\metadata\\isruntestsinseparateprocesses', - 108 => 'phpunit\\metadata\\istest', - 109 => 'phpunit\\metadata\\isprecondition', - 110 => 'phpunit\\metadata\\ispostcondition', - 111 => 'phpunit\\metadata\\ispreserveglobalstate', - 112 => 'phpunit\\metadata\\isrequiresmethod', - 113 => 'phpunit\\metadata\\isrequiresfunction', - 114 => 'phpunit\\metadata\\isrequiresoperatingsystem', - 115 => 'phpunit\\metadata\\isrequiresoperatingsystemfamily', - 116 => 'phpunit\\metadata\\isrequiresphp', - 117 => 'phpunit\\metadata\\isrequiresphpextension', - 118 => 'phpunit\\metadata\\isrequiresphpunit', - 119 => 'phpunit\\metadata\\isrequiresphpunitextension', - 120 => 'phpunit\\metadata\\isrequiresenvironmentvariable', - 121 => 'phpunit\\metadata\\iswithenvironmentvariable', - 122 => 'phpunit\\metadata\\isrequiressetting', - 123 => 'phpunit\\metadata\\istestdox', - 124 => 'phpunit\\metadata\\istestdoxformatter', - 125 => 'phpunit\\metadata\\istestwith', - 126 => 'phpunit\\metadata\\isusesnamespace', - 127 => 'phpunit\\metadata\\isusesclass', - 128 => 'phpunit\\metadata\\isusesclassesthatextendclass', - 129 => 'phpunit\\metadata\\isusesclassesthatimplementinterface', - 130 => 'phpunit\\metadata\\isusestrait', - 131 => 'phpunit\\metadata\\isusesfunction', - 132 => 'phpunit\\metadata\\isusesmethod', - 133 => 'phpunit\\metadata\\iswithouterrorhandler', - 134 => 'phpunit\\metadata\\isignorephpunitwarnings', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/PostCondition.php' => - array ( - 0 => '5c051af041d092797aa7c9fe1d931806fac86d0a', - 1 => - array ( - 0 => 'phpunit\\metadata\\postcondition', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\ispostcondition', - 2 => 'phpunit\\metadata\\priority', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/Parser/AttributeParser.php' => - array ( - 0 => 'fd2513c47d67b9e8e8e3af757fabaa7a53c7d4b0', - 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', - 4 => 'phpunit\\metadata\\parser\\requirement', - 5 => 'phpunit\\metadata\\parser\\testasstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/Parser/Registry.php' => - array ( - 0 => '7dacbc2f5d184fa46f7c446cf0d8645da4d22c31', - 1 => - array ( - 0 => 'phpunit\\metadata\\parser\\registry', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\parser\\parser', - 1 => 'phpunit\\metadata\\parser\\build', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/TestDox.php' => - array ( - 0 => '40a3327f671ae4d540904e901c81e6331c66e164', - 1 => - array ( - 0 => 'phpunit\\metadata\\testdox', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\istestdox', - 2 => 'phpunit\\metadata\\text', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/RequiresOperatingSystemFamily.php' => - array ( - 0 => '813318e8b055313d669be4f59838a29c9a2e6604', - 1 => - array ( - 0 => 'phpunit\\metadata\\requiresoperatingsystemfamily', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isrequiresoperatingsystemfamily', - 2 => 'phpunit\\metadata\\operatingsystemfamily', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/Version/Requirement.php' => - array ( - 0 => '0f421f4a4992c346e495bc27345ec37bf2ccbfb8', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/AfterClass.php' => - array ( - 0 => '3c1f2254fd72edf666dbaae35a1d4eeed6d45d01', - 1 => - array ( - 0 => 'phpunit\\metadata\\afterclass', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isafterclass', - 2 => 'phpunit\\metadata\\priority', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/RequiresSetting.php' => - array ( - 0 => '3d8ca999375a3e53e0b333afd1c975c2b1ff27aa', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/RequiresMethod.php' => - array ( - 0 => '18379fe47c827cbc6298722e771f8f01a0e78583', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/TestWith.php' => - array ( - 0 => '7bd4819319406fb836d1a290ec11cc03c577ccdf', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/WithoutErrorHandler.php' => - array ( - 0 => 'c6e1e8c2ea375638b41921659546c0fb16aad57d', - 1 => - array ( - 0 => 'phpunit\\metadata\\withouterrorhandler', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\iswithouterrorhandler', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/RequiresPhp.php' => - array ( - 0 => '64de1e627ffb4c73a47a45e309664ad5d77ace6d', - 1 => - array ( - 0 => 'phpunit\\metadata\\requiresphp', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isrequiresphp', - 2 => 'phpunit\\metadata\\versionrequirement', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/UsesClassesThatImplementInterface.php' => - array ( - 0 => '093846b0237e52bfeb7e38b73f7bda281520b906', - 1 => - array ( - 0 => 'phpunit\\metadata\\usesclassesthatimplementinterface', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\isusesclassesthatimplementinterface', - 2 => 'phpunit\\metadata\\interfacename', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/Api/DataProvider.php' => - array ( - 0 => '816a5c2ac456eab60e55fc2f4531b9b5617d1dc2', - 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\\formatkey', - 4 => 'phpunit\\metadata\\api\\triggerwarningformixingofdataproviderandtestwith', - 5 => 'phpunit\\metadata\\api\\triggerwarningforargumentcount', - 6 => 'phpunit\\metadata\\api\\testvalueobject', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/Api/ProvidedData.php' => - array ( - 0 => '1febb69f7ad2fd97cc9f37f45b2d2c823945d1f4', - 1 => - array ( - 0 => 'phpunit\\metadata\\api\\provideddata', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\api\\__construct', - 1 => 'phpunit\\metadata\\api\\label', - 2 => 'phpunit\\metadata\\api\\value', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/Api/HookMethods.php' => - array ( - 0 => '5fe8b047363c2e7ae7ce40c88cea5cfb854ba903', - 1 => - array ( - 0 => 'phpunit\\metadata\\api\\hookmethods', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\api\\hookmethods', - 1 => 'phpunit\\metadata\\api\\ishookmethod', - 2 => 'phpunit\\metadata\\api\\emptyhookmethodsarray', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/Api/CodeCoverage.php' => - array ( - 0 => '0fc05501a4912db4e835a4d1e2f01cdff42dd65b', - 1 => - array ( - 0 => 'phpunit\\metadata\\api\\codecoverage', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\api\\coverstargets', - 1 => 'phpunit\\metadata\\api\\usestargets', - 2 => 'phpunit\\metadata\\api\\shouldcodecoveragebecollectedfor', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/Api/Groups.php' => - array ( - 0 => 'f5a56c8b74e5fef689462987285450119f567770', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/Api/Dependencies.php' => - array ( - 0 => '9cc29b39e06db7f0f5e3a941a24158daf4f2c976', - 1 => - array ( - 0 => 'phpunit\\metadata\\api\\dependencies', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\api\\dependencies', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/Api/Requirements.php' => - array ( - 0 => 'da5776373b1eb5fcc2564e640e64662d6bb38e09', - 1 => - array ( - 0 => 'phpunit\\metadata\\api\\requirements', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\api\\requirementsnotsatisfiedfor', - 1 => 'phpunit\\metadata\\api\\requiresxdebug', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Metadata/CoversFunction.php' => - array ( - 0 => 'ddcb4d1e9a731f3e5afca7f3fcb8a96d158ef248', - 1 => - array ( - 0 => 'phpunit\\metadata\\coversfunction', - ), - 2 => - array ( - 0 => 'phpunit\\metadata\\__construct', - 1 => 'phpunit\\metadata\\iscoversfunction', - 2 => 'phpunit\\metadata\\functionname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Extension/PharLoader.php' => - array ( - 0 => '763092772a7de545b6736e684c2dc9d655977ae4', - 1 => - array ( - 0 => 'phpunit\\runner\\extension\\pharloader', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\extension\\loadpharextensionsindirectory', - 1 => 'phpunit\\runner\\extension\\phpunitversion', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Extension/ExtensionBootstrapper.php' => - array ( - 0 => 'd2de962841fc90888e065e32567bf7b6c73229b7', - 1 => - array ( - 0 => 'phpunit\\runner\\extension\\extensionbootstrapper', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\extension\\__construct', - 1 => 'phpunit\\runner\\extension\\bootstrap', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/HookMethod/HookMethod.php' => - array ( - 0 => '0a5fe4a26e2a0c075bec0866151998e3028b2cb3', - 1 => - array ( - 0 => 'phpunit\\runner\\hookmethod', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\__construct', - 1 => 'phpunit\\runner\\methodname', - 2 => 'phpunit\\runner\\priority', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Exception/InvalidOrderException.php' => - array ( - 0 => '56a5bde3a8b085da5fa8d7984fd56cf2ddbd9459', - 1 => - array ( - 0 => 'phpunit\\runner\\invalidorderexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Exception/Exception.php' => - array ( - 0 => '7054bf0ecb6a86f8168dc75c6f4bd08fcdbb71df', - 1 => - array ( - 0 => 'phpunit\\runner\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Exception/ErrorException.php' => - array ( - 0 => 'dd6f4873fb85566825400dd5649b21e1a0dee0d1', - 1 => - array ( - 0 => 'phpunit\\runner\\errorexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/BackedUpEnvironmentVariable.php' => - array ( - 0 => '42766043bc36788ab71224186de7623617fd7218', - 1 => - array ( - 0 => 'phpunit\\runner\\backedupenvironmentvariable', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\create', - 1 => 'phpunit\\runner\\__construct', - 2 => 'phpunit\\runner\\restore', - 3 => 'phpunit\\runner\\restoregetenv', - 4 => 'phpunit\\runner\\restoresuperglobal', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/TestResult/Facade.php' => - array ( - 0 => 'b83e29b941e1c8f322535639ddd40ea28e2706ed', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/TestResult/Collector.php' => - array ( - 0 => '3cd0021b325751282325305176b0b10523e51efc', - 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\\beforetestclassmethodfailed', - 10 => 'phpunit\\testrunner\\testresult\\aftertestclassmethoderrored', - 11 => 'phpunit\\testrunner\\testresult\\aftertestclassmethodfailed', - 12 => 'phpunit\\testrunner\\testresult\\testerrored', - 13 => 'phpunit\\testrunner\\testresult\\testfailed', - 14 => 'phpunit\\testrunner\\testresult\\testmarkedincomplete', - 15 => 'phpunit\\testrunner\\testresult\\testskipped', - 16 => 'phpunit\\testrunner\\testresult\\testconsideredrisky', - 17 => 'phpunit\\testrunner\\testresult\\testtriggereddeprecation', - 18 => 'phpunit\\testrunner\\testresult\\testtriggeredphpdeprecation', - 19 => 'phpunit\\testrunner\\testresult\\testtriggeredphpunitdeprecation', - 20 => 'phpunit\\testrunner\\testresult\\testtriggeredphpunitnotice', - 21 => 'phpunit\\testrunner\\testresult\\testtriggerederror', - 22 => 'phpunit\\testrunner\\testresult\\testtriggerednotice', - 23 => 'phpunit\\testrunner\\testresult\\testtriggeredphpnotice', - 24 => 'phpunit\\testrunner\\testresult\\testtriggeredwarning', - 25 => 'phpunit\\testrunner\\testresult\\testtriggeredphpwarning', - 26 => 'phpunit\\testrunner\\testresult\\testtriggeredphpuniterror', - 27 => 'phpunit\\testrunner\\testresult\\testtriggeredphpunitwarning', - 28 => 'phpunit\\testrunner\\testresult\\testrunnertriggereddeprecation', - 29 => 'phpunit\\testrunner\\testresult\\testrunnertriggerednotice', - 30 => 'phpunit\\testrunner\\testresult\\testrunnertriggeredwarning', - 31 => 'phpunit\\testrunner\\testresult\\childprocesserrored', - 32 => 'phpunit\\testrunner\\testresult\\haserroredtests', - 33 => 'phpunit\\testrunner\\testresult\\hasfailedtests', - 34 => 'phpunit\\testrunner\\testresult\\hasriskytests', - 35 => 'phpunit\\testrunner\\testresult\\hasskippedtests', - 36 => 'phpunit\\testrunner\\testresult\\hasincompletetests', - 37 => 'phpunit\\testrunner\\testresult\\hasdeprecations', - 38 => 'phpunit\\testrunner\\testresult\\hasnotices', - 39 => 'phpunit\\testrunner\\testresult\\haswarnings', - 40 => 'phpunit\\testrunner\\testresult\\issueid', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/TestResult/PassedTests.php' => - array ( - 0 => '50468da341d59951c758687f5af50707c37fa8be', - 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\\hasreturnvalue', - 8 => 'phpunit\\testrunner\\testresult\\returnvalue', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/BeforeTestClassMethodFailedSubscriber.php' => - array ( - 0 => 'b3e14178101f3108e01d3c1c2e4dd8ab00c8382d', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\beforetestclassmethodfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestTriggeredPhpunitNoticeSubscriber.php' => - array ( - 0 => '0a92593390428c3dd9b824024766cacdf78761cc', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testtriggeredphpunitnoticesubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/TestRunnerTriggeredNoticeSubscriber.php' => - array ( - 0 => '0204957567322215aecedcac6028dfa2e2f00b4d', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\testrunnertriggerednoticesubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/ChildProcessErroredSubscriber.php' => - array ( - 0 => '94f5b3cdce1dcb1a98083f08ca2bb6435206e6ca', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\childprocesserroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/TestResult/Subscriber/AfterTestClassMethodFailedSubscriber.php' => - array ( - 0 => 'd525828b22187aa0963a347b47d892a8d7de3bec', - 1 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\aftertestclassmethodfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\testresult\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/TestResult/TestResult.php' => - array ( - 0 => '952fd3a2e86e58e66b5923e0322cdcbc5537b6bc', - 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\\testtriggeredphpunitnoticeevents', - 28 => 'phpunit\\testrunner\\testresult\\numberoftestswithtesttriggeredphpunitnoticeevents', - 29 => 'phpunit\\testrunner\\testresult\\hastesttriggeredphpunitnoticeevents', - 30 => 'phpunit\\testrunner\\testresult\\testtriggeredphpunitwarningevents', - 31 => 'phpunit\\testrunner\\testresult\\numberoftestswithtesttriggeredphpunitwarningevents', - 32 => 'phpunit\\testrunner\\testresult\\hastesttriggeredphpunitwarningevents', - 33 => 'phpunit\\testrunner\\testresult\\testrunnertriggereddeprecationevents', - 34 => 'phpunit\\testrunner\\testresult\\numberoftestrunnertriggereddeprecationevents', - 35 => 'phpunit\\testrunner\\testresult\\hastestrunnertriggereddeprecationevents', - 36 => 'phpunit\\testrunner\\testresult\\testrunnertriggerednoticeevents', - 37 => 'phpunit\\testrunner\\testresult\\numberoftestrunnertriggerednoticeevents', - 38 => 'phpunit\\testrunner\\testresult\\hastestrunnertriggerednoticeevents', - 39 => 'phpunit\\testrunner\\testresult\\testrunnertriggeredwarningevents', - 40 => 'phpunit\\testrunner\\testresult\\numberoftestrunnertriggeredwarningevents', - 41 => 'phpunit\\testrunner\\testresult\\hastestrunnertriggeredwarningevents', - 42 => 'phpunit\\testrunner\\testresult\\wassuccessful', - 43 => 'phpunit\\testrunner\\testresult\\hasissues', - 44 => 'phpunit\\testrunner\\testresult\\hastestswithissues', - 45 => 'phpunit\\testrunner\\testresult\\errors', - 46 => 'phpunit\\testrunner\\testresult\\deprecations', - 47 => 'phpunit\\testrunner\\testresult\\notices', - 48 => 'phpunit\\testrunner\\testresult\\warnings', - 49 => 'phpunit\\testrunner\\testresult\\phpdeprecations', - 50 => 'phpunit\\testrunner\\testresult\\phpnotices', - 51 => 'phpunit\\testrunner\\testresult\\phpwarnings', - 52 => 'phpunit\\testrunner\\testresult\\hastests', - 53 => 'phpunit\\testrunner\\testresult\\haserrors', - 54 => 'phpunit\\testrunner\\testresult\\numberoferrors', - 55 => 'phpunit\\testrunner\\testresult\\hasdeprecations', - 56 => 'phpunit\\testrunner\\testresult\\hasphporuserdeprecations', - 57 => 'phpunit\\testrunner\\testresult\\numberofphporuserdeprecations', - 58 => 'phpunit\\testrunner\\testresult\\hasphpunitdeprecations', - 59 => 'phpunit\\testrunner\\testresult\\numberofphpunitdeprecations', - 60 => 'phpunit\\testrunner\\testresult\\hasphpunitwarnings', - 61 => 'phpunit\\testrunner\\testresult\\numberofphpunitwarnings', - 62 => 'phpunit\\testrunner\\testresult\\numberofdeprecations', - 63 => 'phpunit\\testrunner\\testresult\\hasnotices', - 64 => 'phpunit\\testrunner\\testresult\\numberofnotices', - 65 => 'phpunit\\testrunner\\testresult\\haswarnings', - 66 => 'phpunit\\testrunner\\testresult\\numberofwarnings', - 67 => 'phpunit\\testrunner\\testresult\\hasincompletetests', - 68 => 'phpunit\\testrunner\\testresult\\hasriskytests', - 69 => 'phpunit\\testrunner\\testresult\\hasskippedtests', - 70 => 'phpunit\\testrunner\\testresult\\hasissuesignoredbybaseline', - 71 => 'phpunit\\testrunner\\testresult\\numberofissuesignoredbybaseline', - 72 => 'phpunit\\testrunner\\testresult\\hasphpunitnotices', - 73 => 'phpunit\\testrunner\\testresult\\numberofphpunitnotices', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Filter/TestIdFilterIterator.php' => - array ( - 0 => '5e1e2b02ddc74bfffe462decbb2785ebe5e4c7e7', - 1 => - array ( - 0 => 'phpunit\\runner\\filter\\testidfilteriterator', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\filter\\__construct', - 1 => 'phpunit\\runner\\filter\\accept', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Filter/NameFilterIterator.php' => - array ( - 0 => '1ac775de83019713d892fc6b355069fb7cf31c04', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Filter/GroupFilterIterator.php' => - array ( - 0 => 'b71ac903be085f56aeded2b59fc211082c3f105c', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/CodeCoverageInitializationStatus.php' => - array ( - 0 => '34f00925e8b24b53607d22680c15bddb39012d75', - 1 => - array ( - 0 => 'phpunit\\runner\\codecoverageinitializationstatus', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/CodeCoverage.php' => - array ( - 0 => 'b77bc4b653ea69e96b2e81e3c0fe8b4284c79877', - 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\\drivernameandversion', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/DeprecationCollector/Facade.php' => - array ( - 0 => 'a9bba0d084819c7e1e20a76f4b79382b0141e911', - 1 => - array ( - 0 => 'phpunit\\runner\\deprecationcollector\\facade', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\deprecationcollector\\init', - 1 => 'phpunit\\runner\\deprecationcollector\\initforisolation', - 2 => 'phpunit\\runner\\deprecationcollector\\deprecations', - 3 => 'phpunit\\runner\\deprecationcollector\\filtereddeprecations', - 4 => 'phpunit\\runner\\deprecationcollector\\collector', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/DeprecationCollector/Collector.php' => - array ( - 0 => '58d50b84ffa84507b014d6fff601998276f03ae7', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/DeprecationCollector/InIsolationCollector.php' => - array ( - 0 => '4f8b6846047848177a66018d3153a4c5fd23c2ab', - 1 => - array ( - 0 => 'phpunit\\runner\\deprecationcollector\\inisolationcollector', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\deprecationcollector\\__construct', - 1 => 'phpunit\\runner\\deprecationcollector\\deprecations', - 2 => 'phpunit\\runner\\deprecationcollector\\filtereddeprecations', - 3 => 'phpunit\\runner\\deprecationcollector\\testtriggereddeprecation', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/DeprecationCollector/Subscriber/Subscriber.php' => - array ( - 0 => '4ad67587f7f22b591ce92b079a07d54a1665c8c5', - 1 => - array ( - 0 => 'phpunit\\runner\\deprecationcollector\\subscriber', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\deprecationcollector\\__construct', - 1 => 'phpunit\\runner\\deprecationcollector\\collector', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/ShutdownHandler.php' => - array ( - 0 => 'b4c1fe0a830a3dd3d36231a8952dd85b7da4456d', - 1 => - array ( - 0 => 'phpunit\\runner\\shutdownhandler', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\setmessage', - 1 => 'phpunit\\runner\\resetmessage', - 2 => 'phpunit\\runner\\register', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/TestSuiteSorter.php' => - array ( - 0 => 'a9d628c469e1bab15b19569029377bacc2dabc8a', - 1 => - array ( - 0 => 'phpunit\\runner\\testsuitesorter', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\__construct', - 1 => 'phpunit\\runner\\reordertestsinsuite', - 2 => 'phpunit\\runner\\sort', - 3 => 'phpunit\\runner\\addsuitetodefectsortorder', - 4 => 'phpunit\\runner\\reverse', - 5 => 'phpunit\\runner\\randomize', - 6 => 'phpunit\\runner\\sortdefectsfirst', - 7 => 'phpunit\\runner\\sortbyduration', - 8 => 'phpunit\\runner\\sortbysize', - 9 => 'phpunit\\runner\\cmpdefectpriorityandtime', - 10 => 'phpunit\\runner\\cmpduration', - 11 => 'phpunit\\runner\\cmpsize', - 12 => 'phpunit\\runner\\resolvedependencies', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/TestSuiteLoader.php' => - array ( - 0 => 'e1b2205b5f077592ecdd6234bdaee1773f32625a', - 1 => - array ( - 0 => 'phpunit\\runner\\testsuiteloader', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\load', - 1 => 'phpunit\\runner\\classnamefromfilename', - 2 => 'phpunit\\runner\\loadsuiteclassfile', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/IssueFilter.php' => - array ( - 0 => '6008e5f234fbcc536eb41b4da05bc6145f0ba1b2', - 1 => - array ( - 0 => 'phpunit\\testrunner\\issuefilter', - ), - 2 => - array ( - 0 => 'phpunit\\testrunner\\__construct', - 1 => 'phpunit\\testrunner\\shouldbeprocessed', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Version.php' => - array ( - 0 => '4e27468fb9c58ae5d59bf1befa661d442014258d', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Baseline/Baseline.php' => - array ( - 0 => 'c037d1917062c0dd5935eb10d1542112e48ea682', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Baseline/Generator.php' => - array ( - 0 => '232b17b5955d8857365c2a7f6c3684f73eccdc67', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Baseline/Exception/CannotLoadBaselineException.php' => - array ( - 0 => 'd7152a793344d1c8ab56069395b40bffd9337c92', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\cannotloadbaselineexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Baseline/Exception/CannotWriteBaselineException.php' => - array ( - 0 => 'fd5520126cfaa14e03690871ed4582acfd0b6525', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\cannotwritebaselineexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Baseline/Reader.php' => - array ( - 0 => 'fd4c22bbf49e6450ac45928f898aad0418b94fc6', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\reader', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\baseline\\read', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Baseline/Writer.php' => - array ( - 0 => '171f615d39edd56724403ccd0b62e8345819f95d', - 1 => - array ( - 0 => 'phpunit\\runner\\baseline\\writer', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\baseline\\write', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/GarbageCollection/GarbageCollectionHandler.php' => - array ( - 0 => 'f55ff939c97c4416560e1eab3d94c639cd6c299f', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Phpt/Exception/PhptExternalFileCannotBeLoadedException.php' => - array ( - 0 => '5c6ef2de865c0d99b2fd402f332a2b66ebcf3fe4', - 1 => - array ( - 0 => 'phpunit\\runner\\phpt\\phptexternalfilecannotbeloadedexception', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\phpt\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Phpt/Exception/UnsupportedPhptSectionException.php' => - array ( - 0 => '5b614d7fd8d0b87d36ec5fcf14d960e647526112', - 1 => - array ( - 0 => 'phpunit\\runner\\phpt\\unsupportedphptsectionexception', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\phpt\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Phpt/Exception/InvalidPhptFileException.php' => - array ( - 0 => 'ef4df0c50187acc2ec6e3c1198bad25940eb5452', - 1 => - array ( - 0 => 'phpunit\\runner\\phpt\\invalidphptfileexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Phpt/Parser.php' => - array ( - 0 => '671131e29e62c5838d9ec0268e83a1acd2f672f0', - 1 => - array ( - 0 => 'phpunit\\runner\\phpt\\parser', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\phpt\\parse', - 1 => 'phpunit\\runner\\phpt\\parseenvsection', - 2 => 'phpunit\\runner\\phpt\\parseinisection', - 3 => 'phpunit\\runner\\phpt\\parseexternal', - 4 => 'phpunit\\runner\\phpt\\validate', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Phpt/TestCase.php' => - array ( - 0 => '6f5ffbab5c60501ad474c4e72f9ab238c61424ad', - 1 => - array ( - 0 => 'phpunit\\runner\\phpt\\testcase', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\phpt\\__construct', - 1 => 'phpunit\\runner\\phpt\\count', - 2 => 'phpunit\\runner\\phpt\\run', - 3 => 'phpunit\\runner\\phpt\\getname', - 4 => 'phpunit\\runner\\phpt\\tostring', - 5 => 'phpunit\\runner\\phpt\\sortid', - 6 => 'phpunit\\runner\\phpt\\provides', - 7 => 'phpunit\\runner\\phpt\\requires', - 8 => 'phpunit\\runner\\phpt\\valueobjectforevents', - 9 => 'phpunit\\runner\\phpt\\assertphptexpectation', - 10 => 'phpunit\\runner\\phpt\\shouldtestbeskipped', - 11 => 'phpunit\\runner\\phpt\\shouldruninsubprocess', - 12 => 'phpunit\\runner\\phpt\\runcodeinlocalsandbox', - 13 => 'phpunit\\runner\\phpt\\runclean', - 14 => 'phpunit\\runner\\phpt\\cleanupforcoverage', - 15 => 'phpunit\\runner\\phpt\\coveragefiles', - 16 => 'phpunit\\runner\\phpt\\stringifyini', - 17 => 'phpunit\\runner\\phpt\\locationhintfromdiff', - 18 => 'phpunit\\runner\\phpt\\cleandiffline', - 19 => 'phpunit\\runner\\phpt\\locationhint', - 20 => 'phpunit\\runner\\phpt\\settings', - 21 => 'phpunit\\runner\\phpt\\triggerrunnerwarningonphperrors', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/Phpt/Renderer.php' => - array ( - 0 => '1a392b0238e5fb8c5b55c8cee5bbc9343976992b', - 1 => - array ( - 0 => 'phpunit\\runner\\phpt\\renderer', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\phpt\\render', - 1 => 'phpunit\\runner\\phpt\\renderforcoverage', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/ErrorHandler.php' => - array ( - 0 => 'f104f81c819c92232d97138e2a6fb75ab79012ef', - 1 => - array ( - 0 => 'phpunit\\runner\\errorhandler', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\instance', - 1 => 'phpunit\\runner\\__construct', - 2 => 'phpunit\\runner\\__invoke', - 3 => 'phpunit\\runner\\deprecationhandler', - 4 => 'phpunit\\runner\\registerdeprecationhandler', - 5 => 'phpunit\\runner\\restoredeprecationhandler', - 6 => 'phpunit\\runner\\enable', - 7 => 'phpunit\\runner\\disable', - 8 => 'phpunit\\runner\\usebaseline', - 9 => 'phpunit\\runner\\usedeprecationtriggers', - 10 => 'phpunit\\runner\\entertestcasecontext', - 11 => 'phpunit\\runner\\leavetestcasecontext', - 12 => 'phpunit\\runner\\ignoredbybaseline', - 13 => 'phpunit\\runner\\trigger', - 14 => 'phpunit\\runner\\filteredstacktrace', - 15 => 'phpunit\\runner\\guessdeprecationframe', - 16 => 'phpunit\\runner\\errorstacktrace', - 17 => 'phpunit\\runner\\frameisfunction', - 18 => 'phpunit\\runner\\frameismethod', - 19 => 'phpunit\\runner\\stacktrace', - 20 => 'phpunit\\runner\\triggerglobaldeprecations', - 21 => 'phpunit\\runner\\testcasecontext', - 22 => 'phpunit\\runner\\deprecationignoredbytest', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/ResultCache/ResultCache.php' => - array ( - 0 => '7c13140f77317bbd8f45d2321b5135ab076e3167', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/ResultCache/ResultCacheHandler.php' => - array ( - 0 => '1b42adfb9fdba0b6c10d81c8f56eb177295b0185', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/ResultCache/DefaultResultCache.php' => - array ( - 0 => '3f09770d7f53ddf4724b2c18923a7c0d16654580', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/ResultCache/ResultCacheId.php' => - array ( - 0 => 'aebff43ccbf0dd2956402d125b5cc6bc8680d45c', - 1 => - array ( - 0 => 'phpunit\\runner\\resultcache\\resultcacheid', - ), - 2 => - array ( - 0 => 'phpunit\\runner\\resultcache\\fromtest', - 1 => 'phpunit\\runner\\resultcache\\fromreorderable', - 2 => 'phpunit\\runner\\resultcache\\fromtestclassandmethodname', - 3 => 'phpunit\\runner\\resultcache\\__construct', - 4 => 'phpunit\\runner\\resultcache\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Runner/ResultCache/NullResultCache.php' => - array ( - 0 => '56715ee15b2becbab40d67e621739636e60eeb48', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/SelfDescribing.php' => - array ( - 0 => 'cd07bd110bc581f7c3b5600bebcfe77762b666ad', - 1 => - array ( - 0 => 'phpunit\\framework\\selfdescribing', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\tostring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Exception/ErrorLogNotWritableException.php' => - array ( - 0 => 'cbf1cf663201f7ac7e2e25405baf4788656ab246', - 1 => - array ( - 0 => 'phpunit\\framework\\errorlognotwritableexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Exception/ProcessIsolationException.php' => - array ( - 0 => '99f310d0a06a7703162a1dbab2bedb9f0709ad3a', - 1 => - array ( - 0 => 'phpunit\\framework\\processisolationexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Exception/Skipped/SkippedTestSuiteError.php' => - array ( - 0 => 'fbb03614636926749fd67e077474a97ad1184a95', - 1 => - array ( - 0 => 'phpunit\\framework\\skippedtestsuiteerror', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Exception/Skipped/SkippedWithMessageException.php' => - array ( - 0 => 'af7880f45f8c6c6f4ef7f91c10977a352611a7bc', - 1 => - array ( - 0 => 'phpunit\\framework\\skippedwithmessageexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Exception/Skipped/SkippedTest.php' => - array ( - 0 => '06bb37358da789e04b50abb97c90b4005e026e9a', - 1 => - array ( - 0 => 'phpunit\\framework\\skippedtest', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Exception/UnknownNativeTypeException.php' => - array ( - 0 => '033693cc6ad31bb8d942d8a5f543ca21a1a5a793', - 1 => - array ( - 0 => 'phpunit\\framework\\unknownnativetypeexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Exception/NoChildTestSuiteException.php' => - array ( - 0 => '06c318ea408ae9e30d844ce56e2e37b7a10504bf', - 1 => - array ( - 0 => 'phpunit\\framework\\nochildtestsuiteexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Exception/InvalidDataProviderException.php' => - array ( - 0 => '50b2004f70fae76a174c0b4d672eaffeffffb934', - 1 => - array ( - 0 => 'phpunit\\framework\\invaliddataproviderexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\forexception', - 1 => 'phpunit\\framework\\getproviderlabel', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Exception/ExpectationFailedException.php' => - array ( - 0 => '8cfa74af6ff176fcd080fc59f42df167bc7c321f', - 1 => - array ( - 0 => 'phpunit\\framework\\expectationfailedexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - 1 => 'phpunit\\framework\\getcomparisonfailure', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Exception/Exception.php' => - array ( - 0 => '75006d64244611787dbe4e75cf33f529663c8b2b', - 1 => - array ( - 0 => 'phpunit\\framework\\exception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - 1 => 'phpunit\\framework\\__serialize', - 2 => 'phpunit\\framework\\getserializabletrace', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Exception/EmptyStringException.php' => - array ( - 0 => 'ca289d0ac3097433e411e80e715a892fcc4b1e97', - 1 => - array ( - 0 => 'phpunit\\framework\\emptystringexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Exception/InvalidArgumentException.php' => - array ( - 0 => 'f30742c86d7b9262b9c46eecb02f5d5b51498637', - 1 => - array ( - 0 => 'phpunit\\framework\\invalidargumentexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Exception/InvalidDependencyException.php' => - array ( - 0 => '0de35a4c59855d2ab16dfc566455c47753f81437', - 1 => - array ( - 0 => 'phpunit\\framework\\invaliddependencyexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Exception/Incomplete/IncompleteTestError.php' => - array ( - 0 => 'b644c946464ea8283bef8d594cf4d6db489125e8', - 1 => - array ( - 0 => 'phpunit\\framework\\incompletetesterror', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Exception/Incomplete/IncompleteTest.php' => - array ( - 0 => 'c220c51bd981e4abd29b108606f31526d69f7ace', - 1 => - array ( - 0 => 'phpunit\\framework\\incompletetest', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/TestCase.php' => - array ( - 0 => '58017733a7f7cc510087ac1416bb86243b88f096', - 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\\throwexception', - 57 => 'phpunit\\framework\\getactualoutputforassertion', - 58 => 'phpunit\\framework\\expectoutputregex', - 59 => 'phpunit\\framework\\expectoutputstring', - 60 => 'phpunit\\framework\\expecterrorlog', - 61 => 'phpunit\\framework\\expectexception', - 62 => 'phpunit\\framework\\expectexceptioncode', - 63 => 'phpunit\\framework\\expectexceptionmessage', - 64 => 'phpunit\\framework\\expectexceptionmessagematches', - 65 => 'phpunit\\framework\\expectexceptionobject', - 66 => 'phpunit\\framework\\expectnottoperformassertions', - 67 => 'phpunit\\framework\\expectuserdeprecationmessage', - 68 => 'phpunit\\framework\\expectuserdeprecationmessagematches', - 69 => 'phpunit\\framework\\getmockbuilder', - 70 => 'phpunit\\framework\\registercomparator', - 71 => 'phpunit\\framework\\registerfailuretype', - 72 => 'phpunit\\framework\\createmock', - 73 => 'phpunit\\framework\\createmockforintersectionofinterfaces', - 74 => 'phpunit\\framework\\createconfiguredmock', - 75 => 'phpunit\\framework\\createpartialmock', - 76 => 'phpunit\\framework\\provideadditionalinformation', - 77 => 'phpunit\\framework\\transformexception', - 78 => 'phpunit\\framework\\onnotsuccessfultest', - 79 => 'phpunit\\framework\\datasetasfilterstring', - 80 => 'phpunit\\framework\\runtest', - 81 => 'phpunit\\framework\\stripdatefromerrorlog', - 82 => 'phpunit\\framework\\verifydeprecationexpectations', - 83 => 'phpunit\\framework\\verifymockobjects', - 84 => 'phpunit\\framework\\checkrequirements', - 85 => 'phpunit\\framework\\handledependencies', - 86 => 'phpunit\\framework\\markerrorforinvaliddependency', - 87 => 'phpunit\\framework\\markskippedformissingdependency', - 88 => 'phpunit\\framework\\startoutputbuffering', - 89 => 'phpunit\\framework\\stopoutputbuffering', - 90 => 'phpunit\\framework\\snapshotglobalerrorexceptionhandlers', - 91 => 'phpunit\\framework\\restoreglobalerrorexceptionhandlers', - 92 => 'phpunit\\framework\\activeerrorhandlers', - 93 => 'phpunit\\framework\\activeexceptionhandlers', - 94 => 'phpunit\\framework\\snapshotglobalstate', - 95 => 'phpunit\\framework\\restoreglobalstate', - 96 => 'phpunit\\framework\\createglobalstatesnapshot', - 97 => 'phpunit\\framework\\compareglobalstatesnapshots', - 98 => 'phpunit\\framework\\compareglobalstatesnapshotpart', - 99 => 'phpunit\\framework\\handleenvironmentvariables', - 100 => 'phpunit\\framework\\restoreenvironmentvariables', - 101 => 'phpunit\\framework\\shouldinvocationmockerbereset', - 102 => 'phpunit\\framework\\unregistercustomcomparators', - 103 => 'phpunit\\framework\\shouldexceptionexpectationsbeverified', - 104 => 'phpunit\\framework\\shouldruninseparateprocess', - 105 => 'phpunit\\framework\\iscallabletestmethod', - 106 => 'phpunit\\framework\\performassertionsonoutput', - 107 => 'phpunit\\framework\\invokebeforeclasshookmethods', - 108 => 'phpunit\\framework\\invokebeforetesthookmethods', - 109 => 'phpunit\\framework\\invokepreconditionhookmethods', - 110 => 'phpunit\\framework\\invokepostconditionhookmethods', - 111 => 'phpunit\\framework\\invokeaftertesthookmethods', - 112 => 'phpunit\\framework\\invokeafterclasshookmethods', - 113 => 'phpunit\\framework\\invokehookmethods', - 114 => 'phpunit\\framework\\methoddoesnotexistorisdeclaredintestcase', - 115 => 'phpunit\\framework\\verifyexceptionexpectations', - 116 => 'phpunit\\framework\\expectedexceptionwasnotraised', - 117 => 'phpunit\\framework\\isregisteredfailure', - 118 => 'phpunit\\framework\\hasexpectationonoutput', - 119 => 'phpunit\\framework\\requirementsnotsatisfied', - 120 => 'phpunit\\framework\\requiresxdebug', - 121 => 'phpunit\\framework\\handleexceptionfrominvokedcountmockobjectrule', - 122 => 'phpunit\\framework\\starterrorlogcapture', - 123 => 'phpunit\\framework\\verifyerrorlogexpectation', - 124 => 'phpunit\\framework\\handleerrorlogerror', - 125 => 'phpunit\\framework\\stoperrorlogcapture', - 126 => 'phpunit\\framework\\getstubbuilder', - 127 => 'phpunit\\framework\\createstub', - 128 => 'phpunit\\framework\\createstubforintersectionofinterfaces', - 129 => 'phpunit\\framework\\createconfiguredstub', - 130 => 'phpunit\\framework\\allowsmockobjectswithoutexpectations', - 131 => 'phpunit\\framework\\generatereturnvaluesfortestdoubles', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Test.php' => - array ( - 0 => '68d23894ee4cf065d533408bb2c346218ba06757', - 1 => - array ( - 0 => 'phpunit\\framework\\test', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\run', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/TestBuilder.php' => - array ( - 0 => '0df9725a6eb1237be9da74a441b13f6d20869e40', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsOnly.php' => - array ( - 0 => '2136d9ddae8a80aa0bdb7c312050fc4502f3eefe', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\traversablecontainsonly', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\fornativetype', - 1 => 'phpunit\\framework\\constraint\\forclassorinterface', - 2 => 'phpunit\\framework\\constraint\\__construct', - 3 => 'phpunit\\framework\\constraint\\evaluate', - 4 => 'phpunit\\framework\\constraint\\tostring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsEqual.php' => - array ( - 0 => 'a3846007bf020880c7d6524c8ffceb52eb55cd47', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\traversablecontainsequal', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Constraint/Traversable/TraversableContainsIdentical.php' => - array ( - 0 => '7764c620d3641bf69f852b3375e291681cad3ea1', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\traversablecontainsidentical', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\matches', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Constraint/Type/IsType.php' => - array ( - 0 => 'ad6cf2b8fbb193a183afc28889d4d0e125712e47', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Constraint/Object/ObjectEquals.php' => - array ( - 0 => 'e3c7041ef30f36525b93e76b3e958baa28fb11e0', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Constraint/Constraint.php' => - array ( - 0 => '9e3a065e96d8b992d2c70b31b828fee4e4c12928', - 1 => - array ( - 0 => 'phpunit\\framework\\constraint\\constraint', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\constraint\\__invoke', - 1 => 'phpunit\\framework\\constraint\\evaluate', - 2 => 'phpunit\\framework\\constraint\\count', - 3 => 'phpunit\\framework\\constraint\\matches', - 4 => 'phpunit\\framework\\constraint\\fail', - 5 => 'phpunit\\framework\\constraint\\additionalfailuredescription', - 6 => 'phpunit\\framework\\constraint\\failuredescription', - 7 => 'phpunit\\framework\\constraint\\tostringincontext', - 8 => 'phpunit\\framework\\constraint\\failuredescriptionincontext', - 9 => 'phpunit\\framework\\constraint\\reduce', - 10 => 'phpunit\\framework\\constraint\\valuetotypestringfragment', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Constraint/Cardinality/IsEmpty.php' => - array ( - 0 => '97e5d6ac79552093a5b9d9fe62e033d41579292a', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/BinaryOperator.php' => - array ( - 0 => '0f7980e4626a4cb5fbbda57ea3446e514031a30f', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalNot.php' => - array ( - 0 => '4ced1d19488c89978dd549c8880ec2454de3b0b7', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalXor.php' => - array ( - 0 => 'c68a2518a766b916bddb410df6fdf90f399d088e', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Constraint/IsAnything.php' => - array ( - 0 => 'c4ac54d55d8a884a30a29546908eda64db2d9af6', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Constraint/Callback.php' => - array ( - 0 => 'b34f5fc21cd4fa5813e182d8e8f42928dc5cb349', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringMatchesFormatDescription.php' => - array ( - 0 => '7ed01da734479f6f2899f6328ec26570599811a3', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Constraint/String/StringContains.php' => - array ( - 0 => 'd61030afa389964a191a3dbd0911cc67bcb70c63', - 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\\detectedencoding', - 5 => 'phpunit\\framework\\constraint\\haystacklength', - 6 => 'phpunit\\framework\\constraint\\normalizelineendings', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Constraint/String/IsJson.php' => - array ( - 0 => 'cd8f3494d85acd6be1c5bdcba5b16356adfa601e', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Constraint/JsonMatches.php' => - array ( - 0 => 'b81b2819892d5f7a82af2d9336194b0a6de8a1f1', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/PreCondition.php' => - array ( - 0 => '0a0d31723ff1fcc5da8f247f8bd8cca289e7c929', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\precondition', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\priority', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/DoesNotPerformAssertions.php' => - array ( - 0 => 'e0a933ec0aa4d8513252d8b8adb9016b9fafee41', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\doesnotperformassertions', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/AllowMockObjectsWithoutExpectations.php' => - array ( - 0 => '92eb3fd06a852935ee108ebc4232d5de963026ea', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\allowmockobjectswithoutexpectations', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/After.php' => - array ( - 0 => 'f1e885413b23f131bf00dbacc4e03e663d9b7a0b', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\after', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\priority', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/DataProvider.php' => - array ( - 0 => 'a1dbbb7e967dd5f46c9d627fe2564ea758a662b7', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\dataprovider', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\methodname', - 2 => 'phpunit\\framework\\attributes\\validateargumentcount', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/BeforeClass.php' => - array ( - 0 => '979ac21b3885e342ebcc06d05bb7e10c94b572a6', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\beforeclass', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\priority', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/Small.php' => - array ( - 0 => 'e955e58c028ed65c1e6201bc4fc6d24bc3d22dce', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\small', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/RunInSeparateProcess.php' => - array ( - 0 => '4b1955a7d7db12f9d259c19f7a5ac4ac58c3aa83', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\runinseparateprocess', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/DisableReturnValueGenerationForTestDoubles.php' => - array ( - 0 => '2cacb06449a3df931ef9ed3237d7d98457057b20', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\disablereturnvaluegenerationfortestdoubles', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/CoversTrait.php' => - array ( - 0 => '44dc1689132aa3ab36a37fabcc2a0cc1b952acf5', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\coverstrait', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\traitname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/Before.php' => - array ( - 0 => 'fe687500400cf61cd18154ab859a232b5d33f57f', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\before', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\priority', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/Test.php' => - array ( - 0 => '430efd626ebd013247ad12ed501a88d1614f3dc1', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\test', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/Medium.php' => - array ( - 0 => 'a1ce64fb64ffae458088e143fb9bd01301b8bd5f', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\medium', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/CoversNamespace.php' => - array ( - 0 => '7ab548464801135f7421e4f2f3b39862c1cb2957', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\coversnamespace', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\namespace', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/IgnorePhpunitDeprecations.php' => - array ( - 0 => '8ea249504ed038902e3aaa55758e4bcb8176560e', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\ignorephpunitdeprecations', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/RunTestsInSeparateProcesses.php' => - array ( - 0 => 'f7ccc03b0367c9c5436acf402c789c600a699d5c', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\runtestsinseparateprocesses', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/WithEnvironmentVariable.php' => - array ( - 0 => '320c9bf159f5927aca94622b5b9ddad6be7d60d0', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\withenvironmentvariable', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\environmentvariablename', - 2 => 'phpunit\\framework\\attributes\\value', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/UsesNamespace.php' => - array ( - 0 => 'feb56a901b8a0a26988f28efb292be1055416a22', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\usesnamespace', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\namespace', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/UsesTrait.php' => - array ( - 0 => 'a57b0508731c87f408d1d6b9eed38e3c0774faa2', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\usestrait', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\traitname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/TestDoxFormatter.php' => - array ( - 0 => 'c5e9405f0b98a1901330fc8945e0c44b5bb6faf2', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\testdoxformatter', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\methodname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/IgnoreDeprecations.php' => - array ( - 0 => '96292b25bae59922483c2b061e9c8492a42ab330', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\ignoredeprecations', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\messagepattern', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/DataProviderExternal.php' => - array ( - 0 => '1c363f466ca707dd3cda3d4c5750cb6cde6a4129', - 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 => 'phpunit\\framework\\attributes\\validateargumentcount', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/UsesClassesThatExtendClass.php' => - array ( - 0 => 'da8373b2075dae118888db7fdee8eab1b9e5b46c', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\usesclassesthatextendclass', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\classname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/CoversClassesThatImplementInterface.php' => - array ( - 0 => 'c615c997ef2e3089f9ea264b10114abab01d7b7d', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\coversclassesthatimplementinterface', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\interfacename', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/Large.php' => - array ( - 0 => '8729d2b9e26febac2e7b4975d45edb68717354c3', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\large', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/RequiresEnvironmentVariable.php' => - array ( - 0 => '4aec089813b81a6b5df2cf790b29729bc2cd67f9', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\requiresenvironmentvariable', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\environmentvariablename', - 2 => 'phpunit\\framework\\attributes\\value', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/RunClassInSeparateProcess.php' => - array ( - 0 => '9eccd8630f80d409b8889ca00d8dc027e78876d3', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\runclassinseparateprocess', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/CoversClassesThatExtendClass.php' => - array ( - 0 => '1f1c5b0d62659ac20638b48982fe26c9bd294a51', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\coversclassesthatextendclass', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\classname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/CoversNothing.php' => - array ( - 0 => '8fba204cca606dc1f5233274102837e3a24bbfeb', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\coversnothing', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/IgnorePhpunitWarnings.php' => - array ( - 0 => '892bf6fabb48221df747373f9bf9a4cd756eca5e', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\ignorephpunitwarnings', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\messagepattern', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/PostCondition.php' => - array ( - 0 => 'ac1d0272475513dbc6f6840b29148b7bcf79166a', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\postcondition', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\priority', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/TestDoxFormatterExternal.php' => - array ( - 0 => 'd543ab7e51d9a34a403a43d7ceb2a364bdc0f9f5', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\testdoxformatterexternal', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\classname', - 2 => 'phpunit\\framework\\attributes\\methodname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/AfterClass.php' => - array ( - 0 => 'fdbbf99f1071e2ac4206e272df8e4c6e3110024d', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\afterclass', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\priority', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/WithoutErrorHandler.php' => - array ( - 0 => '9083323862ba6151ac7f680df00c80d0854319bd', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\withouterrorhandler', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Attributes/UsesClassesThatImplementInterface.php' => - array ( - 0 => '56298d9096648cb4bbad3672e3c95c8659f8278c', - 1 => - array ( - 0 => 'phpunit\\framework\\attributes\\usesclassesthatimplementinterface', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\attributes\\__construct', - 1 => 'phpunit\\framework\\attributes\\interfacename', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/TestSuite.php' => - array ( - 0 => '3e4f95d84e9910a9612ee62eefee1de64429ea26', - 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\\exceptiontostring', - 27 => 'phpunit\\framework\\invokemethodsbeforefirsttest', - 28 => 'phpunit\\framework\\invokemethodsafterlasttest', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/ExecutionOrderDependency.php' => - array ( - 0 => '51abc5bf0444bf51c63fdf2473085b07827fa52b', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/TestRunner/IsolatedTestRunnerRegistry.php' => - array ( - 0 => 'aa17b1cd04476be090dad7f8382808091c952b0d', - 1 => - array ( - 0 => 'phpunit\\framework\\isolatedtestrunnerregistry', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\run', - 1 => 'phpunit\\framework\\set', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/TestRunner/ChildProcessResultProcessor.php' => - array ( - 0 => '998bfe31066e38df40d39ab960f7a12ffd7ed994', - 1 => - array ( - 0 => 'phpunit\\framework\\childprocessresultprocessor', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\__construct', - 1 => 'phpunit\\framework\\process', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/TestRunner/IsolatedTestRunner.php' => - array ( - 0 => '5c18d1819498e580fbe6f9784e14d28f311b087e', - 1 => - array ( - 0 => 'phpunit\\framework\\isolatedtestrunner', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\run', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/TestRunner/TestRunner.php' => - array ( - 0 => '377d30c776aabacb4924b1af33bf16ed53199a53', - 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', - 7 => 'phpunit\\framework\\performsanitychecks', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/TestRunner/SeparateProcessTestRunner.php' => - array ( - 0 => 'b2b9aa8e75f89c5aa4531b58dd2c53fea3817c87', - 1 => - array ( - 0 => 'phpunit\\framework\\separateprocesstestrunner', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\run', - 1 => 'phpunit\\framework\\saveconfigurationforchildprocess', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/DataProviderTestSuite.php' => - array ( - 0 => '7b76e8574d98a27038656d82675b7c52ede3db7b', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Assert.php' => - array ( - 0 => '6f4366b070667ca3deabff50e88897b66653ba29', - 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\\assertstringmatchesformatfile', - 136 => 'phpunit\\framework\\assertstringstartswith', - 137 => 'phpunit\\framework\\assertstringstartsnotwith', - 138 => 'phpunit\\framework\\assertstringcontainsstring', - 139 => 'phpunit\\framework\\assertstringcontainsstringignoringcase', - 140 => 'phpunit\\framework\\assertstringnotcontainsstring', - 141 => 'phpunit\\framework\\assertstringnotcontainsstringignoringcase', - 142 => 'phpunit\\framework\\assertstringendswith', - 143 => 'phpunit\\framework\\assertstringendsnotwith', - 144 => 'phpunit\\framework\\assertxmlfileequalsxmlfile', - 145 => 'phpunit\\framework\\assertxmlfilenotequalsxmlfile', - 146 => 'phpunit\\framework\\assertxmlstringequalsxmlfile', - 147 => 'phpunit\\framework\\assertxmlstringnotequalsxmlfile', - 148 => 'phpunit\\framework\\assertxmlstringequalsxmlstring', - 149 => 'phpunit\\framework\\assertxmlstringnotequalsxmlstring', - 150 => 'phpunit\\framework\\assertthat', - 151 => 'phpunit\\framework\\assertjson', - 152 => 'phpunit\\framework\\assertjsonstringequalsjsonstring', - 153 => 'phpunit\\framework\\assertjsonstringnotequalsjsonstring', - 154 => 'phpunit\\framework\\assertjsonstringequalsjsonfile', - 155 => 'phpunit\\framework\\assertjsonstringnotequalsjsonfile', - 156 => 'phpunit\\framework\\assertjsonfileequalsjsonfile', - 157 => 'phpunit\\framework\\assertjsonfilenotequalsjsonfile', - 158 => 'phpunit\\framework\\logicaland', - 159 => 'phpunit\\framework\\logicalor', - 160 => 'phpunit\\framework\\logicalnot', - 161 => 'phpunit\\framework\\logicalxor', - 162 => 'phpunit\\framework\\anything', - 163 => 'phpunit\\framework\\istrue', - 164 => 'phpunit\\framework\\callback', - 165 => 'phpunit\\framework\\isfalse', - 166 => 'phpunit\\framework\\isjson', - 167 => 'phpunit\\framework\\isnull', - 168 => 'phpunit\\framework\\isfinite', - 169 => 'phpunit\\framework\\isinfinite', - 170 => 'phpunit\\framework\\isnan', - 171 => 'phpunit\\framework\\containsequal', - 172 => 'phpunit\\framework\\containsidentical', - 173 => 'phpunit\\framework\\containsonly', - 174 => 'phpunit\\framework\\containsonlyarray', - 175 => 'phpunit\\framework\\containsonlybool', - 176 => 'phpunit\\framework\\containsonlycallable', - 177 => 'phpunit\\framework\\containsonlyfloat', - 178 => 'phpunit\\framework\\containsonlyint', - 179 => 'phpunit\\framework\\containsonlyiterable', - 180 => 'phpunit\\framework\\containsonlynull', - 181 => 'phpunit\\framework\\containsonlynumeric', - 182 => 'phpunit\\framework\\containsonlyobject', - 183 => 'phpunit\\framework\\containsonlyresource', - 184 => 'phpunit\\framework\\containsonlyclosedresource', - 185 => 'phpunit\\framework\\containsonlyscalar', - 186 => 'phpunit\\framework\\containsonlystring', - 187 => 'phpunit\\framework\\containsonlyinstancesof', - 188 => 'phpunit\\framework\\arrayhaskey', - 189 => 'phpunit\\framework\\islist', - 190 => 'phpunit\\framework\\equalto', - 191 => 'phpunit\\framework\\equaltocanonicalizing', - 192 => 'phpunit\\framework\\equaltoignoringcase', - 193 => 'phpunit\\framework\\equaltowithdelta', - 194 => 'phpunit\\framework\\isempty', - 195 => 'phpunit\\framework\\iswritable', - 196 => 'phpunit\\framework\\isreadable', - 197 => 'phpunit\\framework\\directoryexists', - 198 => 'phpunit\\framework\\fileexists', - 199 => 'phpunit\\framework\\greaterthan', - 200 => 'phpunit\\framework\\greaterthanorequal', - 201 => 'phpunit\\framework\\identicalto', - 202 => 'phpunit\\framework\\isinstanceof', - 203 => 'phpunit\\framework\\isarray', - 204 => 'phpunit\\framework\\isbool', - 205 => 'phpunit\\framework\\iscallable', - 206 => 'phpunit\\framework\\isfloat', - 207 => 'phpunit\\framework\\isint', - 208 => 'phpunit\\framework\\isiterable', - 209 => 'phpunit\\framework\\isnumeric', - 210 => 'phpunit\\framework\\isobject', - 211 => 'phpunit\\framework\\isresource', - 212 => 'phpunit\\framework\\isclosedresource', - 213 => 'phpunit\\framework\\isscalar', - 214 => 'phpunit\\framework\\isstring', - 215 => 'phpunit\\framework\\istype', - 216 => 'phpunit\\framework\\lessthan', - 217 => 'phpunit\\framework\\lessthanorequal', - 218 => 'phpunit\\framework\\matchesregularexpression', - 219 => 'phpunit\\framework\\matches', - 220 => 'phpunit\\framework\\stringstartswith', - 221 => 'phpunit\\framework\\stringcontains', - 222 => 'phpunit\\framework\\stringendswith', - 223 => 'phpunit\\framework\\stringequalsstringignoringlineendings', - 224 => 'phpunit\\framework\\countof', - 225 => 'phpunit\\framework\\objectequals', - 226 => 'phpunit\\framework\\fail', - 227 => 'phpunit\\framework\\marktestincomplete', - 228 => 'phpunit\\framework\\marktestskipped', - 229 => 'phpunit\\framework\\getcount', - 230 => 'phpunit\\framework\\resetcount', - 231 => 'phpunit\\framework\\isnativetype', - 232 => 'phpunit\\framework\\mapnativetype', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/Exception.php' => - array ( - 0 => 'ea9895c1456e8a3064faad04784fe2f0d944e6b9', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/BadMethodCallException.php' => - array ( - 0 => 'd4d0114c53959b9ced2e74f56d919e9219356520', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\badmethodcallexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Exception/RuntimeException.php' => - array ( - 0 => '40426ba89925a9f772518a71bf9dcdd9eaa01667', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/TestStubBuilder.php' => - array ( - 0 => 'c6809cabd92f7f153a18d28b72c44e20aed906ba', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\teststubbuilder', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\getstub', - 1 => 'phpunit\\framework\\mockobject\\setstubclassname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Interface/InvocationStubber.php' => - array ( - 0 => 'cf9a016a2484c2b0959fa32991258060b358ba7d', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\invocationstubber', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\method', - 1 => 'phpunit\\framework\\mockobject\\id', - 2 => 'phpunit\\framework\\mockobject\\after', - 3 => 'phpunit\\framework\\mockobject\\with', - 4 => 'phpunit\\framework\\mockobject\\withanyparameters', - 5 => 'phpunit\\framework\\mockobject\\will', - 6 => 'phpunit\\framework\\mockobject\\willreturn', - 7 => 'phpunit\\framework\\mockobject\\willreturnreference', - 8 => 'phpunit\\framework\\mockobject\\willreturnmap', - 9 => 'phpunit\\framework\\mockobject\\willreturnargument', - 10 => 'phpunit\\framework\\mockobject\\willreturncallback', - 11 => 'phpunit\\framework\\mockobject\\willreturnself', - 12 => 'phpunit\\framework\\mockobject\\willreturnonconsecutivecalls', - 13 => 'phpunit\\framework\\mockobject\\willthrowexception', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Interface/StubInternal.php' => - array ( - 0 => 'cc2e94952d0c8a4109bf317b01242e7878761f39', - 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 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Interface/Stub.php' => - array ( - 0 => '76fd39395f488dc1dc5b94f21c6fdf51cec17a8b', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\method', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Interface/MockObject.php' => - array ( - 0 => '3fc4cdba2c26f8a817df13903ded11b5f2d78202', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\mockobject', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\expects', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/InvocationHandler.php' => - array ( - 0 => '8579607d7231d0284cf74b66ae1e07bb56eb4b16', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/ReturnValueGenerator.php' => - array ( - 0 => '8d67eb557f6cc73b71ef72864e5c551a72f8751c', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Matcher.php' => - array ( - 0 => '103bc6be048e0a8218c065fd5724204898989f9f', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Invocation.php' => - array ( - 0 => '9258d98a47dd3523c1c9c25cfcd3f4d3e7767d17', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Stub/ConsecutiveCalls.php' => - array ( - 0 => '3bb079d7feae47a2e6cd3d19bd248de4ba67e46e', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\consecutivecalls', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\stub\\__construct', - 1 => 'phpunit\\framework\\mockobject\\stub\\invoke', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/InvocationStubberImplementation.php' => - array ( - 0 => '2df04208c4a5c47f4eb7c4d0107247d99804593b', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\invocationstubberimplementation', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - 1 => 'phpunit\\framework\\mockobject\\method', - 2 => 'phpunit\\framework\\mockobject\\id', - 3 => 'phpunit\\framework\\mockobject\\after', - 4 => 'phpunit\\framework\\mockobject\\with', - 5 => 'phpunit\\framework\\mockobject\\withanyparameters', - 6 => 'phpunit\\framework\\mockobject\\will', - 7 => 'phpunit\\framework\\mockobject\\willreturn', - 8 => 'phpunit\\framework\\mockobject\\willreturnreference', - 9 => 'phpunit\\framework\\mockobject\\willreturnmap', - 10 => 'phpunit\\framework\\mockobject\\willreturnargument', - 11 => 'phpunit\\framework\\mockobject\\willreturncallback', - 12 => 'phpunit\\framework\\mockobject\\willreturnself', - 13 => 'phpunit\\framework\\mockobject\\willreturnonconsecutivecalls', - 14 => 'phpunit\\framework\\mockobject\\willthrowexception', - 15 => 'phpunit\\framework\\mockobject\\ensureparameterscanbeconfigured', - 16 => 'phpunit\\framework\\mockobject\\configuredmethod', - 17 => 'phpunit\\framework\\mockobject\\ensuretypeofreturnvalues', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/Parameters.php' => - array ( - 0 => '22e0c848806dc495db21246d28cae126eac2a853', - 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', - 5 => 'phpunit\\framework\\mockobject\\rule\\incrementassertioncount', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Rule/AnyParameters.php' => - array ( - 0 => '16f16436963f946521d2763d122650189119f3e3', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\anyparameters', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\rule\\apply', - 1 => 'phpunit\\framework\\mockobject\\rule\\verify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/Method.php' => - array ( - 0 => '58ebd1c2c597d7c85179cae7ce75bf8c8fdd00ae', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\method', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__phpunit_getinvocationhandler', - 1 => 'phpunit\\framework\\mockobject\\method', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/MockObjectApi.php' => - array ( - 0 => 'fe8b0ee41420059486394994f471bfe76d0b0926', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Runtime/Api/TestDoubleState.php' => - array ( - 0 => '391dcbeeafe810cad14685ccfde86d765f4c6b9d', - 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\\configurablemethods', - 5 => 'phpunit\\framework\\mockobject\\generatereturnvalues', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/TestDoubleBuilder.php' => - array ( - 0 => '6ffea3fe2cfc54746522519a6630be6b334c3fa3', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\testdoublebuilder', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - 1 => 'phpunit\\framework\\mockobject\\onlymethods', - 2 => 'phpunit\\framework\\mockobject\\setconstructorargs', - 3 => 'phpunit\\framework\\mockobject\\disableoriginalconstructor', - 4 => 'phpunit\\framework\\mockobject\\enableoriginalconstructor', - 5 => 'phpunit\\framework\\mockobject\\disableoriginalclone', - 6 => 'phpunit\\framework\\mockobject\\enableoriginalclone', - 7 => 'phpunit\\framework\\mockobject\\enableautoreturnvaluegeneration', - 8 => 'phpunit\\framework\\mockobject\\disableautoreturnvaluegeneration', - 9 => 'phpunit\\framework\\mockobject\\gettestdouble', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/MockBuilder.php' => - array ( - 0 => '219755fca1d74337a464b4ff2c32c65565bed095', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\mockbuilder', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\__construct', - 1 => 'phpunit\\framework\\mockobject\\getmock', - 2 => 'phpunit\\framework\\mockobject\\setmockclassname', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Generator.php' => - array ( - 0 => '2318bf8ccc34873d3768f295b3f710098d611713', - 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\\generate', - 3 => 'phpunit\\framework\\mockobject\\generator\\mockclassmethods', - 4 => 'phpunit\\framework\\mockobject\\generator\\userdefinedinterfacemethods', - 5 => 'phpunit\\framework\\mockobject\\generator\\instantiate', - 6 => 'phpunit\\framework\\mockobject\\generator\\generatecodefortestdoubleclass', - 7 => 'phpunit\\framework\\mockobject\\generator\\generateclassname', - 8 => 'phpunit\\framework\\mockobject\\generator\\generatetestdoubleclassdeclaration', - 9 => 'phpunit\\framework\\mockobject\\generator\\canmethodbedoubled', - 10 => 'phpunit\\framework\\mockobject\\generator\\ismethodnameexcluded', - 11 => 'phpunit\\framework\\mockobject\\generator\\ensureknowntype', - 12 => 'phpunit\\framework\\mockobject\\generator\\ensurevalidmethods', - 13 => 'phpunit\\framework\\mockobject\\generator\\ensurenamefortestdoubleclassisavailable', - 14 => 'phpunit\\framework\\mockobject\\generator\\reflectclass', - 15 => 'phpunit\\framework\\mockobject\\generator\\namesofmethodsin', - 16 => 'phpunit\\framework\\mockobject\\generator\\interfacemethods', - 17 => 'phpunit\\framework\\mockobject\\generator\\configurablemethods', - 18 => 'phpunit\\framework\\mockobject\\generator\\properties', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/UnknownInterfaceException.php' => - array ( - 0 => 'c9ce1722a1694ae45787c513b0cc08c60e99d9b8', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\unknowninterfaceexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/Exception/MethodNamedMethodException.php' => - array ( - 0 => '9e64bb2492ce62267c28ac1c76a5bf7354732768', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\methodnamedmethodexception', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/DoubledClass.php' => - array ( - 0 => 'e31479f85e047d1edcca41352bde98f7259183b9', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\doubledclass', - ), - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/HookedPropertyGenerator.php' => - array ( - 0 => '3009eae4ac230423fdd8c6da049956367d3dae78', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\hookedpropertygenerator', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\generate', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/DoubledMethod.php' => - array ( - 0 => '5ba59f4d1bb23464ae8bea941427631c35ac4dbe', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\doubledmethod', - ), - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/MockObject/Generator/DoubledMethodSet.php' => - array ( - 0 => '3f35752ce3ff5a7949008bd24e391bd317c7e546', - 1 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\doubledmethodset', - ), - 2 => - array ( - 0 => 'phpunit\\framework\\mockobject\\generator\\addmethods', - 1 => 'phpunit\\framework\\mockobject\\generator\\asarray', - 2 => 'phpunit\\framework\\mockobject\\generator\\hasmethod', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/NativeType.php' => - array ( - 0 => '0963042f0849353e7d574165a68632416fe47831', - 1 => - array ( - 0 => 'phpunit\\framework\\nativetype', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Framework/Assert/Functions.php' => - array ( - 0 => '8adcd601bca39c177fff7c32ef89afb2a23f8a75', - 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\\assertstringmatchesformatfile', - 136 => 'phpunit\\framework\\assertstringstartswith', - 137 => 'phpunit\\framework\\assertstringstartsnotwith', - 138 => 'phpunit\\framework\\assertstringcontainsstring', - 139 => 'phpunit\\framework\\assertstringcontainsstringignoringcase', - 140 => 'phpunit\\framework\\assertstringnotcontainsstring', - 141 => 'phpunit\\framework\\assertstringnotcontainsstringignoringcase', - 142 => 'phpunit\\framework\\assertstringendswith', - 143 => 'phpunit\\framework\\assertstringendsnotwith', - 144 => 'phpunit\\framework\\assertxmlfileequalsxmlfile', - 145 => 'phpunit\\framework\\assertxmlfilenotequalsxmlfile', - 146 => 'phpunit\\framework\\assertxmlstringequalsxmlfile', - 147 => 'phpunit\\framework\\assertxmlstringnotequalsxmlfile', - 148 => 'phpunit\\framework\\assertxmlstringequalsxmlstring', - 149 => 'phpunit\\framework\\assertxmlstringnotequalsxmlstring', - 150 => 'phpunit\\framework\\assertthat', - 151 => 'phpunit\\framework\\assertjson', - 152 => 'phpunit\\framework\\assertjsonstringequalsjsonstring', - 153 => 'phpunit\\framework\\assertjsonstringnotequalsjsonstring', - 154 => 'phpunit\\framework\\assertjsonstringequalsjsonfile', - 155 => 'phpunit\\framework\\assertjsonstringnotequalsjsonfile', - 156 => 'phpunit\\framework\\assertjsonfileequalsjsonfile', - 157 => 'phpunit\\framework\\assertjsonfilenotequalsjsonfile', - 158 => 'phpunit\\framework\\logicaland', - 159 => 'phpunit\\framework\\logicalor', - 160 => 'phpunit\\framework\\logicalnot', - 161 => 'phpunit\\framework\\logicalxor', - 162 => 'phpunit\\framework\\anything', - 163 => 'phpunit\\framework\\istrue', - 164 => 'phpunit\\framework\\isfalse', - 165 => 'phpunit\\framework\\isjson', - 166 => 'phpunit\\framework\\isnull', - 167 => 'phpunit\\framework\\isfinite', - 168 => 'phpunit\\framework\\isinfinite', - 169 => 'phpunit\\framework\\isnan', - 170 => 'phpunit\\framework\\containsequal', - 171 => 'phpunit\\framework\\containsidentical', - 172 => 'phpunit\\framework\\containsonly', - 173 => 'phpunit\\framework\\containsonlyarray', - 174 => 'phpunit\\framework\\containsonlybool', - 175 => 'phpunit\\framework\\containsonlycallable', - 176 => 'phpunit\\framework\\containsonlyfloat', - 177 => 'phpunit\\framework\\containsonlyint', - 178 => 'phpunit\\framework\\containsonlyiterable', - 179 => 'phpunit\\framework\\containsonlynull', - 180 => 'phpunit\\framework\\containsonlynumeric', - 181 => 'phpunit\\framework\\containsonlyobject', - 182 => 'phpunit\\framework\\containsonlyresource', - 183 => 'phpunit\\framework\\containsonlyclosedresource', - 184 => 'phpunit\\framework\\containsonlyscalar', - 185 => 'phpunit\\framework\\containsonlystring', - 186 => 'phpunit\\framework\\containsonlyinstancesof', - 187 => 'phpunit\\framework\\arrayhaskey', - 188 => 'phpunit\\framework\\islist', - 189 => 'phpunit\\framework\\equalto', - 190 => 'phpunit\\framework\\equaltocanonicalizing', - 191 => 'phpunit\\framework\\equaltoignoringcase', - 192 => 'phpunit\\framework\\equaltowithdelta', - 193 => 'phpunit\\framework\\isempty', - 194 => 'phpunit\\framework\\iswritable', - 195 => 'phpunit\\framework\\isreadable', - 196 => 'phpunit\\framework\\directoryexists', - 197 => 'phpunit\\framework\\fileexists', - 198 => 'phpunit\\framework\\greaterthan', - 199 => 'phpunit\\framework\\greaterthanorequal', - 200 => 'phpunit\\framework\\identicalto', - 201 => 'phpunit\\framework\\isinstanceof', - 202 => 'phpunit\\framework\\isarray', - 203 => 'phpunit\\framework\\isbool', - 204 => 'phpunit\\framework\\iscallable', - 205 => 'phpunit\\framework\\isfloat', - 206 => 'phpunit\\framework\\isint', - 207 => 'phpunit\\framework\\isiterable', - 208 => 'phpunit\\framework\\isnumeric', - 209 => 'phpunit\\framework\\isobject', - 210 => 'phpunit\\framework\\isresource', - 211 => 'phpunit\\framework\\isclosedresource', - 212 => 'phpunit\\framework\\isscalar', - 213 => 'phpunit\\framework\\isstring', - 214 => 'phpunit\\framework\\istype', - 215 => 'phpunit\\framework\\lessthan', - 216 => 'phpunit\\framework\\lessthanorequal', - 217 => 'phpunit\\framework\\matchesregularexpression', - 218 => 'phpunit\\framework\\matches', - 219 => 'phpunit\\framework\\stringstartswith', - 220 => 'phpunit\\framework\\stringcontains', - 221 => 'phpunit\\framework\\stringendswith', - 222 => 'phpunit\\framework\\stringequalsstringignoringlineendings', - 223 => 'phpunit\\framework\\countof', - 224 => 'phpunit\\framework\\objectequals', - 225 => 'phpunit\\framework\\callback', - 226 => 'phpunit\\framework\\any', - 227 => 'phpunit\\framework\\never', - 228 => 'phpunit\\framework\\atleast', - 229 => 'phpunit\\framework\\atleastonce', - 230 => 'phpunit\\framework\\once', - 231 => 'phpunit\\framework\\exactly', - 232 => 'phpunit\\framework\\atmost', - 233 => 'phpunit\\framework\\throwexception', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Exception/Exception.php' => - array ( - 0 => 'cd59a68d86bd54ca3a220e6011d8ef170e0b112c', - 1 => - array ( - 0 => 'phpunit\\textui\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Exception/RuntimeException.php' => - array ( - 0 => '402a47a1fcbadbc07b259a80e7188b91da7e59ea', - 1 => - array ( - 0 => 'phpunit\\textui\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Output/Default/UnexpectedOutputPrinter.php' => - array ( - 0 => 'a86f64e15743b4bb4f6342b56f87beca71c1dbc8', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\unexpectedoutputprinter', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\__construct', - 1 => 'phpunit\\textui\\output\\default\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredPhpunitWarningSubscriber.php' => - array ( - 0 => 'bcf8f58b8cf35223f41684f8a06c251d1056521f', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpunitwarningsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/TestTriggeredPhpunitNoticeSubscriber.php' => - array ( - 0 => '885a8c87b525bec25f93030c36deae76aa12c84f', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpunitnoticesubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/Subscriber/ChildProcessErroredSubscriber.php' => - array ( - 0 => 'ba5942680f8b8fd75adf2288216829fd2ca7d0fc', - 1 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\childprocesserroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\output\\default\\progressprinter\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Output/Default/ProgressPrinter/ProgressPrinter.php' => - array ( - 0 => 'ae50b4c0801114257a224e10b7fe511e40a4266b', - 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\\testtriggeredphpunitnotice', - 12 => 'phpunit\\textui\\output\\default\\progressprinter\\testconsideredrisky', - 13 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredwarning', - 14 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpwarning', - 15 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggeredphpunitwarning', - 16 => 'phpunit\\textui\\output\\default\\progressprinter\\testtriggerederror', - 17 => 'phpunit\\textui\\output\\default\\progressprinter\\testfailed', - 18 => 'phpunit\\textui\\output\\default\\progressprinter\\testerrored', - 19 => 'phpunit\\textui\\output\\default\\progressprinter\\testfinished', - 20 => 'phpunit\\textui\\output\\default\\progressprinter\\childprocesserrored', - 21 => 'phpunit\\textui\\output\\default\\progressprinter\\registersubscribers', - 22 => 'phpunit\\textui\\output\\default\\progressprinter\\updateteststatus', - 23 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforsuccess', - 24 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforskipped', - 25 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforincomplete', - 26 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressfornotice', - 27 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressfordeprecation', - 28 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforrisky', - 29 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforwarning', - 30 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforfailure', - 31 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogressforerror', - 32 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogresswithcolor', - 33 => 'phpunit\\textui\\output\\default\\progressprinter\\printprogress', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Output/Default/ResultPrinter.php' => - array ( - 0 => 'ea41e942b67f2a1ec7b62741e6dfb54894b1a229', - 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\\printdetailsonteststhattriggeredphpunitnotices', - 5 => 'phpunit\\textui\\output\\default\\printtestrunnernotices', - 6 => 'phpunit\\textui\\output\\default\\printtestrunnerwarnings', - 7 => 'phpunit\\textui\\output\\default\\printtestrunnerdeprecations', - 8 => 'phpunit\\textui\\output\\default\\printdetailsonteststhattriggeredphpunitwarnings', - 9 => 'phpunit\\textui\\output\\default\\printtestswitherrors', - 10 => 'phpunit\\textui\\output\\default\\printtestswithfailedassertions', - 11 => 'phpunit\\textui\\output\\default\\printriskytests', - 12 => 'phpunit\\textui\\output\\default\\printincompletetests', - 13 => 'phpunit\\textui\\output\\default\\printskippedtestsuites', - 14 => 'phpunit\\textui\\output\\default\\printskippedtests', - 15 => 'phpunit\\textui\\output\\default\\printissuelist', - 16 => 'phpunit\\textui\\output\\default\\printlistheaderwithnumberoftestsandnumberofissues', - 17 => 'phpunit\\textui\\output\\default\\printlistheaderwithnumber', - 18 => 'phpunit\\textui\\output\\default\\printlistheader', - 19 => 'phpunit\\textui\\output\\default\\printlist', - 20 => 'phpunit\\textui\\output\\default\\printlistelement', - 21 => 'phpunit\\textui\\output\\default\\printissuelistelement', - 22 => 'phpunit\\textui\\output\\default\\name', - 23 => 'phpunit\\textui\\output\\default\\maptestswithissueseventstoelements', - 24 => 'phpunit\\textui\\output\\default\\testlocation', - 25 => 'phpunit\\textui\\output\\default\\reasonmessage', - 26 => 'phpunit\\textui\\output\\default\\reasonlocation', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Output/Facade.php' => - array ( - 0 => 'cec7d637e78dee4d591c088cbc832719d6ed4fc7', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Output/TestDox/ResultPrinter.php' => - array ( - 0 => '15daa5049f29e3f4461596520cdb34f34d7bf445', - 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', - 17 => 'phpunit\\textui\\output\\testdox\\printbeforeclassorafterclasserrors', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Output/SummaryPrinter.php' => - array ( - 0 => 'a7d2a08e4b262896b6bbd94cde91c50a0ff0896c', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Configuration.php' => - array ( - 0 => '19c588376d9e9c39593291e8d5e79ac2582a6388', - 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\\bootstrapfortestsuite', - 8 => 'phpunit\\textui\\configuration\\cacheresult', - 9 => 'phpunit\\textui\\configuration\\hascachedirectory', - 10 => 'phpunit\\textui\\configuration\\cachedirectory', - 11 => 'phpunit\\textui\\configuration\\hascoveragecachedirectory', - 12 => 'phpunit\\textui\\configuration\\coveragecachedirectory', - 13 => 'phpunit\\textui\\configuration\\source', - 14 => 'phpunit\\textui\\configuration\\testresultcachefile', - 15 => 'phpunit\\textui\\configuration\\ignoredeprecatedcodeunitsfromcodecoverage', - 16 => 'phpunit\\textui\\configuration\\disablecodecoverageignore', - 17 => 'phpunit\\textui\\configuration\\pathcoverage', - 18 => 'phpunit\\textui\\configuration\\hascoveragereport', - 19 => 'phpunit\\textui\\configuration\\hascoverageclover', - 20 => 'phpunit\\textui\\configuration\\coverageclover', - 21 => 'phpunit\\textui\\configuration\\hascoveragecobertura', - 22 => 'phpunit\\textui\\configuration\\coveragecobertura', - 23 => 'phpunit\\textui\\configuration\\hascoveragecrap4j', - 24 => 'phpunit\\textui\\configuration\\coveragecrap4j', - 25 => 'phpunit\\textui\\configuration\\coveragecrap4jthreshold', - 26 => 'phpunit\\textui\\configuration\\hascoveragehtml', - 27 => 'phpunit\\textui\\configuration\\coveragehtml', - 28 => 'phpunit\\textui\\configuration\\coveragehtmllowupperbound', - 29 => 'phpunit\\textui\\configuration\\coveragehtmlhighlowerbound', - 30 => 'phpunit\\textui\\configuration\\coveragehtmlcolorsuccesslow', - 31 => 'phpunit\\textui\\configuration\\coveragehtmlcolorsuccessmedium', - 32 => 'phpunit\\textui\\configuration\\coveragehtmlcolorsuccesshigh', - 33 => 'phpunit\\textui\\configuration\\coveragehtmlcolorwarning', - 34 => 'phpunit\\textui\\configuration\\coveragehtmlcolordanger', - 35 => 'phpunit\\textui\\configuration\\hascoveragehtmlcustomcssfile', - 36 => 'phpunit\\textui\\configuration\\coveragehtmlcustomcssfile', - 37 => 'phpunit\\textui\\configuration\\hascoverageopenclover', - 38 => 'phpunit\\textui\\configuration\\coverageopenclover', - 39 => 'phpunit\\textui\\configuration\\hascoveragephp', - 40 => 'phpunit\\textui\\configuration\\coveragephp', - 41 => 'phpunit\\textui\\configuration\\hascoveragetext', - 42 => 'phpunit\\textui\\configuration\\coveragetext', - 43 => 'phpunit\\textui\\configuration\\coveragetextshowuncoveredfiles', - 44 => 'phpunit\\textui\\configuration\\coveragetextshowonlysummary', - 45 => 'phpunit\\textui\\configuration\\hascoveragexml', - 46 => 'phpunit\\textui\\configuration\\coveragexml', - 47 => 'phpunit\\textui\\configuration\\coveragexmlincludesource', - 48 => 'phpunit\\textui\\configuration\\failonallissues', - 49 => 'phpunit\\textui\\configuration\\failondeprecation', - 50 => 'phpunit\\textui\\configuration\\failonphpunitdeprecation', - 51 => 'phpunit\\textui\\configuration\\failonphpunitnotice', - 52 => 'phpunit\\textui\\configuration\\failonphpunitwarning', - 53 => 'phpunit\\textui\\configuration\\failonemptytestsuite', - 54 => 'phpunit\\textui\\configuration\\failonincomplete', - 55 => 'phpunit\\textui\\configuration\\failonnotice', - 56 => 'phpunit\\textui\\configuration\\failonrisky', - 57 => 'phpunit\\textui\\configuration\\failonskipped', - 58 => 'phpunit\\textui\\configuration\\failonwarning', - 59 => 'phpunit\\textui\\configuration\\donotfailondeprecation', - 60 => 'phpunit\\textui\\configuration\\donotfailonphpunitdeprecation', - 61 => 'phpunit\\textui\\configuration\\donotfailonphpunitnotice', - 62 => 'phpunit\\textui\\configuration\\donotfailonphpunitwarning', - 63 => 'phpunit\\textui\\configuration\\donotfailonemptytestsuite', - 64 => 'phpunit\\textui\\configuration\\donotfailonincomplete', - 65 => 'phpunit\\textui\\configuration\\donotfailonnotice', - 66 => 'phpunit\\textui\\configuration\\donotfailonrisky', - 67 => 'phpunit\\textui\\configuration\\donotfailonskipped', - 68 => 'phpunit\\textui\\configuration\\donotfailonwarning', - 69 => 'phpunit\\textui\\configuration\\stopondefect', - 70 => 'phpunit\\textui\\configuration\\stopondeprecation', - 71 => 'phpunit\\textui\\configuration\\hasspecificdeprecationtostopon', - 72 => 'phpunit\\textui\\configuration\\specificdeprecationtostopon', - 73 => 'phpunit\\textui\\configuration\\stoponerror', - 74 => 'phpunit\\textui\\configuration\\stoponfailure', - 75 => 'phpunit\\textui\\configuration\\stoponincomplete', - 76 => 'phpunit\\textui\\configuration\\stoponnotice', - 77 => 'phpunit\\textui\\configuration\\stoponrisky', - 78 => 'phpunit\\textui\\configuration\\stoponskipped', - 79 => 'phpunit\\textui\\configuration\\stoponwarning', - 80 => 'phpunit\\textui\\configuration\\outputtostandarderrorstream', - 81 => 'phpunit\\textui\\configuration\\columns', - 82 => 'phpunit\\textui\\configuration\\noextensions', - 83 => 'phpunit\\textui\\configuration\\haspharextensiondirectory', - 84 => 'phpunit\\textui\\configuration\\pharextensiondirectory', - 85 => 'phpunit\\textui\\configuration\\extensionbootstrappers', - 86 => 'phpunit\\textui\\configuration\\backupglobals', - 87 => 'phpunit\\textui\\configuration\\backupstaticproperties', - 88 => 'phpunit\\textui\\configuration\\bestrictaboutchangestoglobalstate', - 89 => 'phpunit\\textui\\configuration\\colors', - 90 => 'phpunit\\textui\\configuration\\processisolation', - 91 => 'phpunit\\textui\\configuration\\enforcetimelimit', - 92 => 'phpunit\\textui\\configuration\\defaulttimelimit', - 93 => 'phpunit\\textui\\configuration\\timeoutforsmalltests', - 94 => 'phpunit\\textui\\configuration\\timeoutformediumtests', - 95 => 'phpunit\\textui\\configuration\\timeoutforlargetests', - 96 => 'phpunit\\textui\\configuration\\reportuselesstests', - 97 => 'phpunit\\textui\\configuration\\strictcoverage', - 98 => 'phpunit\\textui\\configuration\\disallowtestoutput', - 99 => 'phpunit\\textui\\configuration\\displaydetailsonallissues', - 100 => 'phpunit\\textui\\configuration\\displaydetailsonincompletetests', - 101 => 'phpunit\\textui\\configuration\\displaydetailsonskippedtests', - 102 => 'phpunit\\textui\\configuration\\displaydetailsonteststhattriggerdeprecations', - 103 => 'phpunit\\textui\\configuration\\displaydetailsonphpunitdeprecations', - 104 => 'phpunit\\textui\\configuration\\displaydetailsonphpunitnotices', - 105 => 'phpunit\\textui\\configuration\\displaydetailsonteststhattriggererrors', - 106 => 'phpunit\\textui\\configuration\\displaydetailsonteststhattriggernotices', - 107 => 'phpunit\\textui\\configuration\\displaydetailsonteststhattriggerwarnings', - 108 => 'phpunit\\textui\\configuration\\reversedefectlist', - 109 => 'phpunit\\textui\\configuration\\requirecoveragemetadata', - 110 => 'phpunit\\textui\\configuration\\noprogress', - 111 => 'phpunit\\textui\\configuration\\noresults', - 112 => 'phpunit\\textui\\configuration\\nooutput', - 113 => 'phpunit\\textui\\configuration\\executionorder', - 114 => 'phpunit\\textui\\configuration\\executionorderdefects', - 115 => 'phpunit\\textui\\configuration\\resolvedependencies', - 116 => 'phpunit\\textui\\configuration\\haslogfileteamcity', - 117 => 'phpunit\\textui\\configuration\\logfileteamcity', - 118 => 'phpunit\\textui\\configuration\\haslogfilejunit', - 119 => 'phpunit\\textui\\configuration\\logfilejunit', - 120 => 'phpunit\\textui\\configuration\\haslogfileotr', - 121 => 'phpunit\\textui\\configuration\\logfileotr', - 122 => 'phpunit\\textui\\configuration\\includegitinformationinotrlogfile', - 123 => 'phpunit\\textui\\configuration\\haslogfiletestdoxhtml', - 124 => 'phpunit\\textui\\configuration\\logfiletestdoxhtml', - 125 => 'phpunit\\textui\\configuration\\haslogfiletestdoxtext', - 126 => 'phpunit\\textui\\configuration\\logfiletestdoxtext', - 127 => 'phpunit\\textui\\configuration\\haslogeventstext', - 128 => 'phpunit\\textui\\configuration\\logeventstext', - 129 => 'phpunit\\textui\\configuration\\haslogeventsverbosetext', - 130 => 'phpunit\\textui\\configuration\\logeventsverbosetext', - 131 => 'phpunit\\textui\\configuration\\outputisteamcity', - 132 => 'phpunit\\textui\\configuration\\outputistestdox', - 133 => 'phpunit\\textui\\configuration\\testdoxoutputwithsummary', - 134 => 'phpunit\\textui\\configuration\\hastestscovering', - 135 => 'phpunit\\textui\\configuration\\testscovering', - 136 => 'phpunit\\textui\\configuration\\hastestsusing', - 137 => 'phpunit\\textui\\configuration\\testsusing', - 138 => 'phpunit\\textui\\configuration\\hastestsrequiringphpextension', - 139 => 'phpunit\\textui\\configuration\\testsrequiringphpextension', - 140 => 'phpunit\\textui\\configuration\\hasfilter', - 141 => 'phpunit\\textui\\configuration\\filter', - 142 => 'phpunit\\textui\\configuration\\hasexcludefilter', - 143 => 'phpunit\\textui\\configuration\\excludefilter', - 144 => 'phpunit\\textui\\configuration\\hasgroups', - 145 => 'phpunit\\textui\\configuration\\groups', - 146 => 'phpunit\\textui\\configuration\\hasexcludegroups', - 147 => 'phpunit\\textui\\configuration\\excludegroups', - 148 => 'phpunit\\textui\\configuration\\randomorderseed', - 149 => 'phpunit\\textui\\configuration\\includeuncoveredfiles', - 150 => 'phpunit\\textui\\configuration\\testsuite', - 151 => 'phpunit\\textui\\configuration\\includetestsuite', - 152 => 'phpunit\\textui\\configuration\\includetestsuites', - 153 => 'phpunit\\textui\\configuration\\excludetestsuite', - 154 => 'phpunit\\textui\\configuration\\excludetestsuites', - 155 => 'phpunit\\textui\\configuration\\hasdefaulttestsuite', - 156 => 'phpunit\\textui\\configuration\\defaulttestsuite', - 157 => 'phpunit\\textui\\configuration\\ignoretestselectioninxmlconfiguration', - 158 => 'phpunit\\textui\\configuration\\testsuffixes', - 159 => 'phpunit\\textui\\configuration\\php', - 160 => 'phpunit\\textui\\configuration\\controlgarbagecollector', - 161 => 'phpunit\\textui\\configuration\\numberoftestsbeforegarbagecollection', - 162 => 'phpunit\\textui\\configuration\\hasgeneratebaseline', - 163 => 'phpunit\\textui\\configuration\\generatebaseline', - 164 => 'phpunit\\textui\\configuration\\debug', - 165 => 'phpunit\\textui\\configuration\\withtelemetry', - 166 => 'phpunit\\textui\\configuration\\shortenarraysforexportthreshold', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoCacheDirectoryException.php' => - array ( - 0 => 'a3b9097eb983fb89b490551e2d2d6d6752ccdbb2', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\nocachedirectoryexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/ConfigurationCannotBeBuiltException.php' => - array ( - 0 => 'b7cf90f1fe62dd5f4c621e87e07a4a25d629594e', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\configurationcannotbebuiltexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/CodeCoverageReportNotConfiguredException.php' => - array ( - 0 => '25ffffc57d9bc1aab7ef904d02b9fc5283be4f33', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\codecoveragereportnotconfiguredexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/Exception.php' => - array ( - 0 => '651f39402a47ca1bb60aaefd362efc91ddb09f78', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoBaselineException.php' => - array ( - 0 => '5956aed529d178e1a27e6127481c9f968c185184', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\nobaselineexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/FilterNotConfiguredException.php' => - array ( - 0 => '02ca5e8fa09bbf695be9ad90ac843b41a3decadc', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\filternotconfiguredexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/CannotFindSchemaException.php' => - array ( - 0 => '65e55368a3291a3b4b771d235fcfa6b851aba3ca', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\cannotfindschemaexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/BootstrapScriptException.php' => - array ( - 0 => '8d61d3dc86df6f0c5615be43762dd59b88a0296d', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\bootstrapscriptexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/LoggingNotConfiguredException.php' => - array ( - 0 => '0588de36a3edfff413d678250b821d35dc8fd2d8', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\loggingnotconfiguredexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/BootstrapScriptDoesNotExistException.php' => - array ( - 0 => '1d4d5133c5ea73c6537d3259ca3e2c5b76897f43', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\bootstrapscriptdoesnotexistexception', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\__construct', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoBootstrapException.php' => - array ( - 0 => 'e89adbef462ec8b9712861cb5ad1da685fe90f24', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\nobootstrapexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoPharExtensionDirectoryException.php' => - array ( - 0 => '3d437b5db4d3b4a7f0b40c1fa7d5e674dbb33990', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\nopharextensiondirectoryexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoCoverageCacheDirectoryException.php' => - array ( - 0 => 'ef44d47ec54dd79df1149eb6f7f4c47740b19577', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\nocoveragecachedirectoryexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/SpecificDeprecationToStopOnNotConfiguredException.php' => - array ( - 0 => 'f2eb264390144f664b6b821c30e6561ca13bc1f0', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\specificdeprecationtostoponnotconfiguredexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoConfigurationFileException.php' => - array ( - 0 => '29abe2e5b128e446f78ebe9fd63e36cbd4e962ee', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\noconfigurationfileexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoCustomCssFileException.php' => - array ( - 0 => 'df7740e41ea6f290a3e01a11d1106b57cac4f6b6', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\nocustomcssfileexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Exception/NoDefaultTestSuiteException.php' => - array ( - 0 => 'e76f5647d0dab86deaff96914a1c4cccc9fad5bc', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\nodefaulttestsuiteexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/FileCollection.php' => - array ( - 0 => 'bb7ef45eb36be74324a09d19c9ca5522e2e856fb', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/GroupCollection.php' => - array ( - 0 => '1de64cc2b71d6d1b61ed5929ee157ba07d223cb0', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/Source.php' => - array ( - 0 => '8ca598a7d9b61ce603bb287b3d924fe1f8c09d04', - 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\\restrictnotices', - 10 => 'phpunit\\textui\\configuration\\restrictwarnings', - 11 => 'phpunit\\textui\\configuration\\ignoresuppressionofdeprecations', - 12 => 'phpunit\\textui\\configuration\\ignoresuppressionofphpdeprecations', - 13 => 'phpunit\\textui\\configuration\\ignoresuppressionoferrors', - 14 => 'phpunit\\textui\\configuration\\ignoresuppressionofnotices', - 15 => 'phpunit\\textui\\configuration\\ignoresuppressionofphpnotices', - 16 => 'phpunit\\textui\\configuration\\ignoresuppressionofwarnings', - 17 => 'phpunit\\textui\\configuration\\ignoresuppressionofphpwarnings', - 18 => 'phpunit\\textui\\configuration\\deprecationtriggers', - 19 => 'phpunit\\textui\\configuration\\ignoreselfdeprecations', - 20 => 'phpunit\\textui\\configuration\\ignoredirectdeprecations', - 21 => 'phpunit\\textui\\configuration\\ignoreindirectdeprecations', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Value/FilterDirectoryCollection.php' => - array ( - 0 => '4547541849bd4457b84e1e2d79b2762ab98d24f6', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/PHPUnit.php' => - array ( - 0 => 'ce91da2557b1afca08fc16ef105ed082416624bc', - 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\\displaydetailsonallissues', - 8 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonincompletetests', - 9 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonskippedtests', - 10 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonteststhattriggerdeprecations', - 11 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonphpunitdeprecations', - 12 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonphpunitnotices', - 13 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonteststhattriggererrors', - 14 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonteststhattriggernotices', - 15 => 'phpunit\\textui\\xmlconfiguration\\displaydetailsonteststhattriggerwarnings', - 16 => 'phpunit\\textui\\xmlconfiguration\\reversedefectlist', - 17 => 'phpunit\\textui\\xmlconfiguration\\requirecoveragemetadata', - 18 => 'phpunit\\textui\\xmlconfiguration\\hasbootstrap', - 19 => 'phpunit\\textui\\xmlconfiguration\\bootstrap', - 20 => 'phpunit\\textui\\xmlconfiguration\\bootstrapfortestsuite', - 21 => 'phpunit\\textui\\xmlconfiguration\\processisolation', - 22 => 'phpunit\\textui\\xmlconfiguration\\failonallissues', - 23 => 'phpunit\\textui\\xmlconfiguration\\failondeprecation', - 24 => 'phpunit\\textui\\xmlconfiguration\\failonphpunitdeprecation', - 25 => 'phpunit\\textui\\xmlconfiguration\\failonphpunitnotice', - 26 => 'phpunit\\textui\\xmlconfiguration\\failonphpunitwarning', - 27 => 'phpunit\\textui\\xmlconfiguration\\failonemptytestsuite', - 28 => 'phpunit\\textui\\xmlconfiguration\\failonincomplete', - 29 => 'phpunit\\textui\\xmlconfiguration\\failonnotice', - 30 => 'phpunit\\textui\\xmlconfiguration\\failonrisky', - 31 => 'phpunit\\textui\\xmlconfiguration\\failonskipped', - 32 => 'phpunit\\textui\\xmlconfiguration\\failonwarning', - 33 => 'phpunit\\textui\\xmlconfiguration\\stopondefect', - 34 => 'phpunit\\textui\\xmlconfiguration\\stopondeprecation', - 35 => 'phpunit\\textui\\xmlconfiguration\\stoponerror', - 36 => 'phpunit\\textui\\xmlconfiguration\\stoponfailure', - 37 => 'phpunit\\textui\\xmlconfiguration\\stoponincomplete', - 38 => 'phpunit\\textui\\xmlconfiguration\\stoponnotice', - 39 => 'phpunit\\textui\\xmlconfiguration\\stoponrisky', - 40 => 'phpunit\\textui\\xmlconfiguration\\stoponskipped', - 41 => 'phpunit\\textui\\xmlconfiguration\\stoponwarning', - 42 => 'phpunit\\textui\\xmlconfiguration\\hasextensionsdirectory', - 43 => 'phpunit\\textui\\xmlconfiguration\\extensionsdirectory', - 44 => 'phpunit\\textui\\xmlconfiguration\\bestrictaboutchangestoglobalstate', - 45 => 'phpunit\\textui\\xmlconfiguration\\bestrictaboutoutputduringtests', - 46 => 'phpunit\\textui\\xmlconfiguration\\bestrictaboutteststhatdonottestanything', - 47 => 'phpunit\\textui\\xmlconfiguration\\bestrictaboutcoveragemetadata', - 48 => 'phpunit\\textui\\xmlconfiguration\\enforcetimelimit', - 49 => 'phpunit\\textui\\xmlconfiguration\\defaulttimelimit', - 50 => 'phpunit\\textui\\xmlconfiguration\\timeoutforsmalltests', - 51 => 'phpunit\\textui\\xmlconfiguration\\timeoutformediumtests', - 52 => 'phpunit\\textui\\xmlconfiguration\\timeoutforlargetests', - 53 => 'phpunit\\textui\\xmlconfiguration\\hasdefaulttestsuite', - 54 => 'phpunit\\textui\\xmlconfiguration\\defaulttestsuite', - 55 => 'phpunit\\textui\\xmlconfiguration\\executionorder', - 56 => 'phpunit\\textui\\xmlconfiguration\\resolvedependencies', - 57 => 'phpunit\\textui\\xmlconfiguration\\defectsfirst', - 58 => 'phpunit\\textui\\xmlconfiguration\\backupglobals', - 59 => 'phpunit\\textui\\xmlconfiguration\\backupstaticproperties', - 60 => 'phpunit\\textui\\xmlconfiguration\\testdoxprinter', - 61 => 'phpunit\\textui\\xmlconfiguration\\testdoxprintersummary', - 62 => 'phpunit\\textui\\xmlconfiguration\\controlgarbagecollector', - 63 => 'phpunit\\textui\\xmlconfiguration\\numberoftestsbeforegarbagecollection', - 64 => 'phpunit\\textui\\xmlconfiguration\\shortenarraysforexportthreshold', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Generator.php' => - array ( - 0 => 'c525a9a531e5bef0862bb4266aecedb2ff8a3bee', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\generator', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\generatedefaultconfiguration', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/CodeCoverage.php' => - array ( - 0 => '5297bc6e5d4e5edc81562f31ed521431e8eb59b4', - 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\\hasopenclover', - 14 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\openclover', - 15 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\hasphp', - 16 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\php', - 17 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\hastext', - 18 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\text', - 19 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\hasxml', - 20 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\xml', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/Report/OpenClover.php' => - array ( - 0 => '6352af95bdd460e72dac4706c5fda6d7f68158eb', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\openclover', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\target', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/CodeCoverage/Report/Xml.php' => - array ( - 0 => 'b1cf77204d54520ef2d80eac3bf460d7b21db800', - 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', - 2 => 'phpunit\\textui\\xmlconfiguration\\codecoverage\\report\\includesource', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/SchemaDetector/SuccessfulSchemaDetectionResult.php' => - array ( - 0 => 'dac136d1b947cfbe724591c0aa1a02b9cdb82128', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/SchemaDetector/FailedSchemaDetectionResult.php' => - array ( - 0 => '4dde584304e23427ca91367832750738e7045d75', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\failedschemadetectionresult', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/TestSuiteMapper.php' => - array ( - 0 => '4ba0c75d0b3c0571d302b9290786679a0468721b', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\testsuitemapper', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\map', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Logging/Otr.php' => - array ( - 0 => 'f0b04a79a4b8f9ae0459dce0d2f6aa095834877f', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\otr', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\logging\\__construct', - 1 => 'phpunit\\textui\\xmlconfiguration\\logging\\target', - 2 => 'phpunit\\textui\\xmlconfiguration\\logging\\includegitinformation', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Logging/Logging.php' => - array ( - 0 => 'b259be76f0da85620b15508e0e53c85308eaa7a6', - 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\\hasotr', - 4 => 'phpunit\\textui\\xmlconfiguration\\logging\\otr', - 5 => 'phpunit\\textui\\xmlconfiguration\\logging\\hasteamcity', - 6 => 'phpunit\\textui\\xmlconfiguration\\logging\\teamcity', - 7 => 'phpunit\\textui\\xmlconfiguration\\logging\\hastestdoxhtml', - 8 => 'phpunit\\textui\\xmlconfiguration\\logging\\testdoxhtml', - 9 => 'phpunit\\textui\\xmlconfiguration\\logging\\hastestdoxtext', - 10 => 'phpunit\\textui\\xmlconfiguration\\logging\\testdoxtext', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Exception.php' => - array ( - 0 => 'd4f0bbea8b6aa2ac2f3cfbb6a8a69ec3a8a5ec1e', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/DefaultConfiguration.php' => - array ( - 0 => '7428a4f955b00e75b067d421d4f644948c254525', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\defaultconfiguration', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\create', - 1 => 'phpunit\\textui\\xmlconfiguration\\isdefault', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Validator/ValidationResult.php' => - array ( - 0 => '93ec37a7e41422b186737d8867bb0ca0189ee036', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/SchemaFinder.php' => - array ( - 0 => '5e2f4206cc45b32cf2ef7a66ae5b07217a913299', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Loader.php' => - array ( - 0 => '0eb90f512d79686d0c581f2bc552b0cb79ff1f28', - 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\\booleanfromstring', - 7 => 'phpunit\\textui\\xmlconfiguration\\valuefromstring', - 8 => 'phpunit\\textui\\xmlconfiguration\\readfilterdirectories', - 9 => 'phpunit\\textui\\xmlconfiguration\\readfilterfiles', - 10 => 'phpunit\\textui\\xmlconfiguration\\groups', - 11 => 'phpunit\\textui\\xmlconfiguration\\parsebooleanattribute', - 12 => 'phpunit\\textui\\xmlconfiguration\\parseintegerattribute', - 13 => 'phpunit\\textui\\xmlconfiguration\\parsestringattribute', - 14 => 'phpunit\\textui\\xmlconfiguration\\parsestringattributewithdefault', - 15 => 'phpunit\\textui\\xmlconfiguration\\parseinteger', - 16 => 'phpunit\\textui\\xmlconfiguration\\php', - 17 => 'phpunit\\textui\\xmlconfiguration\\phpunit', - 18 => 'phpunit\\textui\\xmlconfiguration\\parsecolors', - 19 => 'phpunit\\textui\\xmlconfiguration\\parsecolumns', - 20 => 'phpunit\\textui\\xmlconfiguration\\bootstrapfortestsuite', - 21 => 'phpunit\\textui\\xmlconfiguration\\testsuite', - 22 => 'phpunit\\textui\\xmlconfiguration\\parsetestsuiteelements', - 23 => 'phpunit\\textui\\xmlconfiguration\\element', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/MigrationBuilder.php' => - array ( - 0 => '103d9e8c6d48e4baf47b735f1f0358b51ec72e16', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrationbuilder', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\build', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/MigrationException.php' => - array ( - 0 => 'a1f92ed8c45e70c41a7865cbe14a8eeba5cdd50a', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrationexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/MoveAttributesFromFilterWhitelistToCoverage.php' => - array ( - 0 => '63d4bda1648cbcbe2b64b88a88d2b4e8a007b577', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\moveattributesfromfilterwhitelisttocoverage', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Xml/Migration/Migrations/UpdateSchemaLocation.php' => - array ( - 0 => 'ba94f0e559e2756fbfcea58ab12234472a345f02', - 1 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\updateschemalocation', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\xmlconfiguration\\migrate', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/SourceMapper.php' => - array ( - 0 => '783317bf05e7b414a64688dd7e95703c6c497e58', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\sourcemapper', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\map', - 1 => 'phpunit\\textui\\configuration\\aggregatedirectories', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/TestSuiteBuilder.php' => - array ( - 0 => 'af545220df6a54d2d9aff00137bd04253ff2d7c9', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Cli/Configuration.php' => - array ( - 0 => 'f477859f04e17ceafd21fffbdafa039b2fb0bc5e', - 1 => - array ( - 0 => 'phpunit\\textui\\cliarguments\\configuration', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\cliarguments\\__construct', - 1 => 'phpunit\\textui\\cliarguments\\arguments', - 2 => 'phpunit\\textui\\cliarguments\\hasall', - 3 => 'phpunit\\textui\\cliarguments\\all', - 4 => 'phpunit\\textui\\cliarguments\\hasatleastversion', - 5 => 'phpunit\\textui\\cliarguments\\atleastversion', - 6 => 'phpunit\\textui\\cliarguments\\hasbackupglobals', - 7 => 'phpunit\\textui\\cliarguments\\backupglobals', - 8 => 'phpunit\\textui\\cliarguments\\hasbackupstaticproperties', - 9 => 'phpunit\\textui\\cliarguments\\backupstaticproperties', - 10 => 'phpunit\\textui\\cliarguments\\hasbestrictaboutchangestoglobalstate', - 11 => 'phpunit\\textui\\cliarguments\\bestrictaboutchangestoglobalstate', - 12 => 'phpunit\\textui\\cliarguments\\hasbootstrap', - 13 => 'phpunit\\textui\\cliarguments\\bootstrap', - 14 => 'phpunit\\textui\\cliarguments\\hascachedirectory', - 15 => 'phpunit\\textui\\cliarguments\\cachedirectory', - 16 => 'phpunit\\textui\\cliarguments\\hascacheresult', - 17 => 'phpunit\\textui\\cliarguments\\cacheresult', - 18 => 'phpunit\\textui\\cliarguments\\checkphpconfiguration', - 19 => 'phpunit\\textui\\cliarguments\\checkversion', - 20 => 'phpunit\\textui\\cliarguments\\hascolors', - 21 => 'phpunit\\textui\\cliarguments\\colors', - 22 => 'phpunit\\textui\\cliarguments\\hascolumns', - 23 => 'phpunit\\textui\\cliarguments\\columns', - 24 => 'phpunit\\textui\\cliarguments\\hasconfigurationfile', - 25 => 'phpunit\\textui\\cliarguments\\configurationfile', - 26 => 'phpunit\\textui\\cliarguments\\hascoveragefilter', - 27 => 'phpunit\\textui\\cliarguments\\coveragefilter', - 28 => 'phpunit\\textui\\cliarguments\\hascoverageclover', - 29 => 'phpunit\\textui\\cliarguments\\coverageclover', - 30 => 'phpunit\\textui\\cliarguments\\hascoveragecobertura', - 31 => 'phpunit\\textui\\cliarguments\\coveragecobertura', - 32 => 'phpunit\\textui\\cliarguments\\hascoveragecrap4j', - 33 => 'phpunit\\textui\\cliarguments\\coveragecrap4j', - 34 => 'phpunit\\textui\\cliarguments\\hascoveragehtml', - 35 => 'phpunit\\textui\\cliarguments\\coveragehtml', - 36 => 'phpunit\\textui\\cliarguments\\hascoverageopenclover', - 37 => 'phpunit\\textui\\cliarguments\\coverageopenclover', - 38 => 'phpunit\\textui\\cliarguments\\hascoveragephp', - 39 => 'phpunit\\textui\\cliarguments\\coveragephp', - 40 => 'phpunit\\textui\\cliarguments\\hascoveragetext', - 41 => 'phpunit\\textui\\cliarguments\\coveragetext', - 42 => 'phpunit\\textui\\cliarguments\\hascoveragetextshowuncoveredfiles', - 43 => 'phpunit\\textui\\cliarguments\\coveragetextshowuncoveredfiles', - 44 => 'phpunit\\textui\\cliarguments\\hascoveragetextshowonlysummary', - 45 => 'phpunit\\textui\\cliarguments\\coveragetextshowonlysummary', - 46 => 'phpunit\\textui\\cliarguments\\hascoveragexml', - 47 => 'phpunit\\textui\\cliarguments\\coveragexml', - 48 => 'phpunit\\textui\\cliarguments\\hasexcludesourcefromxmlcoverage', - 49 => 'phpunit\\textui\\cliarguments\\excludesourcefromxmlcoverage', - 50 => 'phpunit\\textui\\cliarguments\\haspathcoverage', - 51 => 'phpunit\\textui\\cliarguments\\pathcoverage', - 52 => 'phpunit\\textui\\cliarguments\\warmcoveragecache', - 53 => 'phpunit\\textui\\cliarguments\\hasdefaulttimelimit', - 54 => 'phpunit\\textui\\cliarguments\\defaulttimelimit', - 55 => 'phpunit\\textui\\cliarguments\\hasdisablecodecoverageignore', - 56 => 'phpunit\\textui\\cliarguments\\disablecodecoverageignore', - 57 => 'phpunit\\textui\\cliarguments\\hasdisallowtestoutput', - 58 => 'phpunit\\textui\\cliarguments\\disallowtestoutput', - 59 => 'phpunit\\textui\\cliarguments\\hasenforcetimelimit', - 60 => 'phpunit\\textui\\cliarguments\\enforcetimelimit', - 61 => 'phpunit\\textui\\cliarguments\\hasexcludegroups', - 62 => 'phpunit\\textui\\cliarguments\\excludegroups', - 63 => 'phpunit\\textui\\cliarguments\\hasexecutionorder', - 64 => 'phpunit\\textui\\cliarguments\\executionorder', - 65 => 'phpunit\\textui\\cliarguments\\hasexecutionorderdefects', - 66 => 'phpunit\\textui\\cliarguments\\executionorderdefects', - 67 => 'phpunit\\textui\\cliarguments\\hasfailonallissues', - 68 => 'phpunit\\textui\\cliarguments\\failonallissues', - 69 => 'phpunit\\textui\\cliarguments\\hasfailondeprecation', - 70 => 'phpunit\\textui\\cliarguments\\failondeprecation', - 71 => 'phpunit\\textui\\cliarguments\\hasfailonphpunitdeprecation', - 72 => 'phpunit\\textui\\cliarguments\\failonphpunitdeprecation', - 73 => 'phpunit\\textui\\cliarguments\\hasfailonphpunitnotice', - 74 => 'phpunit\\textui\\cliarguments\\failonphpunitnotice', - 75 => 'phpunit\\textui\\cliarguments\\hasfailonphpunitwarning', - 76 => 'phpunit\\textui\\cliarguments\\failonphpunitwarning', - 77 => 'phpunit\\textui\\cliarguments\\hasfailonemptytestsuite', - 78 => 'phpunit\\textui\\cliarguments\\failonemptytestsuite', - 79 => 'phpunit\\textui\\cliarguments\\hasfailonincomplete', - 80 => 'phpunit\\textui\\cliarguments\\failonincomplete', - 81 => 'phpunit\\textui\\cliarguments\\hasfailonnotice', - 82 => 'phpunit\\textui\\cliarguments\\failonnotice', - 83 => 'phpunit\\textui\\cliarguments\\hasfailonrisky', - 84 => 'phpunit\\textui\\cliarguments\\failonrisky', - 85 => 'phpunit\\textui\\cliarguments\\hasfailonskipped', - 86 => 'phpunit\\textui\\cliarguments\\failonskipped', - 87 => 'phpunit\\textui\\cliarguments\\hasfailonwarning', - 88 => 'phpunit\\textui\\cliarguments\\failonwarning', - 89 => 'phpunit\\textui\\cliarguments\\hasdonotfailondeprecation', - 90 => 'phpunit\\textui\\cliarguments\\donotfailondeprecation', - 91 => 'phpunit\\textui\\cliarguments\\hasdonotfailonphpunitdeprecation', - 92 => 'phpunit\\textui\\cliarguments\\donotfailonphpunitdeprecation', - 93 => 'phpunit\\textui\\cliarguments\\hasdonotfailonphpunitnotice', - 94 => 'phpunit\\textui\\cliarguments\\donotfailonphpunitnotice', - 95 => 'phpunit\\textui\\cliarguments\\hasdonotfailonphpunitwarning', - 96 => 'phpunit\\textui\\cliarguments\\donotfailonphpunitwarning', - 97 => 'phpunit\\textui\\cliarguments\\hasdonotfailonemptytestsuite', - 98 => 'phpunit\\textui\\cliarguments\\donotfailonemptytestsuite', - 99 => 'phpunit\\textui\\cliarguments\\hasdonotfailonincomplete', - 100 => 'phpunit\\textui\\cliarguments\\donotfailonincomplete', - 101 => 'phpunit\\textui\\cliarguments\\hasdonotfailonnotice', - 102 => 'phpunit\\textui\\cliarguments\\donotfailonnotice', - 103 => 'phpunit\\textui\\cliarguments\\hasdonotfailonrisky', - 104 => 'phpunit\\textui\\cliarguments\\donotfailonrisky', - 105 => 'phpunit\\textui\\cliarguments\\hasdonotfailonskipped', - 106 => 'phpunit\\textui\\cliarguments\\donotfailonskipped', - 107 => 'phpunit\\textui\\cliarguments\\hasdonotfailonwarning', - 108 => 'phpunit\\textui\\cliarguments\\donotfailonwarning', - 109 => 'phpunit\\textui\\cliarguments\\hasstopondefect', - 110 => 'phpunit\\textui\\cliarguments\\stopondefect', - 111 => 'phpunit\\textui\\cliarguments\\hasstopondeprecation', - 112 => 'phpunit\\textui\\cliarguments\\stopondeprecation', - 113 => 'phpunit\\textui\\cliarguments\\hasspecificdeprecationtostopon', - 114 => 'phpunit\\textui\\cliarguments\\specificdeprecationtostopon', - 115 => 'phpunit\\textui\\cliarguments\\hasstoponerror', - 116 => 'phpunit\\textui\\cliarguments\\stoponerror', - 117 => 'phpunit\\textui\\cliarguments\\hasstoponfailure', - 118 => 'phpunit\\textui\\cliarguments\\stoponfailure', - 119 => 'phpunit\\textui\\cliarguments\\hasstoponincomplete', - 120 => 'phpunit\\textui\\cliarguments\\stoponincomplete', - 121 => 'phpunit\\textui\\cliarguments\\hasstoponnotice', - 122 => 'phpunit\\textui\\cliarguments\\stoponnotice', - 123 => 'phpunit\\textui\\cliarguments\\hasstoponrisky', - 124 => 'phpunit\\textui\\cliarguments\\stoponrisky', - 125 => 'phpunit\\textui\\cliarguments\\hasstoponskipped', - 126 => 'phpunit\\textui\\cliarguments\\stoponskipped', - 127 => 'phpunit\\textui\\cliarguments\\hasstoponwarning', - 128 => 'phpunit\\textui\\cliarguments\\stoponwarning', - 129 => 'phpunit\\textui\\cliarguments\\hasexcludefilter', - 130 => 'phpunit\\textui\\cliarguments\\excludefilter', - 131 => 'phpunit\\textui\\cliarguments\\hasfilter', - 132 => 'phpunit\\textui\\cliarguments\\filter', - 133 => 'phpunit\\textui\\cliarguments\\hasgeneratebaseline', - 134 => 'phpunit\\textui\\cliarguments\\generatebaseline', - 135 => 'phpunit\\textui\\cliarguments\\hasusebaseline', - 136 => 'phpunit\\textui\\cliarguments\\usebaseline', - 137 => 'phpunit\\textui\\cliarguments\\ignorebaseline', - 138 => 'phpunit\\textui\\cliarguments\\generateconfiguration', - 139 => 'phpunit\\textui\\cliarguments\\migrateconfiguration', - 140 => 'phpunit\\textui\\cliarguments\\hasgroups', - 141 => 'phpunit\\textui\\cliarguments\\groups', - 142 => 'phpunit\\textui\\cliarguments\\hastestscovering', - 143 => 'phpunit\\textui\\cliarguments\\testscovering', - 144 => 'phpunit\\textui\\cliarguments\\hastestsusing', - 145 => 'phpunit\\textui\\cliarguments\\testsusing', - 146 => 'phpunit\\textui\\cliarguments\\hastestsrequiringphpextension', - 147 => 'phpunit\\textui\\cliarguments\\testsrequiringphpextension', - 148 => 'phpunit\\textui\\cliarguments\\help', - 149 => 'phpunit\\textui\\cliarguments\\hasincludepath', - 150 => 'phpunit\\textui\\cliarguments\\includepath', - 151 => 'phpunit\\textui\\cliarguments\\hasinisettings', - 152 => 'phpunit\\textui\\cliarguments\\inisettings', - 153 => 'phpunit\\textui\\cliarguments\\hasjunitlogfile', - 154 => 'phpunit\\textui\\cliarguments\\junitlogfile', - 155 => 'phpunit\\textui\\cliarguments\\hasotrlogfile', - 156 => 'phpunit\\textui\\cliarguments\\otrlogfile', - 157 => 'phpunit\\textui\\cliarguments\\hasincludegitinformationinotrlogfile', - 158 => 'phpunit\\textui\\cliarguments\\includegitinformationinotrlogfile', - 159 => 'phpunit\\textui\\cliarguments\\listgroups', - 160 => 'phpunit\\textui\\cliarguments\\listsuites', - 161 => 'phpunit\\textui\\cliarguments\\listtestfiles', - 162 => 'phpunit\\textui\\cliarguments\\listtests', - 163 => 'phpunit\\textui\\cliarguments\\haslisttestsxml', - 164 => 'phpunit\\textui\\cliarguments\\listtestsxml', - 165 => 'phpunit\\textui\\cliarguments\\hasnocoverage', - 166 => 'phpunit\\textui\\cliarguments\\nocoverage', - 167 => 'phpunit\\textui\\cliarguments\\hasnoextensions', - 168 => 'phpunit\\textui\\cliarguments\\noextensions', - 169 => 'phpunit\\textui\\cliarguments\\hasnooutput', - 170 => 'phpunit\\textui\\cliarguments\\nooutput', - 171 => 'phpunit\\textui\\cliarguments\\hasnoprogress', - 172 => 'phpunit\\textui\\cliarguments\\noprogress', - 173 => 'phpunit\\textui\\cliarguments\\hasnoresults', - 174 => 'phpunit\\textui\\cliarguments\\noresults', - 175 => 'phpunit\\textui\\cliarguments\\hasnologging', - 176 => 'phpunit\\textui\\cliarguments\\nologging', - 177 => 'phpunit\\textui\\cliarguments\\hasprocessisolation', - 178 => 'phpunit\\textui\\cliarguments\\processisolation', - 179 => 'phpunit\\textui\\cliarguments\\hasrandomorderseed', - 180 => 'phpunit\\textui\\cliarguments\\randomorderseed', - 181 => 'phpunit\\textui\\cliarguments\\hasreportuselesstests', - 182 => 'phpunit\\textui\\cliarguments\\reportuselesstests', - 183 => 'phpunit\\textui\\cliarguments\\hasresolvedependencies', - 184 => 'phpunit\\textui\\cliarguments\\resolvedependencies', - 185 => 'phpunit\\textui\\cliarguments\\hasreverselist', - 186 => 'phpunit\\textui\\cliarguments\\reverselist', - 187 => 'phpunit\\textui\\cliarguments\\hasstderr', - 188 => 'phpunit\\textui\\cliarguments\\stderr', - 189 => 'phpunit\\textui\\cliarguments\\hasstrictcoverage', - 190 => 'phpunit\\textui\\cliarguments\\strictcoverage', - 191 => 'phpunit\\textui\\cliarguments\\hasteamcitylogfile', - 192 => 'phpunit\\textui\\cliarguments\\teamcitylogfile', - 193 => 'phpunit\\textui\\cliarguments\\hasteamcityprinter', - 194 => 'phpunit\\textui\\cliarguments\\teamcityprinter', - 195 => 'phpunit\\textui\\cliarguments\\hastestdoxhtmlfile', - 196 => 'phpunit\\textui\\cliarguments\\testdoxhtmlfile', - 197 => 'phpunit\\textui\\cliarguments\\hastestdoxtextfile', - 198 => 'phpunit\\textui\\cliarguments\\testdoxtextfile', - 199 => 'phpunit\\textui\\cliarguments\\hastestdoxprinter', - 200 => 'phpunit\\textui\\cliarguments\\testdoxprinter', - 201 => 'phpunit\\textui\\cliarguments\\hastestdoxprintersummary', - 202 => 'phpunit\\textui\\cliarguments\\testdoxprintersummary', - 203 => 'phpunit\\textui\\cliarguments\\hastestsuffixes', - 204 => 'phpunit\\textui\\cliarguments\\testsuffixes', - 205 => 'phpunit\\textui\\cliarguments\\hastestsuite', - 206 => 'phpunit\\textui\\cliarguments\\testsuite', - 207 => 'phpunit\\textui\\cliarguments\\hasexcludedtestsuite', - 208 => 'phpunit\\textui\\cliarguments\\excludedtestsuite', - 209 => 'phpunit\\textui\\cliarguments\\usedefaultconfiguration', - 210 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonallissues', - 211 => 'phpunit\\textui\\cliarguments\\displaydetailsonallissues', - 212 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonincompletetests', - 213 => 'phpunit\\textui\\cliarguments\\displaydetailsonincompletetests', - 214 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonskippedtests', - 215 => 'phpunit\\textui\\cliarguments\\displaydetailsonskippedtests', - 216 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonteststhattriggerdeprecations', - 217 => 'phpunit\\textui\\cliarguments\\displaydetailsonteststhattriggerdeprecations', - 218 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonphpunitdeprecations', - 219 => 'phpunit\\textui\\cliarguments\\displaydetailsonphpunitdeprecations', - 220 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonphpunitnotices', - 221 => 'phpunit\\textui\\cliarguments\\displaydetailsonphpunitnotices', - 222 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonteststhattriggererrors', - 223 => 'phpunit\\textui\\cliarguments\\displaydetailsonteststhattriggererrors', - 224 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonteststhattriggernotices', - 225 => 'phpunit\\textui\\cliarguments\\displaydetailsonteststhattriggernotices', - 226 => 'phpunit\\textui\\cliarguments\\hasdisplaydetailsonteststhattriggerwarnings', - 227 => 'phpunit\\textui\\cliarguments\\displaydetailsonteststhattriggerwarnings', - 228 => 'phpunit\\textui\\cliarguments\\version', - 229 => 'phpunit\\textui\\cliarguments\\haslogeventstext', - 230 => 'phpunit\\textui\\cliarguments\\logeventstext', - 231 => 'phpunit\\textui\\cliarguments\\haslogeventsverbosetext', - 232 => 'phpunit\\textui\\cliarguments\\logeventsverbosetext', - 233 => 'phpunit\\textui\\cliarguments\\debug', - 234 => 'phpunit\\textui\\cliarguments\\withtelemetry', - 235 => 'phpunit\\textui\\cliarguments\\hasextensions', - 236 => 'phpunit\\textui\\cliarguments\\extensions', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Cli/Builder.php' => - array ( - 0 => '900bc6f029c356ad2c54a707d4a8b9081bf9d2a7', - 1 => - array ( - 0 => 'phpunit\\textui\\cliarguments\\builder', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\cliarguments\\fromparameters', - 1 => 'phpunit\\textui\\cliarguments\\markprocessed', - 2 => 'phpunit\\textui\\cliarguments\\warnwhenoptionsconflict', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Cli/Exception.php' => - array ( - 0 => '0f0be4b7788e246d7417668e94d0595c58c5d94c', - 1 => - array ( - 0 => 'phpunit\\textui\\cliarguments\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/BootstrapLoader.php' => - array ( - 0 => 'bf5f9b4d976cfd649be394a02011d6652c3e45c7', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\bootstraploader', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\handle', - 1 => 'phpunit\\textui\\configuration\\load', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/SourceFilter.php' => - array ( - 0 => 'c47b9d57618df1a1818375dca2f7036aa58a1b13', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\sourcefilter', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\instance', - 1 => 'phpunit\\textui\\configuration\\__construct', - 2 => 'phpunit\\textui\\configuration\\includes', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Configuration/Merger.php' => - array ( - 0 => '025303c0c5ce808e6879678ea1f585fd09ebab5f', - 1 => - array ( - 0 => 'phpunit\\textui\\configuration\\merger', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\configuration\\merge', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Command/Result.php' => - array ( - 0 => '80b516d9d778f78b1c6162030e4af3d9e8df7d71', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Command/Commands/WarmCodeCoverageCacheCommand.php' => - array ( - 0 => '8e35030aaee6690392fc89d7211f332f42221aec', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\warmcodecoveragecachecommand', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\__construct', - 1 => 'phpunit\\textui\\command\\execute', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ListGroupsCommand.php' => - array ( - 0 => 'e051a818127f6c9ffd92e645feda8382b13a79da', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\listgroupscommand', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\__construct', - 1 => 'phpunit\\textui\\command\\execute', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ListTestFilesCommand.php' => - array ( - 0 => '71a3006cc74a9de49034d32544e8487e076ef48e', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\listtestfilescommand', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\__construct', - 1 => 'phpunit\\textui\\command\\execute', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Command/Commands/CheckPhpConfigurationCommand.php' => - array ( - 0 => '24bec527bbfa9850196aa6ab6dccc7efb9f29792', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\checkphpconfigurationcommand', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\__construct', - 1 => 'phpunit\\textui\\command\\execute', - 2 => 'phpunit\\textui\\command\\ok', - 3 => 'phpunit\\textui\\command\\notok', - 4 => 'phpunit\\textui\\command\\settings', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ListTestsAsTextCommand.php' => - array ( - 0 => '5297f0a37d398d953a2abe63c96cfe010c7e95f3', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\listtestsastextcommand', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\__construct', - 1 => 'phpunit\\textui\\command\\execute', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ListTestsAsXmlCommand.php' => - array ( - 0 => '895690b79450bcac25e4f319aecb0ff0a42660cd', - 1 => - array ( - 0 => 'phpunit\\textui\\command\\listtestsasxmlcommand', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\command\\__construct', - 1 => 'phpunit\\textui\\command\\execute', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Command/Commands/ListTestSuitesCommand.php' => - array ( - 0 => '844c28425cb6353a3475a44ff6fbb8b799b1da37', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/TestRunner.php' => - array ( - 0 => '476ebf03ebb894ccd2a0d6e519420d364ff3c7a4', - 1 => - array ( - 0 => 'phpunit\\textui\\testrunner', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\run', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Help.php' => - array ( - 0 => 'a19217ee558806b4ec5d3ccfb7858ce4f3455560', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/TestSuiteFilterProcessor.php' => - array ( - 0 => '8b732f086d66fa52bc284affbf7ff2cb44fb5364', - 1 => - array ( - 0 => 'phpunit\\textui\\testsuitefilterprocessor', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\process', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/Application.php' => - array ( - 0 => '5c352725cfd5c49169e9d5f674ad317c4a418e68', - 1 => - array ( - 0 => 'phpunit\\textui\\application', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\run', - 1 => 'phpunit\\textui\\execute', - 2 => 'phpunit\\textui\\buildcliconfiguration', - 3 => 'phpunit\\textui\\loadxmlconfiguration', - 4 => 'phpunit\\textui\\buildtestsuite', - 5 => 'phpunit\\textui\\bootstrapextensions', - 6 => 'phpunit\\textui\\executecommandsthatonlyrequirecliconfiguration', - 7 => 'phpunit\\textui\\executecommandsthatdonotrequirethetestsuite', - 8 => 'phpunit\\textui\\executecommandsthatrequirethetestsuite', - 9 => 'phpunit\\textui\\writeruntimeinformation', - 10 => 'phpunit\\textui\\writepharextensioninformation', - 11 => 'phpunit\\textui\\writemessage', - 12 => 'phpunit\\textui\\writerandomseedinformation', - 13 => 'phpunit\\textui\\registerlogfilewriters', - 14 => 'phpunit\\textui\\testdoxresultcollector', - 15 => 'phpunit\\textui\\initializetestresultcache', - 16 => 'phpunit\\textui\\configurebaseline', - 17 => 'phpunit\\textui\\exitwithcrashmessage', - 18 => 'phpunit\\textui\\exitwitherrormessage', - 19 => 'phpunit\\textui\\filteredtests', - 20 => 'phpunit\\textui\\configuredeprecationtriggers', - 21 => 'phpunit\\textui\\preload', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/TextUI/ShellExitCodeCalculator.php' => - array ( - 0 => '81738a47e5e69fae1bd9573fea809abc4e98e468', - 1 => - array ( - 0 => 'phpunit\\textui\\shellexitcodecalculator', - ), - 2 => - array ( - 0 => 'phpunit\\textui\\calculate', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/TestDox/TestResult/TestResultCollector.php' => - array ( - 0 => '5d943ba9bd1c5d787e45ce8f699ef5c413f7258c', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/TestDox/HtmlRenderer.php' => - array ( - 0 => '6bc3216937636dc37c12b3d5f63c4d184988052a', - 1 => - array ( - 0 => 'phpunit\\logging\\testdox\\htmlrenderer', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\testdox\\render', - 1 => 'phpunit\\logging\\testdox\\reduce', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/TestDox/NamePrettifier.php' => - array ( - 0 => '553a332883e09523d5cb606b6458efb71b17a584', - 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', - 6 => 'phpunit\\logging\\testdox\\processtestdox', - 7 => 'phpunit\\logging\\testdox\\processtestdoxformatter', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/EventLogger.php' => - array ( - 0 => 'a477039e7222c0fd0219d565777366a6e61db9af', - 1 => - array ( - 0 => 'phpunit\\logging\\eventlogger', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\__construct', - 1 => 'phpunit\\logging\\trace', - 2 => 'phpunit\\logging\\telemetryinfo', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/JUnit/JunitXmlLogger.php' => - array ( - 0 => 'c43f878cb60eaf43e44fa00c97e9e877688aadae', - 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\\testpreparationerrored', - 6 => 'phpunit\\logging\\junit\\testpreparationfailed', - 7 => 'phpunit\\logging\\junit\\testprepared', - 8 => 'phpunit\\logging\\junit\\testprintedunexpectedoutput', - 9 => 'phpunit\\logging\\junit\\testfinished', - 10 => 'phpunit\\logging\\junit\\testmarkedincomplete', - 11 => 'phpunit\\logging\\junit\\testskipped', - 12 => 'phpunit\\logging\\junit\\testerrored', - 13 => 'phpunit\\logging\\junit\\testfailed', - 14 => 'phpunit\\logging\\junit\\handlefinish', - 15 => 'phpunit\\logging\\junit\\registersubscribers', - 16 => 'phpunit\\logging\\junit\\createdocument', - 17 => 'phpunit\\logging\\junit\\handlefault', - 18 => 'phpunit\\logging\\junit\\handleincompleteorskipped', - 19 => 'phpunit\\logging\\junit\\testasstring', - 20 => 'phpunit\\logging\\junit\\name', - 21 => 'phpunit\\logging\\junit\\createtestcase', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/JUnit/Subscriber/TestPreparationErroredSubscriber.php' => - array ( - 0 => '2105dc7cf4eb4464be2057a80054ebb28eb4c48c', - 1 => - array ( - 0 => 'phpunit\\logging\\junit\\testpreparationerroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\junit\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/OtrXmlLogger.php' => - array ( - 0 => '1728cccae5e429bb3931de152c276ef99d085303', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\otrxmllogger', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\__construct', - 1 => 'phpunit\\logging\\opentestreporting\\testrunnerstarted', - 2 => 'phpunit\\logging\\opentestreporting\\testrunnerfinished', - 3 => 'phpunit\\logging\\opentestreporting\\testsuitestarted', - 4 => 'phpunit\\logging\\opentestreporting\\testsuiteskipped', - 5 => 'phpunit\\logging\\opentestreporting\\testsuitefinished', - 6 => 'phpunit\\logging\\opentestreporting\\testprepared', - 7 => 'phpunit\\logging\\opentestreporting\\testfinished', - 8 => 'phpunit\\logging\\opentestreporting\\testfailed', - 9 => 'phpunit\\logging\\opentestreporting\\testerrored', - 10 => 'phpunit\\logging\\opentestreporting\\testskipped', - 11 => 'phpunit\\logging\\opentestreporting\\marktestincomplete', - 12 => 'phpunit\\logging\\opentestreporting\\parenterrored', - 13 => 'phpunit\\logging\\opentestreporting\\parentfailed', - 14 => 'phpunit\\logging\\opentestreporting\\registersubscribers', - 15 => 'phpunit\\logging\\opentestreporting\\writeteststarted', - 16 => 'phpunit\\logging\\opentestreporting\\writethrowable', - 17 => 'phpunit\\logging\\opentestreporting\\timestamp', - 18 => 'phpunit\\logging\\opentestreporting\\nextid', - 19 => 'phpunit\\logging\\opentestreporting\\reducetestsuitelevel', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Exception/Exception.php' => - array ( - 0 => 'beaa76002e1b69029c84756f59931010d9d78386', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Exception/CannotOpenUriForWritingException.php' => - array ( - 0 => '1d9e8dc31545210fb6c2b34ecc7f086d1e757563', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\cannotopenuriforwritingexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Status.php' => - array ( - 0 => '914727ecf9ab8fdf3312657eebccb8d4c4d9a2ef', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\status', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Subscriber/TestRunnerStartedSubscriber.php' => - array ( - 0 => '7548bd7232d09365072d53c7afd81ae3ca3f5ce4', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\testrunnerstartedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Subscriber/TestSkippedSubscriber.php' => - array ( - 0 => 'bc3ec13a2fe71367b6b16ee8670bfec4c5ace23a', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\testskippedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Subscriber/BeforeFirstTestMethodErroredSubscriber.php' => - array ( - 0 => 'afd2218ba06804475c3d1d3bf6d2a73335f10b9c', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\beforefirsttestmethoderroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Subscriber/TestFinishedSubscriber.php' => - array ( - 0 => '1ac18c41e99175f9c9825fe3d2a1063563b62dbb', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\testfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Subscriber/TestSuiteFinishedSubscriber.php' => - array ( - 0 => '434d629430cda01f7be9ddc0e2ef4c675619ddd4', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\testsuitefinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Subscriber/TestAbortedSubscriber.php' => - array ( - 0 => 'bba783cadfa77d435fa9da54224d9e66d0c5afd5', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\testabortedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Subscriber/TestSuiteStartedSubscriber.php' => - array ( - 0 => '4ebeaf5309fb393689b626225bf78a5fd4c5e189', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\testsuitestartedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Subscriber/TestPreparationErroredSubscriber.php' => - array ( - 0 => 'fef86ceb2d173c940d0af8c053a7a80d4a509e4c', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\testpreparationerroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Subscriber/TestPreparedSubscriber.php' => - array ( - 0 => '7622c8295189c6acd4c3973d7db81a0255b007f9', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\testpreparedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Subscriber/AfterLastTestMethodFailedSubscriber.php' => - array ( - 0 => '659b279d5f5cab832915fe311337015b76836db9', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\afterlasttestmethodfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Subscriber/AfterLastTestMethodErroredSubscriber.php' => - array ( - 0 => 'ef952360aa0fd14b0e207c98eb35e7378c0436e8', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\afterlasttestmethoderroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Subscriber/TestPreparationFailedSubscriber.php' => - array ( - 0 => 'ab7570100c8fef03d7a19394d983e561ccac00f0', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\testpreparationfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Subscriber/BeforeFirstTestMethodFailedSubscriber.php' => - array ( - 0 => '4b5f4f1a3ffb8ad283f7db465e3e85bbbebd3da2', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\beforefirsttestmethodfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Subscriber/TestSuiteSkippedSubscriber.php' => - array ( - 0 => 'a54a75a7e2ae05600c44f9cfc8e059faa9474a46', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\testsuiteskippedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Subscriber/Subscriber.php' => - array ( - 0 => '1f7ef85ce0c3fb555db70662b85da2e5c817b989', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\subscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\__construct', - 1 => 'phpunit\\logging\\opentestreporting\\logger', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Subscriber/TestRunnerFinishedSubscriber.php' => - array ( - 0 => 'b4584e44af2bd3e1c5b14f7a709409dbc71581ca', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\testrunnerfinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Subscriber/TestErroredSubscriber.php' => - array ( - 0 => 'fe5dba3e16ff262c5ec14bd6dd2a6df8a9d0db55', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\testerroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/Subscriber/TestFailedSubscriber.php' => - array ( - 0 => '09ae59f0464dcc9d775b30d259340c5be765696a', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\testfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/OpenTestReporting/InfrastructureInformationProvider.php' => - array ( - 0 => 'fbe09c9299ae8bb16e7d5df598eeb33b79dd059a', - 1 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\infrastructureinformationprovider', - ), - 2 => - array ( - 0 => 'phpunit\\logging\\opentestreporting\\operatingsystem', - 1 => 'phpunit\\logging\\opentestreporting\\hostname', - 2 => 'phpunit\\logging\\opentestreporting\\username', - 3 => 'phpunit\\logging\\opentestreporting\\gitinformation', - 4 => 'phpunit\\logging\\opentestreporting\\executegitcommand', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Logging/TeamCity/TeamCityLogger.php' => - array ( - 0 => '61543e9d6fd82f062ba452cbbed65c64b9c6bc15', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Exception.php' => - array ( - 0 => '2caf2b373d3499585ba222014d2e92c09b78412d', - 1 => - array ( - 0 => 'phpunit\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Exception/UnknownEventException.php' => - array ( - 0 => '59fa5ec8542a3fda5d1b7ed2eda5e76b175b900a', - 1 => - array ( - 0 => 'phpunit\\event\\unknowneventexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Exception/InvalidEventException.php' => - array ( - 0 => '48a46996b2aca4e1424a3e7cc37f265fccb0eeb7', - 1 => - array ( - 0 => 'phpunit\\event\\invalideventexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Exception/InvalidSubscriberException.php' => - array ( - 0 => '4cb3fb9391929d6477d59bd68b0e7e65d6ae7496', - 1 => - array ( - 0 => 'phpunit\\event\\invalidsubscriberexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Exception/NoComparisonFailureException.php' => - array ( - 0 => '34134db3b3e58cfa04fcdad52702402dd111ba14', - 1 => - array ( - 0 => 'phpunit\\event\\test\\nocomparisonfailureexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Exception/EventFacadeIsSealedException.php' => - array ( - 0 => 'b7e05797eeffddb5d00170510c015935f6e9bafe', - 1 => - array ( - 0 => 'phpunit\\event\\eventfacadeissealedexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Exception/Exception.php' => - array ( - 0 => '4440f1c270e5b6011c23e6361e2c3b92c15f8fbd', - 1 => - array ( - 0 => 'phpunit\\event\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Exception/UnknownSubscriberException.php' => - array ( - 0 => 'f007419a99a9bc9383ec72d898b86b92666b1956', - 1 => - array ( - 0 => 'phpunit\\event\\unknownsubscriberexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Exception/RuntimeException.php' => - array ( - 0 => 'f4f962615eeab9ba85d908f41a700306e5e697fa', - 1 => - array ( - 0 => 'phpunit\\event\\runtimeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Exception/InvalidArgumentException.php' => - array ( - 0 => '02967b342c1f626c9120a8e4bfc335d1192467e6', - 1 => - array ( - 0 => 'phpunit\\event\\invalidargumentexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Exception/NoPreviousThrowableException.php' => - array ( - 0 => '88a8caffc9113463080cd1b26971aff29ccf4f9c', - 1 => - array ( - 0 => 'phpunit\\event\\nopreviousthrowableexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Exception/UnknownEventTypeException.php' => - array ( - 0 => '744c2352e323169a22038a724ea2a29f6a39897a', - 1 => - array ( - 0 => 'phpunit\\event\\unknowneventtypeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Exception/NoDataSetFromDataProviderException.php' => - array ( - 0 => '11025e8837e709e9d6d8952abeb056861dea21cb', - 1 => - array ( - 0 => 'phpunit\\event\\testdata\\nodatasetfromdataproviderexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Exception/UnknownSubscriberTypeException.php' => - array ( - 0 => '9e9f6d0e00ec7970d7fbfbdd498af748718d5494', - 1 => - array ( - 0 => 'phpunit\\event\\unknownsubscribertypeexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Exception/MapError.php' => - array ( - 0 => '803cfd67a59a90b90e26a89b933d8c189614e7cd', - 1 => - array ( - 0 => 'phpunit\\event\\maperror', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Exception/SubscriberTypeAlreadyRegisteredException.php' => - array ( - 0 => 'ec0690787b168bfcdb18a148a6b9c9ca6914b6e9', - 1 => - array ( - 0 => 'phpunit\\event\\subscribertypealreadyregisteredexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Exception/EventAlreadyAssignedException.php' => - array ( - 0 => '82721698929ece20f7a498a5c94f124fa70b815b', - 1 => - array ( - 0 => 'phpunit\\event\\eventalreadyassignedexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Value/ComparisonFailureBuilder.php' => - array ( - 0 => '11e0e146ea7fc1ea4d863c06c12a898d08b0585e', - 1 => - array ( - 0 => 'phpunit\\event\\code\\comparisonfailurebuilder', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\from', - 1 => 'phpunit\\event\\code\\mapscalarvaluetostring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Value/Throwable.php' => - array ( - 0 => 'fa050ff0c1b18de32e791755a14e3b88ffb0f9d6', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Value/Telemetry/Info.php' => - array ( - 0 => 'e19086d11d97c1a8ad666e1ee81b456127d2d49f', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Value/Telemetry/SystemGarbageCollectorStatusProvider.php' => - array ( - 0 => 'c9299c35b4761b6a31dce11a0cdbe32b2a9f9f68', - 1 => - array ( - 0 => 'phpunit\\event\\telemetry\\systemgarbagecollectorstatusprovider', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetry\\status', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Value/Telemetry/SystemMemoryMeter.php' => - array ( - 0 => 'f6a2d240c47f08c9606b443c6e3b72ff0a027247', - 1 => - array ( - 0 => 'phpunit\\event\\telemetry\\systemmemorymeter', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetry\\memoryusage', - 1 => 'phpunit\\event\\telemetry\\peakmemoryusage', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Value/Telemetry/GarbageCollectorStatus.php' => - array ( - 0 => '638a43de1f7ed8527a33ef628bc70051c4730d9d', - 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\\applicationtime', - 6 => 'phpunit\\event\\telemetry\\collectortime', - 7 => 'phpunit\\event\\telemetry\\destructortime', - 8 => 'phpunit\\event\\telemetry\\freetime', - 9 => 'phpunit\\event\\telemetry\\isrunning', - 10 => 'phpunit\\event\\telemetry\\isprotected', - 11 => 'phpunit\\event\\telemetry\\isfull', - 12 => 'phpunit\\event\\telemetry\\buffersize', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Value/TestSuite/TestSuiteBuilder.php' => - array ( - 0 => 'afac559cc3042406ce2c4807035911d97a044387', - 1 => - array ( - 0 => 'phpunit\\event\\testsuite\\testsuitebuilder', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testsuite\\from', - 1 => 'phpunit\\event\\testsuite\\process', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Value/Test/TestMethodBuilder.php' => - array ( - 0 => '49caf0e2acaf339d87be45047669caac4bcb9d7b', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Value/Test/TestDoxBuilder.php' => - array ( - 0 => '37c9ad507567f893db89b162ce444696e49b3d2b', - 1 => - array ( - 0 => 'phpunit\\event\\code\\testdoxbuilder', - ), - 2 => - array ( - 0 => 'phpunit\\event\\code\\fromtestcase', - 1 => 'phpunit\\event\\code\\fromclassnameandmethodname', - 2 => 'phpunit\\event\\code\\nameprettifier', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Facade.php' => - array ( - 0 => '1b6f73d2073f679ec9ad56fa9a31504140ed6079', - 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', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestSuite/Started.php' => - array ( - 0 => '24421ad75da38a49c99185af9817a64f06738685', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestSuite/Loaded.php' => - array ( - 0 => '83751daf6b9a0476af59b7e7e2ae3116f73fce3f', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestSuite/Filtered.php' => - array ( - 0 => 'decab0637d7663088ff0e8c1d9100f8b592d3e60', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestSuite/Finished.php' => - array ( - 0 => '015f9342f7fdd89ba702fda3d361947cf7da294a', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestSuite/Skipped.php' => - array ( - 0 => '35c4efec1e78688713ecd44fd122786242fc087b', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestSuite/Sorted.php' => - array ( - 0 => '11d81d4de84ad56e35cb52f8b815b4cbff6b7883', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodCalled.php' => - array ( - 0 => 'd2095669dd216bdb124f28bdabada18b9d3d50f9', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforetestmethodcalled', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\testclassname', - 4 => 'phpunit\\event\\test\\calledmethod', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodFailed.php' => - array ( - 0 => '57338833473fb4da96a8d07ce01a4222dc492456', - 1 => - array ( - 0 => 'phpunit\\event\\test\\aftertestmethodfailed', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\calledmethod', - 4 => 'phpunit\\event\\test\\throwable', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodFailed.php' => - array ( - 0 => '245c17dbed8ed38b3922eb11eabd5be01ece2f02', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforefirsttestmethodfailed', - ), - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionFailed.php' => - array ( - 0 => 'f2332c626254d36b84ec7e616eb501dd9b0f63e9', - 1 => - array ( - 0 => 'phpunit\\event\\test\\preconditionfailed', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\calledmethod', - 4 => 'phpunit\\event\\test\\throwable', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodFinished.php' => - array ( - 0 => 'f50a9d9cf5865206fd861cdaaee82ec61db347a6', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionFinished.php' => - array ( - 0 => '54112ef2e8d80b6a0181e0b81e794c28e556bfa4', - 1 => - array ( - 0 => 'phpunit\\event\\test\\postconditionfinished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\testclassname', - 4 => 'phpunit\\event\\test\\calledmethods', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionCalled.php' => - array ( - 0 => '8f0274729b0c7de26b6dd20954b785272d9bf178', - 1 => - array ( - 0 => 'phpunit\\event\\test\\postconditioncalled', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\testclassname', - 4 => 'phpunit\\event\\test\\calledmethod', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodFinished.php' => - array ( - 0 => 'ca24d6f66c41dce5b5b858d1500436dbd9ad6753', - 1 => - array ( - 0 => 'phpunit\\event\\test\\aftertestmethodfinished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\testclassname', - 4 => 'phpunit\\event\\test\\calledmethods', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodCalled.php' => - array ( - 0 => '070dfa0cef0810084cca28a2ba491e00e1906147', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodFailed.php' => - array ( - 0 => '0bc745de30b9a487fc3abc53b7aede81021b410d', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforetestmethodfailed', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\calledmethod', - 4 => 'phpunit\\event\\test\\throwable', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodErrored.php' => - array ( - 0 => '0849989827cdfb12e9aa68b2ebdd31929fa0a284', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodFinished.php' => - array ( - 0 => 'de37c3b806d0d8a642b4a9e3bc802f70d6a01fc5', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionErrored.php' => - array ( - 0 => '1157cb33361f1b7a11365f195c41d30b42f939a1', - 1 => - array ( - 0 => 'phpunit\\event\\test\\postconditionerrored', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\testclassname', - 4 => 'phpunit\\event\\test\\calledmethod', - 5 => 'phpunit\\event\\test\\throwable', - 6 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionErrored.php' => - array ( - 0 => '72dcd9a28551be5578e77de358b2722eb7525c98', - 1 => - array ( - 0 => 'phpunit\\event\\test\\preconditionerrored', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\testclassname', - 4 => 'phpunit\\event\\test\\calledmethod', - 5 => 'phpunit\\event\\test\\throwable', - 6 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodFailedSubscriber.php' => - array ( - 0 => '3561ae968a511d42851078343ae513af1852beac', - 1 => - array ( - 0 => 'phpunit\\event\\test\\aftertestmethodfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionFailedSubscriber.php' => - array ( - 0 => 'ce30888efbb3f3f956f2332ce8ee74ecc0d569c7', - 1 => - array ( - 0 => 'phpunit\\event\\test\\preconditionfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodCalled.php' => - array ( - 0 => '442266975ef5fea02fc6d2d4a52cb0dd58bf2e43', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodErrored.php' => - array ( - 0 => '14501858acf25e94e7b0100a38815a573c9c835e', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionFailed.php' => - array ( - 0 => 'f1181bf299bf5658f39dcd1e118eb78e1cfe318f', - 1 => - array ( - 0 => 'phpunit\\event\\test\\postconditionfailed', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\calledmethod', - 4 => 'phpunit\\event\\test\\throwable', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodFailedSubscriber.php' => - array ( - 0 => '18e13823a5ba20e680016b68ff473cf2c59e6f82', - 1 => - array ( - 0 => 'phpunit\\event\\test\\afterlasttestmethodfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterLastTestMethodFailed.php' => - array ( - 0 => '19fe1b3ce3d299df20a5f7c0693d3486f0b3114d', - 1 => - array ( - 0 => 'phpunit\\event\\test\\afterlasttestmethodfailed', - ), - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PostConditionFailedSubscriber.php' => - array ( - 0 => '1e1819cc788e3f0914db3b1556b1c723011641a7', - 1 => - array ( - 0 => 'phpunit\\event\\test\\postconditionfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodFinished.php' => - array ( - 0 => '6eed748cc003ecbec60a68f6d89aae6ac0a698a1', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforetestmethodfinished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\testclassname', - 4 => 'phpunit\\event\\test\\calledmethods', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeFirstTestMethodFailedSubscriber.php' => - array ( - 0 => '894f6496c4df6087280674a8c393eb4a35e30ccd', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforefirsttestmethodfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodErrored.php' => - array ( - 0 => '6d74406103186d4ce8c3ee7697e48414dfd1ccdb', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforetestmethoderrored', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\testclassname', - 4 => 'phpunit\\event\\test\\calledmethod', - 5 => 'phpunit\\event\\test\\throwable', - 6 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodErrored.php' => - array ( - 0 => 'fdc270e664a69385782e4e6e53b0d8df43b853b2', - 1 => - array ( - 0 => 'phpunit\\event\\test\\aftertestmethoderrored', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\testclassname', - 4 => 'phpunit\\event\\test\\calledmethod', - 5 => 'phpunit\\event\\test\\throwable', - 6 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionFinished.php' => - array ( - 0 => 'd8301020c5adaf1524ba123f26b2f2bf3df6e046', - 1 => - array ( - 0 => 'phpunit\\event\\test\\preconditionfinished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\testclassname', - 4 => 'phpunit\\event\\test\\calledmethods', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/PreConditionCalled.php' => - array ( - 0 => '513f73332f650297fe7eaf613648dd0dd6972fa6', - 1 => - array ( - 0 => 'phpunit\\event\\test\\preconditioncalled', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\testclassname', - 4 => 'phpunit\\event\\test\\calledmethod', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/AfterTestMethodCalled.php' => - array ( - 0 => 'e3aae4054edbe074e73c6c569b50a69740ea982a', - 1 => - array ( - 0 => 'phpunit\\event\\test\\aftertestmethodcalled', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\testclassname', - 4 => 'phpunit\\event\\test\\calledmethod', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/HookMethod/BeforeTestMethodFailedSubscriber.php' => - array ( - 0 => 'ad1859993f603b2db4267075b48af3403ca63ff5', - 1 => - array ( - 0 => 'phpunit\\event\\test\\beforetestmethodfailedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/Failed.php' => - array ( - 0 => 'a725291a2477b40938900e454631165e951bbf24', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/MarkedIncomplete.php' => - array ( - 0 => 'f0e4b06ab620fc10b769e1766c47ef50d6b324e9', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/Passed.php' => - array ( - 0 => '892f473d31cd2c09e478a54d93a1e31de3877ab7', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/Skipped.php' => - array ( - 0 => '252707f7a37d39ed8893bcc3e044212bdd92ce9b', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Outcome/Errored.php' => - array ( - 0 => 'af4582ec936ff4fdd5cbcbb17abe85f417c06664', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpWarningTriggered.php' => - array ( - 0 => 'a86a0e5f4949d6cd2541c39c72ae4c566aedfe2b', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/ConsideredRisky.php' => - array ( - 0 => '4c647a27e4dd306c10b7ce5f607e66ab25f8803c', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitNoticeTriggered.php' => - array ( - 0 => 'b1e6231c36067eb69b304782f85666ce23d0298a', - 1 => - array ( - 0 => 'phpunit\\event\\test\\phpunitnoticetriggered', - ), - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitWarningTriggered.php' => - array ( - 0 => '87b8c6ed2d6e8a0439db525227c51655d665240c', - 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\\ignoredbytest', - 5 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitDeprecationTriggered.php' => - array ( - 0 => '79cd0216d92a0c5f6864714b2b46ed34d330cbdd', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/NoticeTriggered.php' => - array ( - 0 => 'b69f71ec01e8afdae87cb1058c861ef5b922cb10', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/ErrorTriggered.php' => - array ( - 0 => 'd5544a15a6c57f11174eb8d316effdcbc48c08b3', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpDeprecationTriggered.php' => - array ( - 0 => '05f4b4a6d7073f2a60fb70db0848f5960e83d400', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitErrorTriggered.php' => - array ( - 0 => '1bd051513ea005779f676a4980aa7b223f674909', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/WarningTriggered.php' => - array ( - 0 => 'e9c6db076aafc22e3f5c9589b3b2d89bc3788bd5', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/DeprecationTriggered.php' => - array ( - 0 => 'c2dd6f1f8efa561e93e324202801a39bcd381693', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpNoticeTriggered.php' => - array ( - 0 => 'bcfcd460f8953b689d4a1357eecfd55fbfa2e80f', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Issue/PhpunitNoticeTriggeredSubscriber.php' => - array ( - 0 => '4a9328eab161aae299542c0bcb6684e8475d759e', - 1 => - array ( - 0 => 'phpunit\\event\\test\\phpunitnoticetriggeredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectForIntersectionOfInterfacesCreated.php' => - array ( - 0 => 'c53f15960e0a3702bfdbf5a3f47a38a9c91d15fa', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/PartialMockObjectCreated.php' => - array ( - 0 => '88f268917d35b2fafb955d38eed4422d5a01c2a2', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/TestStubCreated.php' => - array ( - 0 => '0f14acf7cfa5dcd45a94fbc82d316e0b0665a0ae', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/MockObjectCreated.php' => - array ( - 0 => '615a560307d8635694865e06a2fe492c5d5bf14c', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/TestDouble/TestStubForIntersectionOfInterfacesCreated.php' => - array ( - 0 => '9ea31b6774d57845905ef3a3056a886ba4178f63', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/ComparatorRegistered.php' => - array ( - 0 => '6cd1279c7a9e34924d022c0238a49102c804483b', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/AdditionalInformationProvidedSubscriber.php' => - array ( - 0 => '95ba449e1755c21d70e27622cd44a1badc90d7d3', - 1 => - array ( - 0 => 'phpunit\\event\\test\\additionalinformationprovidedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/PrintedUnexpectedOutput.php' => - array ( - 0 => 'b045225062138efd669f8744a7c3fb334f3951c2', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparationErroredSubscriber.php' => - array ( - 0 => 'c6542827bbe51987a0c8a105faea3dcb74f09831', - 1 => - array ( - 0 => 'phpunit\\event\\test\\preparationerroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparationFailed.php' => - array ( - 0 => 'f1706de585f34a37308826d6d46d4d12d59a13ea', - 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\\throwable', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/Prepared.php' => - array ( - 0 => '2b4ee782cf54645de10cac7aff8f90fb0635b15a', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/DataProviderMethodFinished.php' => - array ( - 0 => 'cfb971b2e99696ce209863ef7b2c63eba009e00b', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/DataProviderMethodCalled.php' => - array ( - 0 => 'a6b6397572c0410ac3f9bb1d2b742ef207d7f710', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/Finished.php' => - array ( - 0 => 'b509a5dc0f0990b0f1cf46c21c3e9371cfa15a37', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparationErrored.php' => - array ( - 0 => 'e86576ef70a2170fe880329d5875420eb23614cb', - 1 => - array ( - 0 => 'phpunit\\event\\test\\preparationerrored', - ), - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/Lifecycle/PreparationStarted.php' => - array ( - 0 => 'd08eb27a5ebdec6450298abd1270daecfe3c6f18', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Test/AdditionalInformationProvided.php' => - array ( - 0 => 'bd0eacd75a52712d4921227e29a4669a9be542d7', - 1 => - array ( - 0 => 'phpunit\\event\\test\\additionalinformationprovided', - ), - 2 => - array ( - 0 => 'phpunit\\event\\test\\__construct', - 1 => 'phpunit\\event\\test\\telemetryinfo', - 2 => 'phpunit\\event\\test\\test', - 3 => 'phpunit\\event\\test\\additionalinformation', - 4 => 'phpunit\\event\\test\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/StaticAnalysisForCodeCoverageFinishedSubscriber.php' => - array ( - 0 => '00a69c75f25e54799ce0ac2e7da23033e8f6c658', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\staticanalysisforcodecoveragefinishedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/Started.php' => - array ( - 0 => 'fa068e26e22372f502fedaeaf8610a907c5799ae', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExecutionAborted.php' => - array ( - 0 => 'd638f27ea62c9ec4499f855632bddb7a4165dce7', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/Finished.php' => - array ( - 0 => 'fae3799e99d8a3ce1fd4bb137098f8d0cc4611a4', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExtensionLoadedFromPhar.php' => - array ( - 0 => 'c2f89fca409d7f83fcaffd8d4498162d6016515b', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExecutionStarted.php' => - array ( - 0 => 'a1206d9d682e381800eef92d89335d2a83f8e255', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ChildProcessStarted.php' => - array ( - 0 => 'c286413a820d22293b231715d1c029acd2aac35f', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ChildProcessErrored.php' => - array ( - 0 => '56e6183d722fecb8ef7605145763fcd6a5d75f4e', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\childprocesserrored', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/StaticAnalysisForCodeCoverageFinished.php' => - array ( - 0 => '3525f3930c1dd902f76a80db282954465b360123', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\staticanalysisforcodecoveragefinished', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\cachehits', - 3 => 'phpunit\\event\\testrunner\\cachemisses', - 4 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/StaticAnalysisForCodeCoverageStarted.php' => - array ( - 0 => '85056930e8bcf053a185dd4b4b6791894cb4783d', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\staticanalysisforcodecoveragestarted', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/NoticeTriggered.php' => - array ( - 0 => 'f99a25b3a116b5c3d8fa9a3bb76ffe9cee0dce16', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\noticetriggered', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\__construct', - 1 => 'phpunit\\event\\testrunner\\telemetryinfo', - 2 => 'phpunit\\event\\testrunner\\message', - 3 => 'phpunit\\event\\testrunner\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExtensionBootstrapped.php' => - array ( - 0 => '32f4669482745821635adb5a86806a789cfdf047', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/GarbageCollectionEnabled.php' => - array ( - 0 => 'cc42fa221de9a728bd421930d30dc9a02b4373e1', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ExecutionFinished.php' => - array ( - 0 => '36c6470c7d090b2313e35698fac647cbbef16c7a', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/GarbageCollectionDisabled.php' => - array ( - 0 => 'f3533d799b1b50475562b12db3d7b855cc2de4e6', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/WarningTriggered.php' => - array ( - 0 => 'd05e5001ac07cfd0df87f2076c22da8cb5e3dfff', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/BootstrapFinished.php' => - array ( - 0 => '229193daf16df718542b990f14e172d6e465ca03', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/NoticeTriggeredSubscriber.php' => - array ( - 0 => '5ddfaa7e58355b693d0d6e1569637ad14a5c4ee5', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\noticetriggeredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/StaticAnalysisForCodeCoverageStartedSubscriber.php' => - array ( - 0 => 'e8d225a13b7e97c95680ccf4c10029ac15ff589c', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\staticanalysisforcodecoveragestartedsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/DeprecationTriggered.php' => - array ( - 0 => '294d49849ad83bd13e398c054146813418dee4eb', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/GarbageCollectionTriggered.php' => - array ( - 0 => 'f83b97360138ebec9e6ac75596acfec1b377763d', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ChildProcessErroredSubscriber.php' => - array ( - 0 => 'f6e316ace9b59ca8b65bfabd873799a7996f624d', - 1 => - array ( - 0 => 'phpunit\\event\\testrunner\\childprocesserroredsubscriber', - ), - 2 => - array ( - 0 => 'phpunit\\event\\testrunner\\notify', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/Configured.php' => - array ( - 0 => '59a78baea8e8324df37c6516c4d1e9f9ecdfce80', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/EventFacadeSealed.php' => - array ( - 0 => 'a443a3cfa3c5482711ec4a83046d3f2f6ba7247b', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/TestRunner/ChildProcessFinished.php' => - array ( - 0 => 'ae074b9b226b971858a829e1afdcd285f70dbd71', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Event.php' => - array ( - 0 => '0bc9eda5ff4faed6e4f917ce5aed44d2c6a45ef4', - 1 => - array ( - 0 => 'phpunit\\event\\event', - ), - 2 => - array ( - 0 => 'phpunit\\event\\telemetryinfo', - 1 => 'phpunit\\event\\asstring', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Application/Started.php' => - array ( - 0 => '4181ba7eba9251a74be1e9a6f20289434f0081f3', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Events/Application/Finished.php' => - array ( - 0 => 'a67a38e408e9592448716bf644ee8896785e1015', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Dispatcher/CollectingDispatcher.php' => - array ( - 0 => '804a536d95cf27e356f8c75235ee80283ba41939', - 1 => - array ( - 0 => 'phpunit\\event\\collectingdispatcher', - ), - 2 => - array ( - 0 => 'phpunit\\event\\__construct', - 1 => 'phpunit\\event\\dispatch', - 2 => 'phpunit\\event\\flush', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Dispatcher/DirectDispatcher.php' => - array ( - 0 => '9044f59d59be5429cd1d6948836125cd44f35c66', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Subscriber.php' => - array ( - 0 => '3755a0e75b5f94b3d6d93e7f122b4a63087305a6', - 1 => - array ( - 0 => 'phpunit\\event\\subscriber', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Emitter/DispatchingEmitter.php' => - array ( - 0 => 'cddd1f225778b74016c5a0a7e4a5b050e46543cc', - 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\\childprocessstarted', - 17 => 'phpunit\\event\\childprocesserrored', - 18 => 'phpunit\\event\\childprocessfinished', - 19 => 'phpunit\\event\\testsuiteskipped', - 20 => 'phpunit\\event\\testsuitestarted', - 21 => 'phpunit\\event\\testpreparationstarted', - 22 => 'phpunit\\event\\testpreparationerrored', - 23 => 'phpunit\\event\\testpreparationfailed', - 24 => 'phpunit\\event\\beforefirsttestmethodcalled', - 25 => 'phpunit\\event\\beforefirsttestmethoderrored', - 26 => 'phpunit\\event\\beforefirsttestmethodfailed', - 27 => 'phpunit\\event\\beforefirsttestmethodfinished', - 28 => 'phpunit\\event\\beforetestmethodcalled', - 29 => 'phpunit\\event\\beforetestmethoderrored', - 30 => 'phpunit\\event\\beforetestmethodfailed', - 31 => 'phpunit\\event\\beforetestmethodfinished', - 32 => 'phpunit\\event\\preconditioncalled', - 33 => 'phpunit\\event\\preconditionerrored', - 34 => 'phpunit\\event\\preconditionfailed', - 35 => 'phpunit\\event\\preconditionfinished', - 36 => 'phpunit\\event\\testprepared', - 37 => 'phpunit\\event\\testregisteredcomparator', - 38 => 'phpunit\\event\\testcreatedmockobject', - 39 => 'phpunit\\event\\testcreatedmockobjectforintersectionofinterfaces', - 40 => 'phpunit\\event\\testcreatedpartialmockobject', - 41 => 'phpunit\\event\\testcreatedstub', - 42 => 'phpunit\\event\\testcreatedstubforintersectionofinterfaces', - 43 => 'phpunit\\event\\testerrored', - 44 => 'phpunit\\event\\testfailed', - 45 => 'phpunit\\event\\testpassed', - 46 => 'phpunit\\event\\testconsideredrisky', - 47 => 'phpunit\\event\\testmarkedasincomplete', - 48 => 'phpunit\\event\\testskipped', - 49 => 'phpunit\\event\\testtriggeredphpunitdeprecation', - 50 => 'phpunit\\event\\testtriggeredphpunitnotice', - 51 => 'phpunit\\event\\testtriggeredphpdeprecation', - 52 => 'phpunit\\event\\testtriggereddeprecation', - 53 => 'phpunit\\event\\testtriggerederror', - 54 => 'phpunit\\event\\testtriggerednotice', - 55 => 'phpunit\\event\\testtriggeredphpnotice', - 56 => 'phpunit\\event\\testtriggeredwarning', - 57 => 'phpunit\\event\\testtriggeredphpwarning', - 58 => 'phpunit\\event\\testtriggeredphpuniterror', - 59 => 'phpunit\\event\\testtriggeredphpunitwarning', - 60 => 'phpunit\\event\\testprintedunexpectedoutput', - 61 => 'phpunit\\event\\testprovidedadditionalinformation', - 62 => 'phpunit\\event\\testfinished', - 63 => 'phpunit\\event\\postconditioncalled', - 64 => 'phpunit\\event\\postconditionerrored', - 65 => 'phpunit\\event\\postconditionfailed', - 66 => 'phpunit\\event\\postconditionfinished', - 67 => 'phpunit\\event\\aftertestmethodcalled', - 68 => 'phpunit\\event\\aftertestmethoderrored', - 69 => 'phpunit\\event\\aftertestmethodfailed', - 70 => 'phpunit\\event\\aftertestmethodfinished', - 71 => 'phpunit\\event\\afterlasttestmethodcalled', - 72 => 'phpunit\\event\\afterlasttestmethoderrored', - 73 => 'phpunit\\event\\afterlasttestmethodfailed', - 74 => 'phpunit\\event\\afterlasttestmethodfinished', - 75 => 'phpunit\\event\\testsuitefinished', - 76 => 'phpunit\\event\\testrunnerstartedstaticanalysisforcodecoverage', - 77 => 'phpunit\\event\\testrunnerfinishedstaticanalysisforcodecoverage', - 78 => 'phpunit\\event\\testrunnertriggeredphpunitdeprecation', - 79 => 'phpunit\\event\\testrunnertriggeredphpunitnotice', - 80 => 'phpunit\\event\\testrunnertriggeredphpunitwarning', - 81 => 'phpunit\\event\\testrunnerenabledgarbagecollection', - 82 => 'phpunit\\event\\testrunnerexecutionaborted', - 83 => 'phpunit\\event\\testrunnerexecutionfinished', - 84 => 'phpunit\\event\\testrunnerfinished', - 85 => 'phpunit\\event\\applicationfinished', - 86 => 'phpunit\\event\\telemetryinfo', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Event/Emitter/Emitter.php' => - array ( - 0 => 'f8b9440005d3d498efe10ece3c315836e29f83b5', - 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\\testpreparationerrored', - 19 => 'phpunit\\event\\testpreparationfailed', - 20 => 'phpunit\\event\\beforefirsttestmethodcalled', - 21 => 'phpunit\\event\\beforefirsttestmethoderrored', - 22 => 'phpunit\\event\\beforefirsttestmethodfailed', - 23 => 'phpunit\\event\\beforefirsttestmethodfinished', - 24 => 'phpunit\\event\\beforetestmethodcalled', - 25 => 'phpunit\\event\\beforetestmethoderrored', - 26 => 'phpunit\\event\\beforetestmethodfailed', - 27 => 'phpunit\\event\\beforetestmethodfinished', - 28 => 'phpunit\\event\\preconditioncalled', - 29 => 'phpunit\\event\\preconditionerrored', - 30 => 'phpunit\\event\\preconditionfailed', - 31 => 'phpunit\\event\\preconditionfinished', - 32 => 'phpunit\\event\\testprepared', - 33 => 'phpunit\\event\\testregisteredcomparator', - 34 => 'phpunit\\event\\testcreatedmockobject', - 35 => 'phpunit\\event\\testcreatedmockobjectforintersectionofinterfaces', - 36 => 'phpunit\\event\\testcreatedpartialmockobject', - 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\\testtriggeredphpunitnotice', - 47 => 'phpunit\\event\\testtriggeredphpdeprecation', - 48 => 'phpunit\\event\\testtriggereddeprecation', - 49 => 'phpunit\\event\\testtriggerederror', - 50 => 'phpunit\\event\\testtriggerednotice', - 51 => 'phpunit\\event\\testtriggeredphpnotice', - 52 => 'phpunit\\event\\testtriggeredwarning', - 53 => 'phpunit\\event\\testtriggeredphpwarning', - 54 => 'phpunit\\event\\testtriggeredphpuniterror', - 55 => 'phpunit\\event\\testtriggeredphpunitwarning', - 56 => 'phpunit\\event\\testprintedunexpectedoutput', - 57 => 'phpunit\\event\\testprovidedadditionalinformation', - 58 => 'phpunit\\event\\testfinished', - 59 => 'phpunit\\event\\postconditioncalled', - 60 => 'phpunit\\event\\postconditionerrored', - 61 => 'phpunit\\event\\postconditionfailed', - 62 => 'phpunit\\event\\postconditionfinished', - 63 => 'phpunit\\event\\aftertestmethodcalled', - 64 => 'phpunit\\event\\aftertestmethoderrored', - 65 => 'phpunit\\event\\aftertestmethodfailed', - 66 => 'phpunit\\event\\aftertestmethodfinished', - 67 => 'phpunit\\event\\afterlasttestmethodcalled', - 68 => 'phpunit\\event\\afterlasttestmethoderrored', - 69 => 'phpunit\\event\\afterlasttestmethodfailed', - 70 => 'phpunit\\event\\afterlasttestmethodfinished', - 71 => 'phpunit\\event\\testsuitefinished', - 72 => 'phpunit\\event\\childprocessstarted', - 73 => 'phpunit\\event\\childprocesserrored', - 74 => 'phpunit\\event\\childprocessfinished', - 75 => 'phpunit\\event\\testrunnerstartedstaticanalysisforcodecoverage', - 76 => 'phpunit\\event\\testrunnerfinishedstaticanalysisforcodecoverage', - 77 => 'phpunit\\event\\testrunnertriggeredphpunitdeprecation', - 78 => 'phpunit\\event\\testrunnertriggeredphpunitnotice', - 79 => 'phpunit\\event\\testrunnertriggeredphpunitwarning', - 80 => 'phpunit\\event\\testrunnerenabledgarbagecollection', - 81 => 'phpunit\\event\\testrunnerexecutionaborted', - 82 => 'phpunit\\event\\testrunnerexecutionfinished', - 83 => 'phpunit\\event\\testrunnerfinished', - 84 => 'phpunit\\event\\applicationfinished', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Util/Exception/Exception.php' => - array ( - 0 => 'd57f5a2eb2c1d9d24f96d21c4991ea6babe98a9c', - 1 => - array ( - 0 => 'phpunit\\util\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Util/Exception/XmlException.php' => - array ( - 0 => '9f86b83eba37dfe5d7f729415dd3f3fa2b077008', - 1 => - array ( - 0 => 'phpunit\\util\\xml\\xmlexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Util/Exception/PhpProcessException.php' => - array ( - 0 => '4cac0bc83e62efc1ece2169f0281853045504932', - 1 => - array ( - 0 => 'phpunit\\util\\php\\phpprocessexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Util/Exception/InvalidJsonException.php' => - array ( - 0 => '4eb6939c0ad62c0ac16f365a83d70fc5877ffa4e', - 1 => - array ( - 0 => 'phpunit\\util\\invalidjsonexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Util/ExcludeList.php' => - array ( - 0 => 'b0676baac70c671494192e358423f53a68bd2390', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Util/Color.php' => - array ( - 0 => '35675bdf048378ef296d582b43b2962b28286cd3', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Util/Json.php' => - array ( - 0 => '3f8473d491e2a9fcd5bf88382cae4269ccd69107', - 1 => - array ( - 0 => 'phpunit\\util\\json', - ), - 2 => - array ( - 0 => 'phpunit\\util\\prettify', - 1 => 'phpunit\\util\\canonicalize', - 2 => 'phpunit\\util\\recursivesort', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Util/Test.php' => - array ( - 0 => '0cee5c34885908e13865d3870f65a09e03be644a', - 1 => - array ( - 0 => 'phpunit\\util\\test', - ), - 2 => - array ( - 0 => 'phpunit\\util\\currenttestcase', - 1 => 'phpunit\\util\\istestmethod', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Util/ThrowableToStringMapper.php' => - array ( - 0 => '7b3b1eb144aa9e38f6e82f6c39c3bd38259febf0', - 1 => - array ( - 0 => 'phpunit\\util\\throwabletostringmapper', - ), - 2 => - array ( - 0 => 'phpunit\\util\\map', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Util/Filter.php' => - array ( - 0 => 'fc5c3c36becaaba1c322609865afeeb448d91daa', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Util/GlobalState.php' => - array ( - 0 => '06a1a05607d8c6e0d47d349199f4f836d5ce1d3e', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Util/PHP/JobRunner.php' => - array ( - 0 => '1c3a77eefb9ee20e53821150a76c8c833339ad92', - 1 => - array ( - 0 => 'phpunit\\util\\php\\jobrunner', - ), - 2 => - array ( - 0 => 'phpunit\\util\\php\\__construct', - 1 => 'phpunit\\util\\php\\runtestjob', - 2 => 'phpunit\\util\\php\\run', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Util/PHP/DefaultJobRunner.php' => - array ( - 0 => 'a8d4a38101b51f1e84aa13b6f48316fe82023201', - 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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Util/PHP/Job.php' => - array ( - 0 => '911bc922cb6356d56b52cc20889bc9606de3844e', - 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', - 10 => 'phpunit\\util\\php\\requiresxdebug', - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phpunit/phpunit/src/Util/PHP/JobRunnerRegistry.php' => - array ( - 0 => '995b1ab846cf9f5dc72147e5a5ac4cffa4bd8e93', - 1 => - array ( - 0 => 'phpunit\\util\\php\\jobrunnerregistry', - ), - 2 => - array ( - 0 => 'phpunit\\util\\php\\run', - 1 => 'phpunit\\util\\php\\runtestjob', - 2 => 'phpunit\\util\\php\\set', - 3 => 'phpunit\\util\\php\\runner', - ), - 3 => - array ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ec/fb/ecfb68203db340794f88dcc2e585c5f901e69d3f.php b/var/cache/phpstan/cache/PHPStan/ec/fb/ecfb68203db340794f88dcc2e585c5f901e69d3f.php deleted file mode 100644 index 46df0e6..0000000 --- a/var/cache/phpstan/cache/PHPStan/ec/fb/ecfb68203db340794f88dcc2e585c5f901e69d3f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ed/38/ed382bf7ff491e0c891ed4dd18a56df0961e9048.php b/var/cache/phpstan/cache/PHPStan/ed/38/ed382bf7ff491e0c891ed4dd18a56df0961e9048.php deleted file mode 100644 index 0a558e9..0000000 --- a/var/cache/phpstan/cache/PHPStan/ed/38/ed382bf7ff491e0c891ed4dd18a56df0961e9048.php +++ /dev/null @@ -1,7 +0,0 @@ - '1760613666-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ed/b1/edb1ce28da65cbb9f1e8b85ed8ffd01906a8e0c3.php b/var/cache/phpstan/cache/PHPStan/ed/b1/edb1ce28da65cbb9f1e8b85ed8ffd01906a8e0c3.php deleted file mode 100644 index 6e4b7dc..0000000 --- a/var/cache/phpstan/cache/PHPStan/ed/b1/edb1ce28da65cbb9f1e8b85ed8ffd01906a8e0c3.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ed/c0/edc04093d2597914fecab51071541352d7e9c70b.php b/var/cache/phpstan/cache/PHPStan/ed/c0/edc04093d2597914fecab51071541352d7e9c70b.php deleted file mode 100644 index a687720..0000000 --- a/var/cache/phpstan/cache/PHPStan/ed/c0/edc04093d2597914fecab51071541352d7e9c70b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768835655-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ee/fc/eefc6d99d34366a6e8f3148604f9ef9f4835c66c.php b/var/cache/phpstan/cache/PHPStan/ee/fc/eefc6d99d34366a6e8f3148604f9ef9f4835c66c.php deleted file mode 100644 index e312a51..0000000 --- a/var/cache/phpstan/cache/PHPStan/ee/fc/eefc6d99d34366a6e8f3148604f9ef9f4835c66c.php +++ /dev/null @@ -1,60 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/vendor/staabm/side-effects-detector/lib/functionMetadata.php' => - array ( - 0 => '1aa618dad516dc9f87bd8ef9a71e91b294af1b37', - 1 => - array ( - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ef/16/ef163b81a96218533bafd34bbbe37c04ea3271e2.php b/var/cache/phpstan/cache/PHPStan/ef/16/ef163b81a96218533bafd34bbbe37c04ea3271e2.php deleted file mode 100644 index 391bd15..0000000 --- a/var/cache/phpstan/cache/PHPStan/ef/16/ef163b81a96218533bafd34bbbe37c04ea3271e2.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ef/9a/ef9a7351a55ef344a7f8810dac25bea198bb1612.php b/var/cache/phpstan/cache/PHPStan/ef/9a/ef9a7351a55ef344a7f8810dac25bea198bb1612.php deleted file mode 100644 index 8ff00ac..0000000 --- a/var/cache/phpstan/cache/PHPStan/ef/9a/ef9a7351a55ef344a7f8810dac25bea198bb1612.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694921-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/f0/c7/f0c79a378a17e978c9faed56e0508f2f81a6f24b.php b/var/cache/phpstan/cache/PHPStan/f0/c7/f0c79a378a17e978c9faed56e0508f2f81a6f24b.php deleted file mode 100644 index 974da62..0000000 --- a/var/cache/phpstan/cache/PHPStan/f0/c7/f0c79a378a17e978c9faed56e0508f2f81a6f24b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/f2/03/f2038fab48a0f38644fbd8ff156a028f737eff09.php b/var/cache/phpstan/cache/PHPStan/f2/03/f2038fab48a0f38644fbd8ff156a028f737eff09.php deleted file mode 100644 index f71e686..0000000 --- a/var/cache/phpstan/cache/PHPStan/f2/03/f2038fab48a0f38644fbd8ff156a028f737eff09.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765294012-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/f2/15/f215c2a8795fc194f519d0559ffbd415b7f83486.php b/var/cache/phpstan/cache/PHPStan/f2/15/f215c2a8795fc194f519d0559ffbd415b7f83486.php deleted file mode 100644 index c49dd60..0000000 --- a/var/cache/phpstan/cache/PHPStan/f2/15/f215c2a8795fc194f519d0559ffbd415b7f83486.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770179076-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/f4/25/f425687f62672191c6976ffb3f0104162cb7ba7b.php b/var/cache/phpstan/cache/PHPStan/f4/25/f425687f62672191c6976ffb3f0104162cb7ba7b.php deleted file mode 100644 index 09917ec..0000000 --- a/var/cache/phpstan/cache/PHPStan/f4/25/f425687f62672191c6976ffb3f0104162cb7ba7b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694927-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/f4/e9/f4e99bcc1be76f83cb111331531193050970735e.php b/var/cache/phpstan/cache/PHPStan/f4/e9/f4e99bcc1be76f83cb111331531193050970735e.php deleted file mode 100644 index 0fd17db..0000000 --- a/var/cache/phpstan/cache/PHPStan/f4/e9/f4e99bcc1be76f83cb111331531193050970735e.php +++ /dev/null @@ -1,874 +0,0 @@ - 'v1', - 'data' => - array ( - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php' => - array ( - 0 => '87d442f19a4229e9425b13cc22438fa5fa828db2', - 1 => - array ( - 0 => 'phario\\manifest\\invalidapplicationnameexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phar-io/manifest/src/exceptions/InvalidUrlException.php' => - array ( - 0 => '5f3829973998ee02f339bfc2dc2b0b3b12c8b306', - 1 => - array ( - 0 => 'phario\\manifest\\invalidurlexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phar-io/manifest/src/exceptions/NoEmailAddressException.php' => - array ( - 0 => 'a4f08c6ae9c1c46d47199c389944cc087503596a', - 1 => - array ( - 0 => 'phario\\manifest\\noemailaddressexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phar-io/manifest/src/exceptions/Exception.php' => - array ( - 0 => '456e70315a2bf3c9cdbbe707cb915b49c34562ca', - 1 => - array ( - 0 => 'phario\\manifest\\exception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phar-io/manifest/src/exceptions/ManifestElementException.php' => - array ( - 0 => 'a478db1db4a8f6883219a443eb000a0546500876', - 1 => - array ( - 0 => 'phario\\manifest\\manifestelementexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phar-io/manifest/src/exceptions/ManifestDocumentException.php' => - array ( - 0 => 'f0a9a3c6d1a4e1a2fe17b15b458098fec19a7649', - 1 => - array ( - 0 => 'phario\\manifest\\manifestdocumentexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phar-io/manifest/src/exceptions/ManifestLoaderException.php' => - array ( - 0 => '280709d0018d8c65f0ab2a76b50200e1297dfea6', - 1 => - array ( - 0 => 'phario\\manifest\\manifestloaderexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phar-io/manifest/src/exceptions/InvalidEmailException.php' => - array ( - 0 => '19dda893ff582f4a491394e6ba428286414a800d', - 1 => - array ( - 0 => 'phario\\manifest\\invalidemailexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php' => - array ( - 0 => '4eaff5364c264e932616a528b12152514d4476a4', - 1 => - array ( - 0 => 'phario\\manifest\\manifestdocumentmapperexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phar-io/manifest/src/exceptions/ElementCollectionException.php' => - array ( - 0 => '56abfecae7166f594af97d8c2fb992986df0fa66', - 1 => - array ( - 0 => 'phario\\manifest\\elementcollectionexception', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/vendor/phar-io/manifest/src/values/Requirement.php' => - array ( - 0 => '49a53487001667fdb73eb8a08d61276ab60d5463', - 1 => - array ( - 0 => 'phario\\manifest\\requirement', - ), - 2 => - array ( - ), - 3 => - array ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - '/home/jordan/projects/knowledge/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 ( - ), - ), - ), -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/f5/a2/f5a284074328886e59abfc32e2d4479cc0e638c8.php b/var/cache/phpstan/cache/PHPStan/f5/a2/f5a284074328886e59abfc32e2d4479cc0e638c8.php deleted file mode 100644 index 2322355..0000000 --- a/var/cache/phpstan/cache/PHPStan/f5/a2/f5a284074328886e59abfc32e2d4479cc0e638c8.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/f8/07/f8074b767882d77f94a53e29e3569c28668844e7.php b/var/cache/phpstan/cache/PHPStan/f8/07/f8074b767882d77f94a53e29e3569c28668844e7.php deleted file mode 100644 index fa63cce..0000000 --- a/var/cache/phpstan/cache/PHPStan/f8/07/f8074b767882d77f94a53e29e3569c28668844e7.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/f8/57/f857f0540e470ac8c6ca5dd8bfd987935925b0c4.php b/var/cache/phpstan/cache/PHPStan/f8/57/f857f0540e470ac8c6ca5dd8bfd987935925b0c4.php deleted file mode 100644 index 1e51d6c..0000000 --- a/var/cache/phpstan/cache/PHPStan/f8/57/f857f0540e470ac8c6ca5dd8bfd987935925b0c4.php +++ /dev/null @@ -1,7 +0,0 @@ - '1763674952-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/f8/78/f878371fbcfccffdfc1eed6b037ccf86a8d5652e.php b/var/cache/phpstan/cache/PHPStan/f8/78/f878371fbcfccffdfc1eed6b037ccf86a8d5652e.php deleted file mode 100644 index 2703f95..0000000 --- a/var/cache/phpstan/cache/PHPStan/f8/78/f878371fbcfccffdfc1eed6b037ccf86a8d5652e.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/f8/ab/f8ab5c2ef334bc360332a91edfd5c0f01edd2793.php b/var/cache/phpstan/cache/PHPStan/f8/ab/f8ab5c2ef334bc360332a91edfd5c0f01edd2793.php deleted file mode 100644 index 91c8672..0000000 --- a/var/cache/phpstan/cache/PHPStan/f8/ab/f8ab5c2ef334bc360332a91edfd5c0f01edd2793.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/f8/fe/f8fef55a802ec525eb279099634cbf7790aba211.php b/var/cache/phpstan/cache/PHPStan/f8/fe/f8fef55a802ec525eb279099634cbf7790aba211.php deleted file mode 100644 index b2a586d..0000000 --- a/var/cache/phpstan/cache/PHPStan/f8/fe/f8fef55a802ec525eb279099634cbf7790aba211.php +++ /dev/null @@ -1,7 +0,0 @@ - '1770178529-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/f9/ed/f9edd73a785254c4938be624ed1a0e41210ea21b.php b/var/cache/phpstan/cache/PHPStan/f9/ed/f9edd73a785254c4938be624ed1a0e41210ea21b.php deleted file mode 100644 index ca0d327..0000000 --- a/var/cache/phpstan/cache/PHPStan/f9/ed/f9edd73a785254c4938be624ed1a0e41210ea21b.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/fd/8a/fd8aed126a18666048909ef6b1c121f6eff33496.php b/var/cache/phpstan/cache/PHPStan/fd/8a/fd8aed126a18666048909ef6b1c121f6eff33496.php deleted file mode 100644 index 5d03a94..0000000 --- a/var/cache/phpstan/cache/PHPStan/fd/8a/fd8aed126a18666048909ef6b1c121f6eff33496.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765799368-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/fe/3f/fe3fc5e2c7f8d8873b270d6f38c3734f9a2e1c6f.php b/var/cache/phpstan/cache/PHPStan/fe/3f/fe3fc5e2c7f8d8873b270d6f38c3734f9a2e1c6f.php deleted file mode 100644 index cc21b91..0000000 --- a/var/cache/phpstan/cache/PHPStan/fe/3f/fe3fc5e2c7f8d8873b270d6f38c3734f9a2e1c6f.php +++ /dev/null @@ -1,7 +0,0 @@ - '1767250279-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ff/4c/ff4c4449df176cf0973a6fb1b5161f1c831399ea.php b/var/cache/phpstan/cache/PHPStan/ff/4c/ff4c4449df176cf0973a6fb1b5161f1c831399ea.php deleted file mode 100644 index 3273750..0000000 --- a/var/cache/phpstan/cache/PHPStan/ff/4c/ff4c4449df176cf0973a6fb1b5161f1c831399ea.php +++ /dev/null @@ -1,7 +0,0 @@ - '1765044505-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/ff/d6/ffd64c5de93025346e92b85b09503f6c6e654306.php b/var/cache/phpstan/cache/PHPStan/ff/d6/ffd64c5de93025346e92b85b09503f6c6e654306.php deleted file mode 100644 index b873754..0000000 --- a/var/cache/phpstan/cache/PHPStan/ff/d6/ffd64c5de93025346e92b85b09503f6c6e654306.php +++ /dev/null @@ -1,7 +0,0 @@ - '1768694927-v4', - 'data' => false, -)); \ No newline at end of file diff --git a/var/cache/phpstan/cache/PHPStan/p7csd0x3cd.tmp b/var/cache/phpstan/cache/PHPStan/p7csd0x3cd.tmp deleted file mode 100644 index e69de29..0000000 diff --git a/var/cache/phpstan/cache/nette.configurator/Container_2c8b00828e.php b/var/cache/phpstan/cache/nette.configurator/Container_2c8b00828e.php deleted file mode 100644 index fbb559c..0000000 --- a/var/cache/phpstan/cache/nette.configurator/Container_2c8b00828e.php +++ /dev/null @@ -1,8944 +0,0 @@ - [ - '04' => true, - '05' => true, - '06' => true, - '07' => true, - '08' => true, - '09' => true, - '010' => true, - '011' => true, - '014' => true, - '015' => true, - '016' => true, - '017' => true, - '018' => true, - '019' => true, - '020' => true, - '085' => true, - '086' => true, - ], - 'phpstan.stubFilesExtension' => ['041' => true, '042' => true, '044' => true, '045' => true], - 'phpstan.diagnoseExtension' => ['088' => true], - 'phpstan.broker.allowedSubTypesClassReflectionExtension' => ['0110' => true], - 'phpstan.broker.propertiesClassReflectionExtension' => ['0111' => true, '0271' => true], - 'phpstan.broker.dynamicMethodReturnTypeExtension' => [ - '0112' => true, - '0113' => true, - '0216' => true, - '0226' => true, - '0232' => true, - '0233' => true, - '0238' => true, - '0273' => true, - '0301' => true, - '0328' => true, - '0329' => true, - '0336' => true, - '0337' => true, - '0338' => true, - '0339' => true, - '0340' => true, - '0341' => true, - ], - 'phpstan.broker.dynamicFunctionReturnTypeExtension' => [ - '0176' => true, - '0177' => true, - '0178' => true, - '0179' => true, - '0180' => true, - '0181' => true, - '0182' => true, - '0183' => true, - '0184' => true, - '0185' => true, - '0187' => true, - '0188' => true, - '0189' => true, - '0190' => true, - '0191' => true, - '0193' => true, - '0194' => true, - '0195' => true, - '0196' => true, - '0197' => true, - '0198' => true, - '0199' => true, - '0200' => true, - '0201' => true, - '0202' => true, - '0203' => true, - '0204' => true, - '0205' => true, - '0206' => true, - '0207' => true, - '0209' => true, - '0210' => true, - '0213' => true, - '0214' => true, - '0218' => true, - '0219' => true, - '0221' => true, - '0223' => true, - '0225' => true, - '0227' => true, - '0230' => true, - '0231' => true, - '0240' => true, - '0241' => true, - '0243' => true, - '0244' => true, - '0245' => true, - '0246' => true, - '0247' => true, - '0248' => true, - '0249' => true, - '0250' => true, - '0251' => true, - '0252' => true, - '0253' => true, - '0254' => true, - '0256' => true, - '0273' => true, - '0276' => true, - '0277' => true, - '0278' => true, - '0279' => true, - '0280' => true, - '0282' => true, - '0283' => true, - '0284' => true, - '0285' => true, - '0286' => true, - '0287' => true, - '0288' => true, - '0289' => true, - '0290' => true, - '0291' => true, - '0292' => true, - '0294' => true, - '0295' => true, - '0296' => true, - '0297' => true, - '0298' => true, - '0299' => true, - '0300' => true, - '0302' => true, - '0303' => true, - '0304' => true, - '0305' => true, - '0306' => true, - '0307' => true, - '0308' => true, - '0309' => true, - '0310' => true, - '0313' => true, - '0322' => true, - '0326' => true, - '0327' => true, - '0330' => true, - '0331' => true, - '0332' => true, - '0333' => true, - '0334' => true, - '0335' => true, - ], - 'phpstan.typeSpecifier.functionTypeSpecifyingExtension' => [ - '0192' => true, - '0208' => true, - '0222' => true, - '0260' => true, - '0270' => true, - '0274' => true, - '0275' => true, - '0293' => true, - '0311' => true, - '0312' => true, - '0314' => true, - '0315' => true, - '0316' => true, - '0317' => true, - '0318' => true, - '0319' => true, - '0320' => true, - '0321' => true, - '0323' => true, - '0325' => true, - ], - 'phpstan.dynamicFunctionThrowTypeExtension' => ['0211' => true, '0255' => true, '0257' => true], - 'phpstan.broker.dynamicStaticMethodReturnTypeExtension' => [ - '0212' => true, - '0215' => true, - '0217' => true, - '0229' => true, - '0336' => true, - '0342' => true, - ], - 'phpstan.dynamicStaticMethodThrowTypeExtension' => [ - '0228' => true, - '0234' => true, - '0237' => true, - '0266' => true, - '0267' => true, - '0268' => true, - '0269' => true, - '0272' => true, - ], - 'phpstan.dynamicMethodThrowTypeExtension' => ['0235' => true, '0236' => true, '0239' => true], - 'phpstan.functionParameterOutTypeExtension' => ['0258' => true, '0259' => true, '0261' => true], - 'phpstan.functionParameterClosureTypeExtension' => ['0262' => true], - 'phpstan.typeSpecifier.methodTypeSpecifyingExtension' => ['0281' => true], - 'phpstan.rules.rule' => [ - '0355' => true, - '0359' => true, - '0360' => true, - '0362' => true, - '0363' => true, - '0364' => true, - '0365' => true, - '0367' => true, - '0368' => true, - '0369' => true, - '0370' => true, - '0371' => true, - '0372' => true, - '0373' => true, - '0374' => true, - '0376' => true, - '0379' => true, - '0380' => true, - '0381' => true, - '0382' => true, - '0383' => true, - '0391' => true, - '0401' => true, - '0404' => true, - '0408' => true, - '0409' => true, - '0410' => true, - '0412' => true, - '0416' => true, - '0417' => true, - '0418' => true, - '0419' => true, - '0420' => true, - '0421' => true, - '0422' => true, - '0423' => true, - '0424' => true, - '0430' => true, - '0431' => true, - '0432' => true, - '0433' => true, - '0434' => true, - '0446' => true, - '0447' => true, - '0448' => true, - '0449' => true, - '0450' => true, - '0451' => true, - '0452' => true, - '0455' => true, - '0456' => true, - '0457' => true, - '0459' => true, - '0460' => true, - '0461' => true, - '0462' => true, - '0463' => true, - '0464' => true, - '0465' => true, - '0466' => true, - '0470' => true, - '0474' => true, - '0478' => true, - '0482' => true, - '0483' => true, - '0492' => true, - '0494' => true, - '0495' => true, - '0496' => true, - '0497' => true, - '0498' => true, - '0499' => true, - '0500' => true, - '0501' => true, - '0502' => true, - '0503' => true, - '0504' => true, - '0505' => true, - '0506' => true, - '0507' => true, - '0509' => true, - '0510' => true, - '0511' => true, - '0512' => true, - '0513' => true, - '0514' => true, - '0515' => true, - '0516' => true, - '0517' => true, - '0518' => true, - '0519' => true, - '0520' => true, - '0521' => true, - '0522' => true, - '0523' => true, - '0524' => true, - '0525' => true, - '0526' => true, - '0527' => true, - '0528' => true, - '0529' => true, - '0530' => 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.19' => true, - 'rules.2' => true, - 'rules.20' => true, - 'rules.21' => true, - 'rules.22' => true, - 'rules.23' => true, - 'rules.24' => true, - 'rules.25' => true, - 'rules.26' => true, - 'rules.27' => true, - 'rules.28' => true, - 'rules.29' => true, - 'rules.3' => true, - 'rules.30' => true, - 'rules.31' => true, - 'rules.32' => true, - 'rules.33' => true, - 'rules.34' => true, - 'rules.35' => true, - 'rules.36' => true, - 'rules.37' => true, - 'rules.38' => true, - 'rules.39' => true, - 'rules.4' => true, - 'rules.40' => true, - 'rules.41' => true, - 'rules.42' => true, - 'rules.43' => true, - 'rules.44' => true, - 'rules.45' => true, - 'rules.46' => true, - 'rules.47' => true, - 'rules.48' => true, - 'rules.49' => true, - 'rules.5' => true, - 'rules.50' => true, - 'rules.51' => true, - 'rules.52' => true, - 'rules.53' => true, - 'rules.54' => true, - 'rules.55' => true, - 'rules.56' => true, - 'rules.57' => true, - 'rules.58' => true, - 'rules.59' => true, - 'rules.6' => true, - 'rules.60' => true, - 'rules.61' => true, - 'rules.62' => true, - 'rules.63' => true, - 'rules.64' => true, - 'rules.65' => true, - 'rules.66' => true, - 'rules.67' => true, - 'rules.68' => true, - 'rules.69' => true, - 'rules.7' => true, - 'rules.70' => true, - 'rules.71' => true, - 'rules.72' => true, - 'rules.73' => true, - 'rules.74' => true, - 'rules.75' => true, - 'rules.76' => true, - 'rules.77' => true, - 'rules.78' => true, - 'rules.79' => true, - 'rules.8' => true, - 'rules.80' => true, - 'rules.81' => true, - 'rules.82' => true, - 'rules.83' => true, - 'rules.84' => true, - 'rules.85' => true, - 'rules.86' => true, - 'rules.87' => true, - 'rules.88' => true, - 'rules.89' => true, - 'rules.9' => true, - 'rules.90' => true, - 'rules.91' => true, - 'rules.92' => true, - 'rules.93' => true, - 'rules.94' => true, - 'rules.95' => true, - 'rules.96' => true, - 'rules.97' => true, - 'rules.98' => true, - 'rules.99' => true, - ], - 'phpstan.broker.methodsClassReflectionExtension' => ['0485' => true], - 'phpstan.deprecations.deprecatedScopeResolver' => ['0489' => true], - ]; - - protected $types = ['container' => '_PHPStan_b22655c3f\Nette\DI\Container']; - protected $aliases = []; - - protected $wiring = [ - '_PHPStan_b22655c3f\Nette\DI\Container' => [['container']], - 'PHPStan\Rules\Rule' => [ - [ - '0134', - '0135', - '0137', - '0138', - '0153', - '0353', - '0354', - '0355', - '0356', - '0357', - '0358', - '0359', - '0360', - '0361', - '0362', - '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', - '0401', - '0402', - '0403', - '0404', - '0405', - '0406', - '0407', - '0408', - '0409', - '0410', - '0411', - '0412', - '0413', - '0414', - '0415', - '0416', - '0417', - '0418', - '0419', - '0420', - '0421', - '0422', - '0423', - '0424', - '0425', - '0426', - '0427', - '0428', - '0429', - '0430', - '0431', - '0432', - '0433', - '0434', - '0435', - '0438', - '0441', - '0444', - '0446', - '0447', - '0448', - '0449', - '0450', - '0451', - '0452', - '0453', - '0454', - '0455', - '0456', - '0457', - '0458', - '0459', - '0460', - '0461', - '0462', - '0463', - '0464', - '0465', - '0466', - '0469', - '0470', - '0471', - '0472', - '0473', - '0474', - '0475', - '0476', - '0477', - '0478', - '0479', - '0480', - '0481', - '0482', - '0483', - '0484', - '0492', - '0493', - '0494', - '0495', - '0496', - '0497', - '0498', - '0499', - '0500', - '0501', - '0502', - '0503', - '0504', - '0505', - '0506', - '0507', - '0508', - '0509', - '0510', - '0511', - '0512', - '0513', - '0514', - '0515', - '0516', - '0517', - '0518', - '0519', - '0520', - '0521', - '0522', - '0523', - '0524', - '0525', - '0526', - '0527', - '0528', - '0529', - '0530', - ], - [ - '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', - ], - ], - '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\ApiInstantiationRule' => [['rules.4']], - 'PHPStan\Rules\Api\ApiClassExtendsRule' => [['rules.5']], - 'PHPStan\Rules\Api\ApiClassImplementsRule' => [['rules.6']], - 'PHPStan\Rules\Api\ApiInterfaceExtendsRule' => [['rules.7']], - 'PHPStan\Rules\Api\ApiMethodCallRule' => [['rules.8']], - 'PHPStan\Rules\Api\ApiStaticCallRule' => [['rules.9']], - 'PHPStan\Rules\Api\ApiTraitUseRule' => [['rules.10']], - 'PHPStan\Rules\Api\GetTemplateTypeRule' => [['rules.11']], - 'PHPStan\Rules\Api\PhpStanNamespaceIn3rdPartyPackageRule' => [['rules.12']], - 'PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule' => [['rules.13']], - 'PHPStan\Rules\Arrays\EmptyArrayItemRule' => [['rules.14']], - 'PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule' => [['rules.15']], - 'PHPStan\Rules\Cast\UnsetCastRule' => [['rules.16']], - 'PHPStan\Rules\Classes\AllowedSubTypesRule' => [['rules.17']], - 'PHPStan\Rules\Classes\ClassAttributesRule' => [['rules.18']], - 'PHPStan\Rules\Classes\ClassConstantAttributesRule' => [['rules.19']], - 'PHPStan\Rules\Classes\ClassConstantRule' => [['rules.20']], - 'PHPStan\Rules\Classes\DuplicateDeclarationRule' => [['rules.21']], - 'PHPStan\Rules\Classes\EnumSanityRule' => [['rules.22']], - 'PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule' => [['rules.23']], - 'PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule' => [['rules.24']], - 'PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule' => [['rules.25']], - 'PHPStan\Rules\Classes\ExistingClassInTraitUseRule' => [['rules.26']], - 'PHPStan\Rules\Classes\InstantiationRule' => [['rules.27']], - 'PHPStan\Rules\Classes\InstantiationCallableRule' => [['rules.28']], - 'PHPStan\Rules\Classes\InvalidPromotedPropertiesRule' => [['rules.29']], - 'PHPStan\Rules\Classes\LocalTypeAliasesRule' => [['rules.30']], - 'PHPStan\Rules\Classes\LocalTypeTraitAliasesRule' => [['rules.31']], - 'PHPStan\Rules\Classes\NewStaticRule' => [['rules.32']], - 'PHPStan\Rules\Classes\NonClassAttributeClassRule' => [['rules.33']], - 'PHPStan\Rules\Classes\ReadOnlyClassRule' => [['rules.34']], - 'PHPStan\Rules\Classes\TraitAttributeClassRule' => [['rules.35']], - 'PHPStan\Rules\Constants\ClassAsClassConstantRule' => [['rules.36']], - 'PHPStan\Rules\Constants\DynamicClassConstantFetchRule' => [['rules.37']], - 'PHPStan\Rules\Constants\FinalConstantRule' => [['rules.38']], - 'PHPStan\Rules\Constants\NativeTypedClassConstantRule' => [['rules.39']], - 'PHPStan\Rules\EnumCases\EnumCaseAttributesRule' => [['rules.40']], - 'PHPStan\Rules\Exceptions\NoncapturingCatchRule' => [['rules.41']], - 'PHPStan\Rules\Exceptions\ThrowExpressionRule' => [['rules.42']], - 'PHPStan\Rules\Functions\ArrowFunctionAttributesRule' => [['rules.43']], - 'PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule' => [['rules.44']], - 'PHPStan\Rules\Functions\ClosureAttributesRule' => [['rules.45']], - 'PHPStan\Rules\Functions\DefineParametersRule' => [['rules.46']], - 'PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule' => [['rules.47']], - 'PHPStan\Rules\Functions\CallToFunctionParametersRule' => [['rules.48']], - 'PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule' => [['rules.49']], - 'PHPStan\Rules\Functions\ExistingClassesInTypehintsRule' => [['rules.50']], - 'PHPStan\Rules\Functions\FunctionAttributesRule' => [['rules.51']], - 'PHPStan\Rules\Functions\InnerFunctionRule' => [['rules.52']], - 'PHPStan\Rules\Functions\InvalidLexicalVariablesInClosureUseRule' => [['rules.53']], - 'PHPStan\Rules\Functions\ParamAttributesRule' => [['rules.54']], - 'PHPStan\Rules\Functions\PrintfParametersRule' => [['rules.55']], - 'PHPStan\Rules\Functions\RedefinedParametersRule' => [['rules.56']], - 'PHPStan\Rules\Functions\ReturnNullsafeByRefRule' => [['rules.57']], - 'PHPStan\Rules\Ignore\IgnoreParseErrorRule' => [['rules.58']], - 'PHPStan\Rules\Functions\VariadicParametersDeclarationRule' => [['rules.59']], - 'PHPStan\Rules\Keywords\ContinueBreakInLoopRule' => [['rules.60']], - 'PHPStan\Rules\Keywords\DeclareStrictTypesRule' => [['rules.61']], - 'PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule' => [['rules.62']], - 'PHPStan\Rules\Methods\AbstractPrivateMethodRule' => [['rules.63']], - 'PHPStan\Rules\Methods\CallMethodsRule' => [['rules.64']], - 'PHPStan\Rules\Methods\CallStaticMethodsRule' => [['rules.65']], - 'PHPStan\Rules\Methods\ConstructorReturnTypeRule' => [['rules.66']], - 'PHPStan\Rules\Methods\ExistingClassesInTypehintsRule' => [['rules.67']], - 'PHPStan\Rules\Methods\FinalPrivateMethodRule' => [['rules.68']], - 'PHPStan\Rules\Methods\MethodCallableRule' => [['rules.69']], - 'PHPStan\Rules\Methods\MethodVisibilityInInterfaceRule' => [['rules.70']], - 'PHPStan\Rules\Methods\MissingMethodImplementationRule' => [['rules.71']], - 'PHPStan\Rules\Methods\MethodAttributesRule' => [['rules.72']], - 'PHPStan\Rules\Methods\StaticMethodCallableRule' => [['rules.73']], - 'PHPStan\Rules\Names\UsedNamesRule' => [['rules.74']], - 'PHPStan\Rules\Operators\InvalidAssignVarRule' => [['rules.75']], - 'PHPStan\Rules\Properties\AccessPropertiesInAssignRule' => [['rules.76']], - 'PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule' => [['rules.77']], - 'PHPStan\Rules\Properties\InvalidCallablePropertyTypeRule' => [['rules.78']], - 'PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule' => [['rules.79']], - 'PHPStan\Rules\Properties\PropertiesInInterfaceRule' => [['rules.80']], - 'PHPStan\Rules\Properties\PropertyAttributesRule' => [['rules.81']], - 'PHPStan\Rules\Properties\ReadOnlyPropertyRule' => [['rules.82']], - 'PHPStan\Rules\Traits\ConflictingTraitConstantsRule' => [['rules.83']], - 'PHPStan\Rules\Traits\ConstantsInTraitsRule' => [['rules.84']], - 'PHPStan\Rules\Types\InvalidTypesInUnionRule' => [['rules.85']], - 'PHPStan\Rules\Variables\UnsetRule' => [['rules.86']], - 'PHPStan\Rules\Whitespace\FileWhitespaceRule' => [['rules.87']], - 'PHPStan\Rules\Classes\UnusedConstructorParametersRule' => [['rules.88']], - 'PHPStan\Rules\Constants\ConstantRule' => [['rules.89']], - 'PHPStan\Rules\Functions\UnusedClosureUsesRule' => [['rules.90']], - 'PHPStan\Rules\Variables\EmptyRule' => [['rules.91']], - 'PHPStan\Rules\Variables\IssetRule' => [['rules.92']], - 'PHPStan\Rules\Variables\NullCoalesceRule' => [['rules.93']], - 'PHPStan\Rules\Cast\EchoRule' => [['rules.94']], - 'PHPStan\Rules\Cast\InvalidCastRule' => [['rules.95']], - 'PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule' => [['rules.96']], - 'PHPStan\Rules\Cast\PrintRule' => [['rules.97']], - 'PHPStan\Rules\Classes\AccessPrivateConstantThroughStaticRule' => [['rules.98']], - 'PHPStan\Rules\Comparison\UsageOfVoidMatchExpressionRule' => [['rules.99']], - 'PHPStan\Rules\Constants\ValueAssignedToClassConstantRule' => [['rules.100']], - 'PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule' => [['rules.101']], - 'PHPStan\Rules\Generics\ClassAncestorsRule' => [['rules.102']], - 'PHPStan\Rules\Generics\ClassTemplateTypeRule' => [['rules.103']], - 'PHPStan\Rules\Generics\EnumAncestorsRule' => [['rules.104']], - 'PHPStan\Rules\Generics\EnumTemplateTypeRule' => [['rules.105']], - 'PHPStan\Rules\Generics\FunctionTemplateTypeRule' => [['rules.106']], - 'PHPStan\Rules\Generics\FunctionSignatureVarianceRule' => [['rules.107']], - 'PHPStan\Rules\Generics\InterfaceAncestorsRule' => [['rules.108']], - 'PHPStan\Rules\Generics\InterfaceTemplateTypeRule' => [['rules.109']], - 'PHPStan\Rules\Generics\MethodTemplateTypeRule' => [['rules.110']], - 'PHPStan\Rules\Generics\MethodTagTemplateTypeRule' => [['rules.111']], - 'PHPStan\Rules\Generics\MethodSignatureVarianceRule' => [['rules.112']], - 'PHPStan\Rules\Generics\TraitTemplateTypeRule' => [['rules.113']], - 'PHPStan\Rules\Generics\UsedTraitsRule' => [['rules.114']], - 'PHPStan\Rules\Methods\CallPrivateMethodThroughStaticRule' => [['rules.115']], - 'PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule' => [['rules.116']], - 'PHPStan\Rules\Operators\InvalidComparisonOperationRule' => [['rules.117']], - 'PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule' => [['rules.118']], - 'PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule' => [['rules.119']], - 'PHPStan\Rules\PhpDoc\FunctionAssertRule' => [['rules.120']], - 'PHPStan\Rules\PhpDoc\MethodAssertRule' => [['rules.121']], - 'PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule' => [['rules.122']], - 'PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule' => [['rules.123']], - 'PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule' => [['rules.124']], - 'PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule' => [['rules.125']], - 'PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule' => [['rules.126']], - 'PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule' => [['rules.127']], - 'PHPStan\Rules\Properties\AccessPrivatePropertyThroughStaticRule' => [['rules.128']], - 'PHPStan\Rules\Classes\RequireImplementsRule' => [['rules.129']], - 'PHPStan\Rules\Classes\RequireExtendsRule' => [['rules.130']], - 'PHPStan\Rules\PhpDoc\RequireImplementsDefinitionClassRule' => [['rules.131']], - 'PHPStan\Rules\PhpDoc\RequireExtendsDefinitionClassRule' => [['rules.132']], - 'PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule' => [['rules.133']], - 'PHPStan\Rules\Arrays\ArrayDestructuringRule' => [['rules.134']], - 'PHPStan\Rules\Arrays\IterableInForeachRule' => [['rules.135']], - 'PHPStan\Rules\Arrays\OffsetAccessAssignmentRule' => [['rules.136']], - 'PHPStan\Rules\Arrays\OffsetAccessAssignOpRule' => [['rules.137']], - 'PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule' => [['rules.138']], - 'PHPStan\Rules\Arrays\UnpackIterableInArrayRule' => [['rules.139']], - 'PHPStan\Rules\Exceptions\ThrowExprTypeRule' => [['rules.140']], - 'PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule' => [['rules.141']], - 'PHPStan\Rules\Functions\ClosureReturnTypeRule' => [['rules.142']], - 'PHPStan\Rules\Functions\ReturnTypeRule' => [['rules.143']], - 'PHPStan\Rules\Generators\YieldTypeRule' => [['rules.144']], - 'PHPStan\Rules\Methods\ReturnTypeRule' => [['rules.145']], - 'PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule' => [['rules.146']], - 'PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule' => [['rules.147']], - 'PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule' => [['rules.148']], - 'PHPStan\Rules\Properties\TypesAssignedToPropertiesRule' => [['rules.149']], - 'PHPStan\Rules\Variables\ThrowTypeRule' => [['rules.150']], - 'PHPStan\Rules\Variables\VariableCloningRule' => [['rules.151']], - 'PHPStan\Rules\Arrays\DeadForeachRule' => [['rules.152']], - 'PHPStan\Rules\DeadCode\UnreachableStatementRule' => [['rules.153']], - 'PHPStan\Rules\DeadCode\UnusedPrivateConstantRule' => [['rules.154']], - 'PHPStan\Rules\DeadCode\UnusedPrivateMethodRule' => [['rules.155']], - 'PHPStan\Rules\Exceptions\OverwrittenExitPointByFinallyRule' => [['rules.156']], - 'PHPStan\Rules\Functions\CallToFunctionStatementWithoutSideEffectsRule' => [['rules.157']], - 'PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule' => [['rules.158']], - 'PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule' => [['rules.159']], - 'PHPStan\Rules\Methods\NullsafeMethodCallRule' => [['rules.160']], - 'PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule' => [['rules.161']], - 'PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule' => [['rules.162']], - 'PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule' => [['rules.163']], - 'PHPStan\Rules\DateTimeInstantiationRule' => [['rules.164']], - 'PHPStan\Rules\Constants\MissingClassConstantTypehintRule' => [['rules.165']], - 'PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule' => [['rules.166']], - 'PHPStan\Rules\Methods\MissingMethodReturnTypehintRule' => [['rules.167']], - 'PHPStan\Rules\Properties\MissingPropertyTypehintRule' => [['rules.168']], - 'PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule' => [['rules.169']], - 'PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule' => [['rules.170']], - 'PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule' => [['rules.171']], - 'PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule' => [['rules.172']], - 'PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule' => [['rules.173']], - 'PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule' => [['rules.174']], - 'PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule' => [['rules.175']], - 'PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule' => [['rules.176']], - 'PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule' => [['rules.177']], - 'PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule' => [['rules.178']], - 'PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule' => [['rules.179']], - 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule' => [['rules.180']], - 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule' => [['rules.181']], - 'PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule' => [['rules.182']], - 'PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule' => [['rules.183']], - 'PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule' => [['rules.184']], - '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', - '070', - '085', - '086', - '095', - ], - ], - 'PhpParser\NodeVisitor' => [ - [ - '03', - '04', - '05', - '06', - '07', - '08', - '09', - '010', - '011', - '012', - '013', - '014', - '015', - '016', - '017', - '018', - '019', - '020', - '070', - '085', - '086', - '095', - ], - ], - '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\TypeTraverserInstanceofVisitor' => [['013']], - 'PHPStan\Parser\ArrowFunctionArgVisitor' => [['014']], - 'PHPStan\Parser\MagicConstantParamDefaultVisitor' => [['015']], - 'PHPStan\Parser\NewAssignedToPropertyVisitor' => [['016']], - 'PHPStan\Parser\ParentStmtTypesVisitor' => [['017']], - 'PHPStan\Parser\TryCatchTypeVisitor' => [['018']], - 'PHPStan\Parser\LastConditionVisitor' => [['019']], - 'PhpParser\NodeVisitor\NodeConnectingVisitor' => [['020']], - 'PHPStan\Node\Printer\ExprPrinter' => [['021']], - 'PhpParser\PrettyPrinter\Standard' => [['022']], - 'PhpParser\PrettyPrinterAbstract' => [['022']], - 'PHPStan\Node\Printer\Printer' => [['022']], - 'PHPStan\Broker\AnonymousClassNameHelper' => [['023']], - 'PHPStan\Php\PhpVersion' => [['024']], - 'PHPStan\Php\PhpVersionFactory' => [['025']], - 'PHPStan\Php\PhpVersionFactoryFactory' => [['026']], - 'PHPStan\PhpDocParser\Lexer\Lexer' => [['027']], - 'PHPStan\PhpDocParser\Parser\TypeParser' => [['028']], - 'PHPStan\PhpDocParser\Parser\ConstExprParser' => [['029']], - 'PHPStan\PhpDocParser\Parser\PhpDocParser' => [['030']], - 'PHPStan\PhpDocParser\Printer\Printer' => [['031']], - 'PHPStan\PhpDoc\ConstExprParserFactory' => [['032']], - 'PHPStan\PhpDoc\PhpDocInheritanceResolver' => [['033']], - 'PHPStan\PhpDoc\PhpDocNodeResolver' => [['034']], - 'PHPStan\PhpDoc\PhpDocStringResolver' => [['035']], - 'PHPStan\PhpDoc\ConstExprNodeResolver' => [['036']], - 'PHPStan\PhpDoc\TypeNodeResolver' => [['037']], - 'PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider' => [['038']], - 'PHPStan\PhpDoc\TypeStringResolver' => [['039']], - 'PHPStan\PhpDoc\StubValidator' => [['040']], - 'PHPStan\PhpDoc\StubFilesExtension' => [['041', '042', '044', '045']], - 'PHPStan\PhpDoc\CountableStubFilesExtension' => [['041']], - 'PHPStan\PhpDoc\SocketSelectStubFilesExtension' => [['042']], - 'PHPStan\PhpDoc\StubFilesProvider' => [['043']], - 'PHPStan\PhpDoc\DefaultStubFilesProvider' => [['043']], - 'PHPStan\PhpDoc\JsonValidateStubFilesExtension' => [['044']], - 'PHPStan\PhpDoc\ReflectionEnumStubFilesExtension' => [['045']], - 'PHPStan\Analyser\Analyser' => [['046']], - 'PHPStan\Analyser\AnalyserResultFinalizer' => [['047']], - 'PHPStan\Analyser\FileAnalyser' => [['048']], - 'PHPStan\Analyser\LocalIgnoresProcessor' => [['049']], - 'PHPStan\Analyser\RuleErrorTransformer' => [['050']], - 'PHPStan\Analyser\Ignore\IgnoredErrorHelper' => [['051']], - 'PHPStan\Analyser\Ignore\IgnoreLexer' => [['052']], - 'PHPStan\Analyser\InternalScopeFactory' => [['053']], - 'PHPStan\Analyser\LazyInternalScopeFactory' => [['053']], - 'PHPStan\Analyser\ScopeFactory' => [['054']], - 'PHPStan\Analyser\NodeScopeResolver' => [['055']], - 'PHPStan\Analyser\ConstantResolver' => [['056']], - 'PHPStan\Analyser\ConstantResolverFactory' => [['057']], - 'PHPStan\Analyser\ResultCache\ResultCacheManagerFactory' => [['058']], - 'PHPStan\Analyser\ResultCache\ResultCacheClearer' => [['059']], - 'PHPStan\Analyser\RicherScopeGetTypeHelper' => [['060']], - 'PHPStan\Cache\Cache' => [['061']], - 'PHPStan\Collectors\Registry' => [['062']], - 'PHPStan\Collectors\RegistryFactory' => [['063']], - 'PHPStan\Command\AnalyseApplication' => [['064']], - 'PHPStan\Command\AnalyserRunner' => [['065']], - 'PHPStan\Command\FixerApplication' => [['066']], - 'PHPStan\Dependency\DependencyResolver' => [['067']], - 'PHPStan\Dependency\ExportedNodeFetcher' => [['068']], - 'PHPStan\Dependency\ExportedNodeResolver' => [['069']], - 'PHPStan\Dependency\ExportedNodeVisitor' => [['070']], - 'PHPStan\DependencyInjection\Container' => [['071'], ['072']], - 'PHPStan\DependencyInjection\Nette\NetteContainer' => [['072']], - 'PHPStan\DependencyInjection\DerivativeContainerFactory' => [['073']], - 'PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider' => [['074']], - 'PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider' => [['075']], - 'PHPStan\DependencyInjection\Type\ParameterOutTypeExtensionProvider' => [['076']], - 'PHPStan\DependencyInjection\Type\ExpressionTypeResolverExtensionRegistryProvider' => [['077']], - 'PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider' => [['078']], - 'PHPStan\DependencyInjection\Type\DynamicThrowTypeExtensionProvider' => [['079']], - 'PHPStan\DependencyInjection\Type\ParameterClosureTypeExtensionProvider' => [['080']], - 'PHPStan\File\FileHelper' => [['081']], - 'PHPStan\File\FileExcluderFactory' => [['082']], - 'PHPStan\File\FileExcluderRawFactory' => [['083']], - 'PHPStan\File\FileExcluder' => [2 => ['fileExcluderAnalyse', 'fileExcluderScan']], - 'PHPStan\File\FileFinder' => [2 => ['fileFinderAnalyse', 'fileFinderScan']], - 'PHPStan\File\FileMonitor' => [['084']], - 'PHPStan\Parser\DeclarePositionVisitor' => [['085']], - 'PHPStan\Parser\ImmediatelyInvokedClosureVisitor' => [['086']], - 'PHPStan\Parallel\ParallelAnalyser' => [['087']], - 'PHPStan\Diagnose\DiagnoseExtension' => [0 => ['088'], 2 => [1 => 'phpstanDiagnoseExtension']], - 'PHPStan\Parallel\Scheduler' => [['088']], - 'PHPStan\Parser\FunctionCallStatementFinder' => [['089']], - 'PHPStan\Process\CpuCoreCounter' => [['090']], - 'PHPStan\Reflection\FunctionReflectionFactory' => [['091']], - 'PHPStan\Reflection\InitializerExprTypeResolver' => [['092']], - 'PHPStan\Reflection\MethodsClassReflectionExtension' => [['093', '0103', '0105', '0107', '0109', '0485']], - 'PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension' => [['093']], - 'PHPStan\Reflection\PropertiesClassReflectionExtension' => [['094', '0104', '0106', '0107', '0111', '0271']], - 'PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension' => [['094']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor' => [['095']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher' => [['096']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker' => [['097']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory' => [['098']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository' => [['099']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory' => [['0100']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory' => [['0101']], - 'PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository' => [['0102']], - 'PHPStan\Reflection\RequireExtension\RequireExtendsMethodsClassReflectionExtension' => [['0103']], - 'PHPStan\Reflection\RequireExtension\RequireExtendsPropertiesClassReflectionExtension' => [['0104']], - 'PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension' => [['0105']], - 'PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension' => [['0106']], - 'PHPStan\Reflection\Php\PhpClassReflectionExtension' => [['0107']], - 'PHPStan\Reflection\Php\PhpMethodReflectionFactory' => [['0108']], - 'PHPStan\Reflection\Php\Soap\SoapClientMethodsClassReflectionExtension' => [['0109']], - 'PHPStan\Reflection\AllowedSubTypesClassReflectionExtension' => [['0110']], - 'PHPStan\Reflection\Php\EnumAllowedSubTypesClassReflectionExtension' => [['0110']], - 'PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension' => [['0111']], - 'PHPStan\Type\DynamicMethodReturnTypeExtension' => [ - [ - '0112', - '0113', - '0216', - '0226', - '0232', - '0233', - '0238', - '0273', - '0301', - '0328', - '0329', - '0336', - '0337', - '0338', - '0339', - '0340', - '0341', - ], - ], - 'PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension' => [['0112', '0113']], - 'PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider' => [['0114']], - 'PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider' => [['0115']], - 'PHPStan\Reflection\SignatureMap\SignatureMapParser' => [['0116']], - 'PHPStan\Reflection\SignatureMap\SignatureMapProvider' => [['0120'], ['0117', '0118']], - 'PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider' => [['0117']], - 'PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider' => [['0118']], - 'PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory' => [['0119']], - 'PHPStan\Rules\Api\ApiRuleHelper' => [['0121']], - 'PHPStan\Rules\AttributesCheck' => [['0122']], - 'PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck' => [['0123']], - 'PHPStan\Rules\ClassNameCheck' => [['0124']], - 'PHPStan\Rules\ClassCaseSensitivityCheck' => [['0125']], - 'PHPStan\Rules\ClassForbiddenNameCheck' => [['0126']], - 'PHPStan\Rules\Classes\LocalTypeAliasesCheck' => [['0127']], - 'PHPStan\Rules\Classes\MethodTagCheck' => [['0128']], - 'PHPStan\Rules\Classes\MixinCheck' => [['0129']], - 'PHPStan\Rules\Classes\PropertyTagCheck' => [['0130']], - 'PHPStan\Rules\Comparison\ConstantConditionRuleHelper' => [['0131']], - 'PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper' => [['0132']], - 'PHPStan\Rules\Exceptions\ExceptionTypeResolver' => [1 => ['0133'], [1 => 'exceptionTypeResolver']], - 'PHPStan\Rules\Exceptions\DefaultExceptionTypeResolver' => [['0133']], - 'PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule' => [['0134']], - 'PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule' => [['0135']], - 'PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck' => [['0136']], - 'PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule' => [['0137']], - 'PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule' => [['0138']], - 'PHPStan\Rules\Exceptions\TooWideThrowTypeCheck' => [['0139']], - 'PHPStan\Rules\FunctionCallParametersCheck' => [['0140']], - 'PHPStan\Rules\FunctionDefinitionCheck' => [['0141']], - 'PHPStan\Rules\FunctionReturnTypeCheck' => [['0142']], - 'PHPStan\Rules\ParameterCastableToStringCheck' => [['0143']], - 'PHPStan\Rules\Generics\CrossCheckInterfacesHelper' => [['0144']], - 'PHPStan\Rules\Generics\GenericAncestorsCheck' => [['0145']], - 'PHPStan\Rules\Generics\GenericObjectTypeCheck' => [['0146']], - 'PHPStan\Rules\Generics\MethodTagTemplateTypeCheck' => [['0147']], - 'PHPStan\Rules\Generics\TemplateTypeCheck' => [['0148']], - 'PHPStan\Rules\Generics\VarianceCheck' => [['0149']], - 'PHPStan\Rules\IssetCheck' => [['0150']], - 'PHPStan\Rules\Methods\MethodCallCheck' => [['0151']], - 'PHPStan\Rules\Methods\StaticMethodCallCheck' => [['0152']], - 'PHPStan\Rules\Methods\MethodSignatureRule' => [['0153']], - 'PHPStan\Rules\Methods\MethodParameterComparisonHelper' => [['0154']], - 'PHPStan\Rules\MissingTypehintCheck' => [['0155']], - 'PHPStan\Rules\NullsafeCheck' => [['0156']], - 'PHPStan\Rules\Constants\AlwaysUsedClassConstantsExtensionProvider' => [['0157']], - 'PHPStan\Rules\Constants\LazyAlwaysUsedClassConstantsExtensionProvider' => [['0157']], - 'PHPStan\Rules\Methods\AlwaysUsedMethodExtensionProvider' => [['0158']], - 'PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider' => [['0158']], - 'PHPStan\Rules\PhpDoc\ConditionalReturnTypeRuleHelper' => [['0159']], - 'PHPStan\Rules\PhpDoc\AssertRuleHelper' => [['0160']], - 'PHPStan\Rules\PhpDoc\UnresolvableTypeHelper' => [['0161']], - 'PHPStan\Rules\PhpDoc\GenericCallableRuleHelper' => [['0162']], - 'PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper' => [['0163']], - 'PHPStan\Rules\Playground\NeverRuleHelper' => [['0164']], - 'PHPStan\Rules\Properties\ReadWritePropertiesExtensionProvider' => [['0165']], - 'PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider' => [['0165']], - 'PHPStan\Rules\Properties\PropertyDescriptor' => [['0166']], - 'PHPStan\Rules\Properties\PropertyReflectionFinder' => [['0167']], - 'PHPStan\Rules\Pure\FunctionPurityCheck' => [['0168']], - 'PHPStan\Rules\RuleLevelHelper' => [['0169']], - 'PHPStan\Rules\UnusedFunctionParametersCheck' => [['0170']], - 'PHPStan\Rules\TooWideTypehints\TooWideParameterOutTypeCheck' => [['0171']], - 'PHPStan\Type\FileTypeMapper' => [['0172']], - 'PHPStan\Type\TypeAliasResolver' => [['0173']], - 'PHPStan\Type\TypeAliasResolverProvider' => [['0174']], - 'PHPStan\Type\BitwiseFlagHelper' => [['0175']], - 'PHPStan\Type\DynamicFunctionReturnTypeExtension' => [ - [ - '0176', - '0177', - '0178', - '0179', - '0180', - '0181', - '0182', - '0183', - '0184', - '0185', - '0187', - '0188', - '0189', - '0190', - '0191', - '0193', - '0194', - '0195', - '0196', - '0197', - '0198', - '0199', - '0200', - '0201', - '0202', - '0203', - '0204', - '0205', - '0206', - '0207', - '0209', - '0210', - '0213', - '0214', - '0218', - '0219', - '0221', - '0223', - '0225', - '0227', - '0230', - '0231', - '0240', - '0241', - '0243', - '0244', - '0245', - '0246', - '0247', - '0248', - '0249', - '0250', - '0251', - '0252', - '0253', - '0254', - '0256', - '0273', - '0276', - '0277', - '0278', - '0279', - '0280', - '0282', - '0283', - '0284', - '0285', - '0286', - '0287', - '0288', - '0289', - '0290', - '0291', - '0292', - '0294', - '0295', - '0296', - '0297', - '0298', - '0299', - '0300', - '0302', - '0303', - '0304', - '0305', - '0306', - '0307', - '0308', - '0309', - '0310', - '0313', - '0322', - '0326', - '0327', - '0330', - '0331', - '0332', - '0333', - '0334', - '0335', - ], - ], - 'PHPStan\Type\Php\AbsFunctionDynamicReturnTypeExtension' => [['0176']], - 'PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension' => [['0177']], - 'PHPStan\Type\Php\ArrayChangeKeyCaseFunctionReturnTypeExtension' => [['0178']], - 'PHPStan\Type\Php\ArrayIntersectKeyFunctionReturnTypeExtension' => [['0179']], - 'PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension' => [['0180']], - 'PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension' => [['0181']], - 'PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension' => [['0182']], - 'PHPStan\Type\Php\ArrayCurrentDynamicReturnTypeExtension' => [['0183']], - 'PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension' => [['0184']], - 'PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension' => [['0185']], - 'PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper' => [['0186']], - 'PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension' => [['0187']], - 'PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension' => [['0188']], - 'PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension' => [['0189']], - 'PHPStan\Type\Php\ArrayFindKeyFunctionReturnTypeExtension' => [['0190']], - 'PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension' => [['0191']], - 'PHPStan\Type\FunctionTypeSpecifyingExtension' => [ - [ - '0192', - '0208', - '0222', - '0260', - '0270', - '0274', - '0275', - '0293', - '0311', - '0312', - '0314', - '0315', - '0316', - '0317', - '0318', - '0319', - '0320', - '0321', - '0323', - '0325', - ], - ], - 'PHPStan\Analyser\TypeSpecifierAwareExtension' => [ - [ - '0192', - '0208', - '0222', - '0260', - '0270', - '0274', - '0275', - '0281', - '0293', - '0311', - '0312', - '0314', - '0315', - '0316', - '0317', - '0318', - '0319', - '0320', - '0321', - '0323', - '0325', - '0327', - ], - ], - 'PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension' => [['0192']], - 'PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension' => [['0193']], - 'PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension' => [['0194']], - 'PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension' => [['0195']], - 'PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension' => [['0196']], - 'PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension' => [['0197']], - 'PHPStan\Type\Php\ArrayNextDynamicReturnTypeExtension' => [['0198']], - 'PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension' => [['0199']], - 'PHPStan\Type\Php\ArrayRandFunctionReturnTypeExtension' => [['0200']], - 'PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension' => [['0201']], - 'PHPStan\Type\Php\ArrayReplaceFunctionReturnTypeExtension' => [['0202']], - 'PHPStan\Type\Php\ArrayReverseFunctionReturnTypeExtension' => [['0203']], - 'PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension' => [['0204']], - 'PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension' => [['0205']], - 'PHPStan\Type\Php\ArraySpliceFunctionReturnTypeExtension' => [['0206']], - 'PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension' => [['0207']], - 'PHPStan\Type\Php\ArraySearchFunctionTypeSpecifyingExtension' => [['0208']], - 'PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension' => [['0209']], - 'PHPStan\Type\Php\ArraySumFunctionDynamicReturnTypeExtension' => [['0210']], - 'PHPStan\Type\DynamicFunctionThrowTypeExtension' => [['0211', '0255', '0257']], - 'PHPStan\Type\Php\AssertThrowTypeExtension' => [['0211']], - 'PHPStan\Type\DynamicStaticMethodReturnTypeExtension' => [['0212', '0215', '0217', '0229', '0336', '0342']], - 'PHPStan\Type\Php\BackedEnumFromMethodDynamicReturnTypeExtension' => [['0212']], - 'PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension' => [['0213']], - 'PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension' => [['0214']], - 'PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension' => [['0215']], - 'PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension' => [['0216']], - 'PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension' => [['0217']], - 'PHPStan\Type\Php\CompactFunctionReturnTypeExtension' => [['0218']], - 'PHPStan\Type\Php\ConstantFunctionReturnTypeExtension' => [['0219']], - 'PHPStan\Type\Php\ConstantHelper' => [['0220']], - 'PHPStan\Type\Php\CountFunctionReturnTypeExtension' => [['0221']], - 'PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension' => [['0222']], - 'PHPStan\Type\Php\CurlGetinfoFunctionDynamicReturnTypeExtension' => [['0223']], - 'PHPStan\Type\Php\DateFunctionReturnTypeHelper' => [['0224']], - 'PHPStan\Type\Php\DateFormatFunctionReturnTypeExtension' => [['0225']], - 'PHPStan\Type\Php\DateFormatMethodReturnTypeExtension' => [['0226']], - 'PHPStan\Type\Php\DateFunctionReturnTypeExtension' => [['0227']], - 'PHPStan\Type\DynamicStaticMethodThrowTypeExtension' => [ - ['0228', '0234', '0237', '0266', '0267', '0268', '0269', '0272'], - ], - 'PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension' => [['0228']], - 'PHPStan\Type\Php\DateIntervalDynamicReturnTypeExtension' => [['0229']], - 'PHPStan\Type\Php\DateTimeCreateDynamicReturnTypeExtension' => [['0230']], - 'PHPStan\Type\Php\DateTimeDynamicReturnTypeExtension' => [['0231']], - 'PHPStan\Type\Php\DateTimeModifyReturnTypeExtension' => [['0232', '0233']], - 'PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension' => [['0234']], - 'PHPStan\Type\DynamicMethodThrowTypeExtension' => [['0235', '0236', '0239']], - 'PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension' => [['0235']], - 'PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension' => [['0236']], - 'PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension' => [['0237']], - 'PHPStan\Type\Php\DsMapDynamicReturnTypeExtension' => [['0238']], - 'PHPStan\Type\Php\DsMapDynamicMethodThrowTypeExtension' => [['0239']], - 'PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension' => [['0240']], - 'PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension' => [['0241']], - 'PHPStan\Type\Php\FilterFunctionReturnTypeHelper' => [['0242']], - 'PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension' => [['0243']], - 'PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension' => [['0244']], - 'PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension' => [['0245']], - 'PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension' => [['0246']], - 'PHPStan\Type\Php\GetClassDynamicReturnTypeExtension' => [['0247']], - 'PHPStan\Type\Php\GetDebugTypeFunctionReturnTypeExtension' => [['0248']], - 'PHPStan\Type\Php\GetDefinedVarsFunctionReturnTypeExtension' => [['0249']], - 'PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension' => [['0250']], - 'PHPStan\Type\Php\GettypeFunctionReturnTypeExtension' => [['0251']], - 'PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension' => [['0252']], - 'PHPStan\Type\Php\HashFunctionsReturnTypeExtension' => [['0253']], - 'PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension' => [['0254']], - 'PHPStan\Type\Php\IntdivThrowTypeExtension' => [['0255']], - 'PHPStan\Type\Php\IniGetReturnTypeExtension' => [['0256']], - 'PHPStan\Type\Php\JsonThrowTypeExtension' => [['0257']], - 'PHPStan\Type\FunctionParameterOutTypeExtension' => [['0258', '0259', '0261']], - 'PHPStan\Type\Php\OpenSslEncryptParameterOutTypeExtension' => [['0258']], - 'PHPStan\Type\Php\ParseStrParameterOutTypeExtension' => [['0259']], - 'PHPStan\Type\Php\PregMatchTypeSpecifyingExtension' => [['0260']], - 'PHPStan\Type\Php\PregMatchParameterOutTypeExtension' => [['0261']], - 'PHPStan\Type\FunctionParameterClosureTypeExtension' => [['0262']], - 'PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension' => [['0262']], - 'PHPStan\Type\Php\RegexArrayShapeMatcher' => [['0263']], - 'PHPStan\Type\Regex\RegexGroupParser' => [['0264']], - 'PHPStan\Type\Regex\RegexExpressionHelper' => [['0265']], - 'PHPStan\Type\Php\ReflectionClassConstructorThrowTypeExtension' => [['0266']], - 'PHPStan\Type\Php\ReflectionFunctionConstructorThrowTypeExtension' => [['0267']], - 'PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension' => [['0268']], - 'PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension' => [['0269']], - 'PHPStan\Type\Php\StrContainingTypeSpecifyingExtension' => [['0270']], - 'PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension' => [['0271']], - 'PHPStan\Type\Php\SimpleXMLElementConstructorThrowTypeExtension' => [['0272']], - 'PHPStan\Type\Php\StatDynamicReturnTypeExtension' => [['0273']], - 'PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension' => [['0274']], - 'PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension' => [['0275']], - 'PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension' => [['0276']], - 'PHPStan\Type\Php\NumberFormatFunctionDynamicReturnTypeExtension' => [['0277']], - 'PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension' => [['0278']], - 'PHPStan\Type\Php\PregFilterFunctionReturnTypeExtension' => [['0279']], - 'PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension' => [['0280']], - 'PHPStan\Type\MethodTypeSpecifyingExtension' => [['0281']], - 'PHPStan\Type\Php\ReflectionClassIsSubclassOfTypeSpecifyingExtension' => [['0281']], - 'PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension' => [['0282']], - 'PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension' => [['0283']], - 'PHPStan\Type\Php\LtrimFunctionReturnTypeExtension' => [['0284']], - 'PHPStan\Type\Php\MbFunctionsReturnTypeExtension' => [['0285']], - 'PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension' => [['0286']], - 'PHPStan\Type\Php\MbSubstituteCharacterDynamicReturnTypeExtension' => [['0287']], - 'PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension' => [['0288']], - 'PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension' => [['0289']], - 'PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension' => [['0290']], - 'PHPStan\Type\Php\ImplodeFunctionReturnTypeExtension' => [['0291']], - 'PHPStan\Type\Php\NonEmptyStringFunctionsReturnTypeExtension' => [['0292']], - 'PHPStan\Type\Php\SetTypeFunctionTypeSpecifyingExtension' => [['0293']], - 'PHPStan\Type\Php\StrCaseFunctionsReturnTypeExtension' => [['0294']], - 'PHPStan\Type\Php\StrlenFunctionReturnTypeExtension' => [['0295']], - 'PHPStan\Type\Php\StrIncrementDecrementFunctionReturnTypeExtension' => [['0296']], - 'PHPStan\Type\Php\StrPadFunctionReturnTypeExtension' => [['0297']], - 'PHPStan\Type\Php\StrRepeatFunctionReturnTypeExtension' => [['0298']], - 'PHPStan\Type\Php\StrrevFunctionReturnTypeExtension' => [['0299']], - 'PHPStan\Type\Php\SubstrDynamicReturnTypeExtension' => [['0300']], - 'PHPStan\Type\Php\ThrowableReturnTypeExtension' => [['0301']], - 'PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension' => [['0302']], - 'PHPStan\Type\Php\TriggerErrorDynamicReturnTypeExtension' => [['0303']], - 'PHPStan\Type\Php\TrimFunctionDynamicReturnTypeExtension' => [['0304']], - 'PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension' => [['0305']], - 'PHPStan\Type\Php\PowFunctionReturnTypeExtension' => [['0306']], - 'PHPStan\Type\Php\RoundFunctionReturnTypeExtension' => [['0307']], - 'PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension' => [['0308']], - 'PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension' => [['0309']], - 'PHPStan\Type\Php\RangeFunctionReturnTypeExtension' => [['0310']], - 'PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension' => [['0311']], - 'PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension' => [['0312']], - 'PHPStan\Type\Php\ClassImplementsFunctionReturnTypeExtension' => [['0313']], - 'PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension' => [['0314']], - 'PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension' => [['0315']], - 'PHPStan\Type\Php\FunctionExistsFunctionTypeSpecifyingExtension' => [['0316']], - 'PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension' => [['0317']], - 'PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension' => [['0318']], - 'PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension' => [['0319']], - 'PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension' => [['0320']], - 'PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension' => [['0321']], - 'PHPStan\Type\Php\IteratorToArrayFunctionReturnTypeExtension' => [['0322']], - 'PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension' => [['0323']], - 'PHPStan\Type\Php\IsAFunctionTypeSpecifyingHelper' => [['0324']], - 'PHPStan\Type\Php\CtypeDigitFunctionTypeSpecifyingExtension' => [['0325']], - 'PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension' => [['0326']], - 'PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension' => [['0327']], - 'PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension' => [['0328']], - 'PHPStan\Type\Php\SimpleXMLElementXpathMethodReturnTypeExtension' => [['0329']], - 'PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension' => [['0330']], - 'PHPStan\Type\Php\StrTokFunctionReturnTypeExtension' => [['0331']], - 'PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension' => [['0332']], - 'PHPStan\Type\Php\SscanfFunctionDynamicReturnTypeExtension' => [['0333']], - 'PHPStan\Type\Php\StrvalFamilyFunctionReturnTypeExtension' => [['0334']], - 'PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension' => [['0335']], - 'PHPStan\Type\Php\XMLReaderOpenReturnTypeExtension' => [['0336']], - 'PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension' => [['0337', '0338', '0339', '0340', '0341']], - 'PHPStan\Type\Php\DatePeriodConstructorReturnTypeExtension' => [['0342']], - 'PHPStan\Type\ClosureTypeFactory' => [['0343']], - 'PHPStan\Type\Constant\OversizedArrayBuilder' => [['0344']], - 'PHPStan\Rules\Functions\PrintfHelper' => [['0345']], - 'PHPStan\Analyser\TypeSpecifier' => [['typeSpecifier']], - 'PHPStan\Analyser\TypeSpecifierFactory' => [['typeSpecifierFactory']], - 'PHPStan\File\RelativePathHelper' => [ - 0 => ['relativePathHelper'], - 2 => [1 => 'simpleRelativePathHelper', 'parentDirectoryRelativePathHelper'], - ], - 'PHPStan\File\ParentDirectoryRelativePathHelper' => [2 => ['parentDirectoryRelativePathHelper']], - 'PHPStan\Reflection\ReflectionProvider' => [['reflectionProvider'], ['broker'], [2 => 'betterReflectionProvider']], - 'PHPStan\Broker\Broker' => [['broker']], - 'PHPStan\Broker\BrokerFactory' => [['brokerFactory']], - 'PHPStan\Cache\CacheStorage' => [2 => ['cacheStorage']], - 'PHPStan\Cache\FileCacheStorage' => [2 => ['cacheStorage']], - 'PHPStan\Parser\Parser' => [ - 2 => [ - 'currentPhpVersionRichParser', - 'currentPhpVersionSimpleParser', - 'currentPhpVersionSimpleDirectParser', - 'defaultAnalysisParser', - 'php8Parser', - 'pathRoutingParser', - ], - ], - 'PHPStan\Parser\RichParser' => [2 => ['currentPhpVersionRichParser']], - 'PHPStan\Parser\CleaningParser' => [2 => ['currentPhpVersionSimpleParser']], - 'PHPStan\Parser\SimpleParser' => [2 => ['currentPhpVersionSimpleDirectParser', 'php8Parser']], - 'PHPStan\Parser\CachedParser' => [2 => ['defaultAnalysisParser']], - 'PhpParser\Parser' => [2 => ['phpParserDecorator', 'currentPhpVersionPhpParser', 'php8PhpParser']], - 'PHPStan\Parser\PhpParserDecorator' => [2 => ['phpParserDecorator']], - 'PhpParser\Lexer' => [2 => ['currentPhpVersionLexer', 'php8Lexer']], - 'PhpParser\ParserAbstract' => [2 => ['currentPhpVersionPhpParser', 'php8PhpParser']], - 'PhpParser\Parser\Php7' => [2 => ['currentPhpVersionPhpParser', 'php8PhpParser']], - 'PHPStan\Rules\Registry' => [['registry']], - 'PHPStan\Rules\LazyRegistry' => [['registry']], - 'PHPStan\PhpDoc\StubPhpDocProvider' => [['stubPhpDocProvider']], - 'PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory' => [['reflectionProviderFactory']], - 'PHPStan\BetterReflection\SourceLocator\Type\SourceLocator' => [2 => ['betterReflectionSourceLocator']], - 'PHPStan\BetterReflection\Reflector\Reflector' => [ - 0 => ['originalBetterReflectionReflector'], - 2 => [ - 1 => 'betterReflectionReflector', - 'betterReflectionClassReflector', - 'betterReflectionFunctionReflector', - 'betterReflectionConstantReflector', - 'nodeScopeResolverReflector', - ], - ], - 'PHPStan\BetterReflection\Reflector\DefaultReflector' => [['originalBetterReflectionReflector']], - 'PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector' => [ - 2 => ['betterReflectionReflector', 'nodeScopeResolverReflector'], - ], - 'PHPStan\BetterReflection\Reflector\ClassReflector' => [2 => ['betterReflectionClassReflector']], - 'PHPStan\BetterReflection\Reflector\FunctionReflector' => [2 => ['betterReflectionFunctionReflector']], - 'PHPStan\BetterReflection\Reflector\ConstantReflector' => [2 => ['betterReflectionConstantReflector']], - 'PHPStan\Reflection\BetterReflection\BetterReflectionProvider' => [2 => ['betterReflectionProvider']], - 'PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory' => [['0346']], - 'PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory' => [['0347']], - 'PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory' => [['0348']], - 'PHPStan\BetterReflection\SourceLocator\SourceStubber\SourceStubber' => [1 => ['0349', '0350']], - 'PHPStan\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber' => [['0349']], - 'PHPStan\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber' => [['0350']], - 'PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory' => [['0351']], - 'PhpParser\Lexer\Emulative' => [2 => ['php8Lexer']], - 'PHPStan\Parser\PathRoutingParser' => [2 => ['pathRoutingParser']], - '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', - ], - ['0352'], - ], - 'PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter' => [['0352']], - '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\Api\ApiClassConstFetchRule' => [['0353']], - 'PHPStan\Rules\Api\ApiInstanceofRule' => [['0354']], - 'PHPStan\Rules\Api\ApiInstanceofTypeRule' => [['0355']], - 'PHPStan\Rules\Api\NodeConnectingVisitorAttributesRule' => [['0356']], - 'PHPStan\Rules\Api\RuntimeReflectionFunctionRule' => [['0357']], - 'PHPStan\Rules\Api\RuntimeReflectionInstantiationRule' => [['0358']], - 'PHPStan\Rules\Classes\ExistingClassInClassExtendsRule' => [['0359']], - 'PHPStan\Rules\Classes\ExistingClassInInstanceOfRule' => [['0360']], - 'PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule' => [['0361']], - 'PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule' => [['0362']], - 'PHPStan\Rules\Functions\CallToNonExistentFunctionRule' => [['0363']], - 'PHPStan\Rules\Constants\OverridingConstantRule' => [['0364']], - 'PHPStan\Rules\Methods\OverridingMethodRule' => [['0365']], - 'PHPStan\Rules\Methods\ConsistentConstructorRule' => [['0366']], - 'PHPStan\Rules\Missing\MissingReturnRule' => [['0367']], - 'PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule' => [['0368']], - 'PHPStan\Rules\Namespaces\ExistingNamesInUseRule' => [['0369']], - 'PHPStan\Rules\Operators\InvalidIncDecOperationRule' => [['0370']], - 'PHPStan\Rules\Properties\AccessPropertiesRule' => [['0371']], - 'PHPStan\Rules\Properties\AccessStaticPropertiesRule' => [['0372']], - 'PHPStan\Rules\Properties\ExistingClassesInPropertiesRule' => [['0373']], - 'PHPStan\Rules\Functions\FunctionCallableRule' => [['0374']], - 'PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule' => [['0375']], - 'PHPStan\Rules\Properties\OverridingPropertyRule' => [['0376']], - 'PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyRule' => [['0377']], - 'PHPStan\Rules\Properties\UninitializedPropertyRule' => [['0378']], - 'PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule' => [['0379']], - 'PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule' => [['0380']], - 'PHPStan\Rules\Variables\CompactVariablesRule' => [['0381']], - 'PHPStan\Rules\Variables\DefinedVariableRule' => [['0382']], - 'PHPStan\Rules\Regexp\RegularExpressionPatternRule' => [['0383']], - 'PHPStan\Reflection\ConstructorsHelper' => [['0384']], - 'PHPStan\Rules\Methods\MissingMagicSerializationMethodsRule' => [['0385']], - 'PHPStan\Rules\Constants\MagicConstantContextRule' => [['0386']], - 'PHPStan\Rules\Functions\UselessFunctionReturnValueRule' => [['0387']], - 'PHPStan\Rules\Functions\PrintfArrayParametersRule' => [['0388']], - 'PHPStan\Rules\Regexp\RegularExpressionQuotingRule' => [['0389']], - 'PHPStan\Rules\Keywords\RequireFileExistsRule' => [['0390']], - 'PHPStan\Rules\Classes\MixinRule' => [['0391']], - 'PHPStan\Rules\Classes\MixinTraitRule' => [['0392']], - 'PHPStan\Rules\Classes\MixinTraitUseRule' => [['0393']], - 'PHPStan\Rules\Classes\MethodTagRule' => [['0394']], - 'PHPStan\Rules\Classes\MethodTagTraitRule' => [['0395']], - 'PHPStan\Rules\Classes\MethodTagTraitUseRule' => [['0396']], - 'PHPStan\Rules\Classes\PropertyTagRule' => [['0397']], - 'PHPStan\Rules\Classes\PropertyTagTraitRule' => [['0398']], - 'PHPStan\Rules\Classes\PropertyTagTraitUseRule' => [['0399']], - 'PHPStan\Rules\PhpDoc\RequireExtendsCheck' => [['0400']], - 'PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule' => [['0401']], - 'PHPStan\Rules\Functions\IncompatibleArrowFunctionDefaultParameterTypeRule' => [['0402']], - 'PHPStan\Rules\Functions\IncompatibleClosureDefaultParameterTypeRule' => [['0403']], - 'PHPStan\Rules\Functions\CallCallablesRule' => [['0404']], - 'PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule' => [['0405']], - 'PHPStan\Rules\Methods\IllegalConstructorMethodCallRule' => [['0406']], - 'PHPStan\Rules\Methods\IllegalConstructorStaticCallRule' => [['0407']], - 'PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule' => [['0408']], - 'PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule' => [['0409']], - 'PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule' => [['0410']], - 'PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule' => [['0411']], - 'PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule' => [['0412']], - 'PHPStan\Rules\Generics\PropertyVarianceRule' => [['0413']], - 'PHPStan\Rules\Pure\PureFunctionRule' => [['0414']], - 'PHPStan\Rules\Pure\PureMethodRule' => [['0415']], - 'PHPStan\Rules\Operators\InvalidBinaryOperationRule' => [['0416']], - 'PHPStan\Rules\Operators\InvalidUnaryOperationRule' => [['0417']], - 'PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule' => [['0418']], - 'PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule' => [['0419']], - 'PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule' => [['0420']], - 'PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule' => [['0421']], - 'PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule' => [['0422']], - 'PHPStan\Rules\Generators\YieldFromTypeRule' => [['0423']], - 'PHPStan\Rules\Generators\YieldInGeneratorRule' => [['0424']], - 'PHPStan\Rules\Arrays\ArrayUnpackingRule' => [['0425']], - 'PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule' => [['0426']], - 'PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule' => [['0427']], - 'PHPStan\Rules\Variables\ParameterOutAssignedTypeRule' => [['0428']], - 'PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule' => [['0429']], - 'PHPStan\Rules\Classes\ImpossibleInstanceOfRule' => [['0430']], - 'PHPStan\Rules\Comparison\BooleanAndConstantConditionRule' => [['0431']], - 'PHPStan\Rules\Comparison\BooleanOrConstantConditionRule' => [['0432']], - 'PHPStan\Rules\Comparison\BooleanNotConstantConditionRule' => [['0433']], - 'PHPStan\Rules\DeadCode\NoopRule' => [['0434']], - 'PHPStan\Rules\DeadCode\CallToConstructorStatementWithoutImpurePointsRule' => [['0435']], - 'PHPStan\Collectors\Collector' => [['0436', '0437', '0439', '0440', '0442', '0443', '0445', '0467', '0468']], - 'PHPStan\Rules\DeadCode\ConstructorWithoutImpurePointsCollector' => [['0436']], - 'PHPStan\Rules\DeadCode\PossiblyPureNewCollector' => [['0437']], - 'PHPStan\Rules\DeadCode\CallToFunctionStatementWithoutImpurePointsRule' => [['0438']], - 'PHPStan\Rules\DeadCode\FunctionWithoutImpurePointsCollector' => [['0439']], - 'PHPStan\Rules\DeadCode\PossiblyPureFuncCallCollector' => [['0440']], - 'PHPStan\Rules\DeadCode\CallToMethodStatementWithoutImpurePointsRule' => [['0441']], - 'PHPStan\Rules\DeadCode\MethodWithoutImpurePointsCollector' => [['0442']], - 'PHPStan\Rules\DeadCode\PossiblyPureMethodCallCollector' => [['0443']], - 'PHPStan\Rules\DeadCode\CallToStaticMethodStatementWithoutImpurePointsRule' => [['0444']], - 'PHPStan\Rules\DeadCode\PossiblyPureStaticCallCollector' => [['0445']], - 'PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule' => [['0446']], - 'PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule' => [['0447']], - 'PHPStan\Rules\Comparison\ElseIfConstantConditionRule' => [['0448']], - 'PHPStan\Rules\Comparison\IfConstantConditionRule' => [['0449']], - 'PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule' => [['0450']], - 'PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule' => [['0451']], - 'PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule' => [['0452']], - 'PHPStan\Rules\Comparison\LogicalXorConstantConditionRule' => [['0453']], - 'PHPStan\Rules\DeadCode\BetterNoopRule' => [['0454']], - 'PHPStan\Rules\Comparison\MatchExpressionRule' => [['0455']], - 'PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule' => [['0456']], - 'PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule' => [['0457']], - 'PHPStan\Rules\Comparison\ConstantLooseComparisonRule' => [['0458']], - 'PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule' => [['0459']], - 'PHPStan\Rules\Comparison\UnreachableIfBranchesRule' => [['0460']], - 'PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule' => [['0461']], - 'PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule' => [['0462']], - 'PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule' => [['0463']], - 'PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule' => [['0464']], - 'PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule' => [['0465']], - 'PHPStan\Rules\Properties\NullsafePropertyFetchRule' => [['0466']], - 'PHPStan\Rules\Traits\TraitDeclarationCollector' => [['0467']], - 'PHPStan\Rules\Traits\TraitUseCollector' => [['0468']], - 'PHPStan\Rules\Traits\NotAnalysedTraitRule' => [['0469']], - 'PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule' => [['0470']], - 'PHPStan\Rules\TooWideTypehints\TooWideFunctionParameterOutTypeRule' => [['0471']], - 'PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule' => [['0472']], - 'PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule' => [['0473']], - 'PHPStan\Rules\Functions\RandomIntParametersRule' => [['0474']], - 'PHPStan\Rules\Functions\ArrayFilterRule' => [['0475']], - 'PHPStan\Rules\Functions\ArrayValuesRule' => [['0476']], - 'PHPStan\Rules\Functions\CallUserFuncRule' => [['0477']], - 'PHPStan\Rules\Functions\ImplodeFunctionRule' => [['0478']], - 'PHPStan\Rules\Functions\ParameterCastableToStringRule' => [['0479']], - 'PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule' => [['0480']], - 'PHPStan\Rules\Functions\SortParameterCastableToStringRule' => [['0481']], - 'PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule' => [['0482']], - 'PHPStan\Rules\Methods\MissingMethodParameterTypehintRule' => [['0483']], - 'PHPStan\Rules\Methods\MissingMethodSelfOutTypeRule' => [['0484']], - 'Carbon\PHPStan\MacroExtension' => [['0485']], - 'PHPStan\Rules\Deprecations\DeprecatedClassHelper' => [['0486']], - 'PHPStan\DependencyInjection\LazyDeprecatedScopeResolverProvider' => [['0487']], - 'PHPStan\Rules\Deprecations\DeprecatedScopeHelper' => [['0488']], - 'PHPStan\Rules\Deprecations\DeprecatedScopeResolver' => [['0489']], - 'PHPStan\Rules\Deprecations\DefaultDeprecatedScopeResolver' => [['0489']], - 'PHPStan\Rules\BooleansInConditions\BooleanRuleHelper' => [['0490']], - 'PHPStan\Rules\Operators\OperatorRuleHelper' => [['0491']], - 'PHPStan\Rules\VariableVariables\VariablePropertyFetchRule' => [['0492']], - 'PHPStan\Rules\DisallowedConstructs\DisallowedLooseComparisonRule' => [['0493']], - 'PHPStan\Rules\BooleansInConditions\BooleanInBooleanAndRule' => [['0494']], - 'PHPStan\Rules\BooleansInConditions\BooleanInBooleanNotRule' => [['0495']], - 'PHPStan\Rules\BooleansInConditions\BooleanInBooleanOrRule' => [['0496']], - 'PHPStan\Rules\BooleansInConditions\BooleanInElseIfConditionRule' => [['0497']], - 'PHPStan\Rules\BooleansInConditions\BooleanInIfConditionRule' => [['0498']], - 'PHPStan\Rules\BooleansInConditions\BooleanInTernaryOperatorRule' => [['0499']], - 'PHPStan\Rules\Cast\UselessCastRule' => [['0500']], - 'PHPStan\Rules\Classes\RequireParentConstructCallRule' => [['0501']], - 'PHPStan\Rules\DisallowedConstructs\DisallowedBacktickRule' => [['0502']], - 'PHPStan\Rules\DisallowedConstructs\DisallowedEmptyRule' => [['0503']], - 'PHPStan\Rules\DisallowedConstructs\DisallowedImplicitArrayCreationRule' => [['0504']], - 'PHPStan\Rules\DisallowedConstructs\DisallowedShortTernaryRule' => [['0505']], - 'PHPStan\Rules\ForeachLoop\OverwriteVariablesWithForeachRule' => [['0506']], - 'PHPStan\Rules\ForLoop\OverwriteVariablesWithForLoopInitRule' => [['0507']], - 'PHPStan\Rules\Functions\ArrayFilterStrictRule' => [['0508']], - 'PHPStan\Rules\Functions\ClosureUsesThisRule' => [['0509']], - 'PHPStan\Rules\Methods\WrongCaseOfInheritedMethodRule' => [['0510']], - 'PHPStan\Rules\Operators\OperandInArithmeticIncrementOrDecrementRule' => [['0511', '0512', '0513', '0514']], - 'PHPStan\Rules\Operators\OperandInArithmeticPostDecrementRule' => [['0511']], - 'PHPStan\Rules\Operators\OperandInArithmeticPostIncrementRule' => [['0512']], - 'PHPStan\Rules\Operators\OperandInArithmeticPreDecrementRule' => [['0513']], - 'PHPStan\Rules\Operators\OperandInArithmeticPreIncrementRule' => [['0514']], - 'PHPStan\Rules\Operators\OperandsInArithmeticAdditionRule' => [['0515']], - 'PHPStan\Rules\Operators\OperandsInArithmeticDivisionRule' => [['0516']], - 'PHPStan\Rules\Operators\OperandsInArithmeticExponentiationRule' => [['0517']], - 'PHPStan\Rules\Operators\OperandsInArithmeticModuloRule' => [['0518']], - 'PHPStan\Rules\Operators\OperandsInArithmeticMultiplicationRule' => [['0519']], - 'PHPStan\Rules\Operators\OperandsInArithmeticSubtractionRule' => [['0520']], - 'PHPStan\Rules\StrictCalls\DynamicCallOnStaticMethodsRule' => [['0521']], - 'PHPStan\Rules\StrictCalls\DynamicCallOnStaticMethodsCallableRule' => [['0522']], - 'PHPStan\Rules\StrictCalls\StrictFunctionCallsRule' => [['0523']], - 'PHPStan\Rules\SwitchConditions\MatchingTypeInSwitchCaseConditionRule' => [['0524']], - 'PHPStan\Rules\VariableVariables\VariableMethodCallRule' => [['0525']], - 'PHPStan\Rules\VariableVariables\VariableMethodCallableRule' => [['0526']], - 'PHPStan\Rules\VariableVariables\VariableStaticMethodCallRule' => [['0527']], - 'PHPStan\Rules\VariableVariables\VariableStaticMethodCallableRule' => [['0528']], - 'PHPStan\Rules\VariableVariables\VariableStaticPropertyFetchRule' => [['0529']], - 'PHPStan\Rules\VariableVariables\VariableVariablesRule' => [['0530']], - ]; - - - 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('024')); - } - - - 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\TypeTraverserInstanceofVisitor - { - return new PHPStan\Parser\TypeTraverserInstanceofVisitor; - } - - - public function createService014(): PHPStan\Parser\ArrowFunctionArgVisitor - { - return new PHPStan\Parser\ArrowFunctionArgVisitor; - } - - - public function createService015(): PHPStan\Parser\MagicConstantParamDefaultVisitor - { - return new PHPStan\Parser\MagicConstantParamDefaultVisitor; - } - - - public function createService016(): PHPStan\Parser\NewAssignedToPropertyVisitor - { - return new PHPStan\Parser\NewAssignedToPropertyVisitor; - } - - - public function createService017(): PHPStan\Parser\ParentStmtTypesVisitor - { - return new PHPStan\Parser\ParentStmtTypesVisitor; - } - - - 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(): PhpParser\NodeVisitor\NodeConnectingVisitor - { - return new PhpParser\NodeVisitor\NodeConnectingVisitor; - } - - - public function createService021(): PHPStan\Node\Printer\ExprPrinter - { - return new PHPStan\Node\Printer\ExprPrinter($this->getService('022')); - } - - - public function createService022(): PHPStan\Node\Printer\Printer - { - return new PHPStan\Node\Printer\Printer; - } - - - public function createService023(): PHPStan\Broker\AnonymousClassNameHelper - { - return new PHPStan\Broker\AnonymousClassNameHelper($this->getService('081'), $this->getService('simpleRelativePathHelper')); - } - - - public function createService024(): PHPStan\Php\PhpVersion - { - return $this->getService('025')->create(); - } - - - public function createService025(): PHPStan\Php\PhpVersionFactory - { - return $this->getService('026')->create(); - } - - - public function createService026(): PHPStan\Php\PhpVersionFactoryFactory - { - return new PHPStan\Php\PhpVersionFactoryFactory(null, ['/home/jordan/projects/knowledge']); - } - - - public function createService027(): PHPStan\PhpDocParser\Lexer\Lexer - { - return new PHPStan\PhpDocParser\Lexer\Lexer; - } - - - public function createService028(): PHPStan\PhpDocParser\Parser\TypeParser - { - return new PHPStan\PhpDocParser\Parser\TypeParser($this->getService('029'), false); - } - - - public function createService029(): PHPStan\PhpDocParser\Parser\ConstExprParser - { - return $this->getService('032')->create(); - } - - - public function createService030(): PHPStan\PhpDocParser\Parser\PhpDocParser - { - return new PHPStan\PhpDocParser\Parser\PhpDocParser( - $this->getService('028'), - $this->getService('029'), - false, - true, - ['lines' => false] - ); - } - - - public function createService031(): PHPStan\PhpDocParser\Printer\Printer - { - return new PHPStan\PhpDocParser\Printer\Printer; - } - - - public function createService032(): PHPStan\PhpDoc\ConstExprParserFactory - { - return new PHPStan\PhpDoc\ConstExprParserFactory(false); - } - - - public function createService033(): PHPStan\PhpDoc\PhpDocInheritanceResolver - { - return new PHPStan\PhpDoc\PhpDocInheritanceResolver($this->getService('0172'), $this->getService('stubPhpDocProvider')); - } - - - public function createService034(): PHPStan\PhpDoc\PhpDocNodeResolver - { - return new PHPStan\PhpDoc\PhpDocNodeResolver($this->getService('037'), $this->getService('036'), $this->getService('0161')); - } - - - public function createService035(): PHPStan\PhpDoc\PhpDocStringResolver - { - return new PHPStan\PhpDoc\PhpDocStringResolver($this->getService('027'), $this->getService('030')); - } - - - public function createService036(): PHPStan\PhpDoc\ConstExprNodeResolver - { - return new PHPStan\PhpDoc\ConstExprNodeResolver($this->getService('0114'), $this->getService('092')); - } - - - public function createService037(): PHPStan\PhpDoc\TypeNodeResolver - { - return new PHPStan\PhpDoc\TypeNodeResolver( - $this->getService('038'), - $this->getService('0114'), - $this->getService('0174'), - $this->getService('056'), - $this->getService('092') - ); - } - - - public function createService038(): PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider - { - return new PHPStan\PhpDoc\LazyTypeNodeResolverExtensionRegistryProvider($this->getService('071')); - } - - - public function createService039(): PHPStan\PhpDoc\TypeStringResolver - { - return new PHPStan\PhpDoc\TypeStringResolver($this->getService('027'), $this->getService('028'), $this->getService('037')); - } - - - public function createService040(): PHPStan\PhpDoc\StubValidator - { - return new PHPStan\PhpDoc\StubValidator($this->getService('073'), false); - } - - - public function createService041(): PHPStan\PhpDoc\CountableStubFilesExtension - { - return new PHPStan\PhpDoc\CountableStubFilesExtension(false); - } - - - public function createService042(): PHPStan\PhpDoc\SocketSelectStubFilesExtension - { - return new PHPStan\PhpDoc\SocketSelectStubFilesExtension($this->getService('024')); - } - - - public function createService043(): PHPStan\PhpDoc\DefaultStubFilesProvider - { - return new PHPStan\PhpDoc\DefaultStubFilesProvider( - $this->getService('071'), - [ - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionAttribute.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionClass.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionClassConstant.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionFunctionAbstract.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionMethod.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionParameter.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionProperty.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/iterable.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ArrayObject.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/WeakReference.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ext-ds.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ImagickPixel.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/PDOStatement.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/date.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ibm_db2.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/mysqli.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/zip.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/dom.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/spl.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/SplObjectStorage.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/Exception.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/arrayFunctions.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/core.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/typeCheckingFunctions.stub', - ], - ['/home/jordan/projects/knowledge'] - ); - } - - - public function createService044(): PHPStan\PhpDoc\JsonValidateStubFilesExtension - { - return new PHPStan\PhpDoc\JsonValidateStubFilesExtension($this->getService('024')); - } - - - public function createService045(): PHPStan\PhpDoc\ReflectionEnumStubFilesExtension - { - return new PHPStan\PhpDoc\ReflectionEnumStubFilesExtension($this->getService('024')); - } - - - public function createService046(): PHPStan\Analyser\Analyser - { - return new PHPStan\Analyser\Analyser( - $this->getService('048'), - $this->getService('registry'), - $this->getService('062'), - $this->getService('055'), - 50 - ); - } - - - public function createService047(): PHPStan\Analyser\AnalyserResultFinalizer - { - return new PHPStan\Analyser\AnalyserResultFinalizer( - $this->getService('registry'), - $this->getService('050'), - $this->getService('054'), - $this->getService('049'), - true - ); - } - - - public function createService048(): PHPStan\Analyser\FileAnalyser - { - return new PHPStan\Analyser\FileAnalyser( - $this->getService('054'), - $this->getService('055'), - $this->getService('defaultAnalysisParser'), - $this->getService('067'), - $this->getService('050'), - $this->getService('049') - ); - } - - - public function createService049(): PHPStan\Analyser\LocalIgnoresProcessor - { - return new PHPStan\Analyser\LocalIgnoresProcessor; - } - - - public function createService050(): PHPStan\Analyser\RuleErrorTransformer - { - return new PHPStan\Analyser\RuleErrorTransformer; - } - - - public function createService051(): PHPStan\Analyser\Ignore\IgnoredErrorHelper - { - return new PHPStan\Analyser\Ignore\IgnoredErrorHelper( - $this->getService('081'), - [ - [ - 'message' => '#^Cannot cast array\|bool\|string\|null to string\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeAddCommand.php', - ], - [ - 'message' => '#^Parameter \#1 \$entry of method App\\\Services\\\QdrantService\:\:upsert\(\) expects array\{id\: int\|string, title\: string, content\: string, tags\?\: array\, category\?\: string, module\?\: string, priority\?\: string, status\?\: string, \.\.\.\}, array\{title\: string, content\: non\-empty\-string, category\: \'architecture\'\|\'debugging\'\|\'deployment\'\|\'security\'\|\'testing\'\|null, module\: string\|null, priority\: \'critical\'\|\'high\'\|\'low\'\|\'medium\', confidence\: int, source\: string\|null, ticket\: string\|null, \.\.\.\} given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeAddCommand.php', - ], - [ - 'message' => '#^Variable \$tags in isset\(\) always exists and is not nullable\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchCommand.php', - ], - [ - 'message' => '#^Short ternary operator is not allowed\. Use null coalesce operator if applicable or consider using long ternary\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchStatusCommand.php', - ], - [ - 'message' => '#^Construct empty\(\) is not allowed\. Use more strict comparison\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - ], - [ - 'message' => '#^Only booleans are allowed in a negated boolean, array\\|int\|string\|null\>\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - ], - [ - 'message' => '#^Only booleans are allowed in an if condition, string\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - ], - [ - 'message' => '#^Parameter \#1 \$id of method App\\\Services\\\QdrantService\:\:getById\(\) expects int\|string, array\|bool\|string\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - ], - [ - 'message' => '#^Parameter \#1 \$id of method App\\\Services\\\QdrantService\:\:incrementUsage\(\) expects int\|string, array\|bool\|string\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - ], - [ - 'message' => '#^Parameter \#1 \$id of method App\\\Services\\\QdrantService\:\:getById\(\) expects int\|string, array\|bool\|string\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php', - ], - [ - 'message' => '#^Parameter \#1 \$id of method App\\\Services\\\QdrantService\:\:updateFields\(\) expects int\|string, array\|bool\|string\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php', - ], - [ - 'message' => '#^Part \$id \(array\|bool\|string\|null\) of encapsed string cannot be cast to string\.$#', - 'count' => 2, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php', - ], - [ - 'message' => '#^Method App\\\Commands\\\Service\\\StatusCommand\:\:getContainerStatus\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/Service/StatusCommand.php', - ], - [ - 'message' => '#^Method App\\\Commands\\\Service\\\StatusCommand\:\:performHealthChecks\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/Service/StatusCommand.php', - ], - [ - 'message' => '#^Method App\\\Commands\\\Service\\\StatusCommand\:\:renderDashboard\(\) has parameter \$containers with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/Service/StatusCommand.php', - ], - [ - 'message' => '#^Method App\\\Commands\\\Service\\\StatusCommand\:\:renderDashboard\(\) has parameter \$healthData with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/Service/StatusCommand.php', - ], - [ - 'message' => '#^Only booleans are allowed in a negated boolean, array\|bool\|string\|null given\.$#', - 'count' => 2, - 'path' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - ], - [ - 'message' => '#^Only booleans are allowed in an if condition, array\\|float\|int\|string\|null\>\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - ], - [ - 'message' => '#^Only booleans are allowed in an if condition, array\|bool\|string\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - ], - [ - 'message' => '#^Only booleans are allowed in an if condition, array\|string\|true given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - ], - [ - 'message' => '#^Variable \$allPayload on left side of \?\? always exists and is not nullable\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - ], - [ - 'message' => '#^Method App\\\Contracts\\\FullTextSearchInterface\:\:searchObservations\(\) has invalid return type App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Contracts/FullTextSearchInterface.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Observation in generic type Illuminate\\\Database\\\Eloquent\\\Collection\ in PHPDoc tag @return is not subtype of template type TModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Collection\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Contracts/FullTextSearchInterface.php', - ], - [ - 'message' => '#^Only booleans are allowed in an if condition, string\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/QdrantConnector.php', - ], - [ - 'message' => '#^Method App\\\Integrations\\\Qdrant\\\Requests\\\CreateCollection\:\:defaultBody\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/CreateCollection.php', - ], - [ - 'message' => '#^Method App\\\Integrations\\\Qdrant\\\Requests\\\DeletePoints\:\:defaultBody\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/DeletePoints.php', - ], - [ - 'message' => '#^Method App\\\Integrations\\\Qdrant\\\Requests\\\GetPoints\:\:defaultBody\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/GetPoints.php', - ], - [ - 'message' => '#^Method App\\\Integrations\\\Qdrant\\\Requests\\\SearchPoints\:\:defaultBody\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/SearchPoints.php', - ], - [ - 'message' => '#^Only booleans are allowed in an if condition, array\\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/SearchPoints.php', - ], - [ - 'message' => '#^Method App\\\Integrations\\\Qdrant\\\Requests\\\UpsertPoints\:\:defaultBody\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/UpsertPoints.php', - ], - [ - 'message' => '#^Class App\\\Models\\\Observation not found\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Session.php', - ], - [ - 'message' => '#^Method App\\\Models\\\Session\:\:observations\(\) has invalid return type App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Session.php', - ], - [ - 'message' => '#^Method App\\\Models\\\Session\:\:observations\(\) should return Illuminate\\\Database\\\Eloquent\\\Relations\\\HasMany\ but returns Illuminate\\\Database\\\Eloquent\\\Relations\\\HasMany\\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Session.php', - ], - [ - 'message' => '#^Parameter \#1 \$related of method Illuminate\\\Database\\\Eloquent\\\Model\:\:hasMany\(\) expects class\-string\, string given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Session.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Observation in generic type Illuminate\\\Database\\\Eloquent\\\Relations\\\HasMany\ in PHPDoc tag @return is not subtype of template type TRelatedModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Relations\\\HasMany\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Session.php', - ], - [ - 'message' => '#^Unable to resolve the template type TRelatedModel in call to method Illuminate\\\Database\\\Eloquent\\\Model\:\:hasMany\(\)$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Session.php', - ], - [ - 'message' => '#^Class App\\\Models\\\Entry not found\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Tag.php', - ], - [ - 'message' => '#^Method App\\\Models\\\Tag\:\:entries\(\) has invalid return type App\\\Models\\\Entry\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Tag.php', - ], - [ - 'message' => '#^Method App\\\Models\\\Tag\:\:entries\(\) should return Illuminate\\\Database\\\Eloquent\\\Relations\\\BelongsToMany\ but returns Illuminate\\\Database\\\Eloquent\\\Relations\\\BelongsToMany\\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Tag.php', - ], - [ - 'message' => '#^Parameter \#1 \$related of method Illuminate\\\Database\\\Eloquent\\\Model\:\:belongsToMany\(\) expects class\-string\, string given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Tag.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Entry in generic type Illuminate\\\Database\\\Eloquent\\\Relations\\\BelongsToMany\ in PHPDoc tag @return is not subtype of template type TRelatedModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Relations\\\BelongsToMany\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Tag.php', - ], - [ - 'message' => '#^Unable to resolve the template type TRelatedModel in call to method Illuminate\\\Database\\\Eloquent\\\Model\:\:belongsToMany\(\)$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Tag.php', - ], - [ - 'message' => '#^Class App\\\Services\\\ChromaDBIndexService not found\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Providers/AppServiceProvider.php', - ], - [ - 'message' => '#^Class App\\\Services\\\SemanticSearchService not found\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Providers/AppServiceProvider.php', - ], - [ - 'message' => '#^Instantiated class App\\\Services\\\ChromaDBIndexService not found\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Providers/AppServiceProvider.php', - ], - [ - 'message' => '#^Instantiated class App\\\Services\\\SemanticSearchService not found\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Providers/AppServiceProvider.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:analyzeIssue\(\) has parameter \$issue with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:analyzeIssue\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:buildTodoList\(\) has parameter \$analysis with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:buildTodoList\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:extractKeywords\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:gatherCodebaseContext\(\) has parameter \$issue with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:gatherCodebaseContext\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:groupFilesByChangeType\(\) has parameter \$files with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:groupFilesByChangeType\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:searchFiles\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:validateAndEnhanceAnalysis\(\) has parameter \$analysis with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:validateAndEnhanceAnalysis\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Construct empty\(\) is not allowed\. Use more strict comparison\.$#', - 'count' => 3, - 'path' => '/home/jordan/projects/knowledge/app/Services/MarkdownExporter.php', - ], - [ - 'message' => '#^Call to static method query\(\) on an unknown class App\\\Models\\\Observation\.$#', - 'count' => 3, - 'path' => '/home/jordan/projects/knowledge/app/Services/ObservationService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\ObservationService\:\:createObservation\(\) has invalid return type App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/ObservationService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\ObservationService\:\:getObservationsByType\(\) has invalid return type App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/ObservationService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\ObservationService\:\:getRecentObservations\(\) has invalid return type App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/ObservationService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\ObservationService\:\:searchObservations\(\) has invalid return type App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/ObservationService.php', - ], - [ - 'message' => '#^PHPDoc tag @var contains unknown class App\\\Models\\\Observation\.$#', - 'count' => 2, - 'path' => '/home/jordan/projects/knowledge/app/Services/ObservationService.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Observation in generic type Illuminate\\\Database\\\Eloquent\\\Collection\ in PHPDoc tag @return is not subtype of template type TModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Collection\.$#', - 'count' => 3, - 'path' => '/home/jordan/projects/knowledge/app/Services/ObservationService.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Observation in generic type Illuminate\\\Database\\\Eloquent\\\Collection\ in PHPDoc tag @var is not subtype of template type TModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Collection\.$#', - 'count' => 2, - 'path' => '/home/jordan/projects/knowledge/app/Services/ObservationService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:analyzeIssue\(\) has parameter \$codebaseContext with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:analyzeIssue\(\) has parameter \$issue with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:analyzeIssue\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:analyzeTestFailure\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:buildIssueAnalysisPrompt\(\) has parameter \$codebaseContext with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:buildIssueAnalysisPrompt\(\) has parameter \$issue with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:enhanceEntry\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:expandQuery\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:extractConcepts\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:extractTags\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:parseEnhancementResponse\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:parseIssueAnalysisResponse\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:suggestCodeChanges\(\) has parameter \$issue with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:suggestCodeChanges\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Construct empty\(\) is not allowed\. Use more strict comparison\.$#', - 'count' => 3, - 'path' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\QdrantService\:\:search\(\) should return Illuminate\\\Support\\\Collection\, category\: string\|null, module\: string\|null, priority\: string\|null, \.\.\.\}\> but returns Illuminate\\\Support\\\Collection\<\(int\|string\), array\{id\: mixed, score\: mixed, title\: mixed, content\: mixed, tags\: mixed, category\: mixed, module\: mixed, priority\: mixed, \.\.\.\}\>\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ], - [ - 'message' => '#^Only booleans are allowed in a negated boolean, mixed given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ], - [ - 'message' => '#^Parameter \#1 \$entry of method App\\\Services\\\QdrantService\:\:upsert\(\) expects array\{id\: int\|string, title\: string, content\: string, tags\?\: array\, category\?\: string, module\?\: string, priority\?\: string, status\?\: string, \.\.\.\}, array\{id\: int\|string, title\: string, content\: string, tags\: array\, category\: string\|null, module\: string\|null, priority\: string\|null, status\: string\|null, \.\.\.\} given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ], - [ - 'message' => '#^Parameter \#1 \$entry of method App\\\Services\\\QdrantService\:\:upsert\(\) expects array\{id\: int\|string, title\: string, content\: string, tags\?\: array\, category\?\: string, module\?\: string, priority\?\: string, status\?\: string, \.\.\.\}, non\-empty\-array\ given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ], - [ - 'message' => '#^Unable to resolve the template type TKey in call to function collect$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ], - [ - 'message' => '#^Unable to resolve the template type TValue in call to function collect$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ], - [ - 'message' => '#^Access to property \$id on an unknown class App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SQLiteFtsService.php', - ], - [ - 'message' => '#^Call to static method query\(\) on an unknown class App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SQLiteFtsService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\SQLiteFtsService\:\:searchObservations\(\) has invalid return type App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SQLiteFtsService.php', - ], - [ - 'message' => '#^PHPDoc tag @var for variable \$observations contains unknown class App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SQLiteFtsService.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Observation in generic type Illuminate\\\Database\\\Eloquent\\\Collection\ in PHPDoc tag @return is not subtype of template type TModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Collection\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SQLiteFtsService.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Observation in generic type Illuminate\\\Database\\\Eloquent\\\Collection\ in PHPDoc tag @var for variable \$observations is not subtype of template type TModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Collection\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SQLiteFtsService.php', - ], - [ - 'message' => '#^Dynamic call to static method Illuminate\\\Database\\\Eloquent\\\Builder\\:\:where\(\)\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SessionService.php', - ], - [ - 'message' => '#^Dynamic call to static method Illuminate\\\Database\\\Query\\\Builder\:\:orderBy\(\)\.$#', - 'count' => 2, - 'path' => '/home/jordan/projects/knowledge/app/Services/SessionService.php', - ], - [ - 'message' => '#^Dynamic call to static method Illuminate\\\Database\\\Query\\\Builder\:\:whereNull\(\)\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SessionService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\SessionService\:\:getSessionObservations\(\) has invalid return type App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SessionService.php', - ], - [ - 'message' => '#^PHPDoc tag @var contains unknown class App\\\Models\\\Observation\.$#', - 'count' => 2, - 'path' => '/home/jordan/projects/knowledge/app/Services/SessionService.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Observation in generic type Illuminate\\\Database\\\Eloquent\\\Collection\ in PHPDoc tag @return is not subtype of template type TModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Collection\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SessionService.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Observation in generic type Illuminate\\\Database\\\Eloquent\\\Collection\ in PHPDoc tag @var is not subtype of template type TModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Collection\.$#', - 'count' => 2, - 'path' => '/home/jordan/projects/knowledge/app/Services/SessionService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\StubFtsService\:\:searchObservations\(\) has invalid return type App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/StubFtsService.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Observation in generic type Illuminate\\\Database\\\Eloquent\\\Collection\ in PHPDoc tag @return is not subtype of template type TModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Collection\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/StubFtsService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:execute\(\) has parameter \$issue with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:execute\(\) has parameter \$todos with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:execute\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:executeImplementation\(\) has parameter \$issue with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:executeImplementation\(\) has parameter \$todo with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:executeImplementation\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:executeQuality\(\) has parameter \$todo with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:executeQuality\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:executeTest\(\) has parameter \$issue with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:executeTest\(\) has parameter \$todo with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:executeTest\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:getCompletedTodos\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:getFailedTodos\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Property App\\\Services\\\TodoExecutorService\:\:\$completedTodos type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Property App\\\Services\\\TodoExecutorService\:\:\$failedTodos type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#does not specify its types: TFactory#', - 'paths' => ['/home/jordan/projects/knowledge/app/Models/*'], - ], - [ - 'message' => '#Only booleans are allowed in (an if condition|&&)#', - 'paths' => ['/home/jordan/projects/knowledge/app/Services/*'], - ], - ], - true - ); - } - - - public function createService052(): PHPStan\Analyser\Ignore\IgnoreLexer - { - return new PHPStan\Analyser\Ignore\IgnoreLexer; - } - - - public function createService053(): PHPStan\Analyser\LazyInternalScopeFactory - { - return new PHPStan\Analyser\LazyInternalScopeFactory('PHPStan\Analyser\MutatingScope', $this->getService('071')); - } - - - public function createService054(): PHPStan\Analyser\ScopeFactory - { - return new PHPStan\Analyser\ScopeFactory($this->getService('053')); - } - - - public function createService055(): PHPStan\Analyser\NodeScopeResolver - { - return new PHPStan\Analyser\NodeScopeResolver( - $this->getService('reflectionProvider'), - $this->getService('092'), - $this->getService('nodeScopeResolverReflector'), - $this->getService('074'), - $this->getService('076'), - $this->getService('defaultAnalysisParser'), - $this->getService('0172'), - $this->getService('stubPhpDocProvider'), - $this->getService('024'), - $this->getService('0120'), - $this->getService('033'), - $this->getService('081'), - $this->getService('typeSpecifier'), - $this->getService('079'), - $this->getService('0165'), - $this->getService('080'), - $this->getService('054'), - false, - false, - [], - [], - ['stdClass', 'Pest\Support\HigherOrderTapProxy', 'Pest\Expectation'], - true, - false, - false, - false, - false, - false - ); - } - - - public function createService056(): PHPStan\Analyser\ConstantResolver - { - return $this->getService('057')->create(); - } - - - public function createService057(): PHPStan\Analyser\ConstantResolverFactory - { - return new PHPStan\Analyser\ConstantResolverFactory($this->getService('0114'), $this->getService('071')); - } - - - public function createService058(): PHPStan\Analyser\ResultCache\ResultCacheManagerFactory - { - return new class ($this) implements PHPStan\Analyser\ResultCache\ResultCacheManagerFactory { - private $container; - - - public function __construct(Container_2c8b00828e $container) - { - $this->container = $container; - } - - - public function create(array $fileReplacements): PHPStan\Analyser\ResultCache\ResultCacheManager - { - return new PHPStan\Analyser\ResultCache\ResultCacheManager( - $this->container->getService('068'), - $this->container->getService('fileFinderScan'), - $this->container->getService('reflectionProvider'), - $this->container->getService('043'), - $this->container->getService('081'), - '/home/jordan/projects/knowledge/var/cache/phpstan/resultCache.php', - $this->container->getParameter('analysedPaths'), - $this->container->getParameter('analysedPathsFromConfig'), - ['/home/jordan/projects/knowledge'], - '8', - null, - [ - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionUnionType.php', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionAttribute.php', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/Attribute.php', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionIntersectionType.php', - ], - [], - [], - $fileReplacements, - false - ); - } - }; - } - - - public function createService059(): PHPStan\Analyser\ResultCache\ResultCacheClearer - { - return new PHPStan\Analyser\ResultCache\ResultCacheClearer('/home/jordan/projects/knowledge/var/cache/phpstan/resultCache.php'); - } - - - public function createService060(): PHPStan\Analyser\RicherScopeGetTypeHelper - { - return new PHPStan\Analyser\RicherScopeGetTypeHelper($this->getService('092')); - } - - - public function createService061(): PHPStan\Cache\Cache - { - return new PHPStan\Cache\Cache($this->getService('cacheStorage')); - } - - - public function createService062(): PHPStan\Collectors\Registry - { - return $this->getService('063')->create(); - } - - - public function createService063(): PHPStan\Collectors\RegistryFactory - { - return new PHPStan\Collectors\RegistryFactory($this->getService('071')); - } - - - public function createService064(): PHPStan\Command\AnalyseApplication - { - return new PHPStan\Command\AnalyseApplication( - $this->getService('065'), - $this->getService('047'), - $this->getService('040'), - $this->getService('058'), - $this->getService('051'), - $this->getService('043') - ); - } - - - public function createService065(): PHPStan\Command\AnalyserRunner - { - return new PHPStan\Command\AnalyserRunner( - $this->getService('088'), - $this->getService('046'), - $this->getService('087'), - $this->getService('090') - ); - } - - - public function createService066(): PHPStan\Command\FixerApplication - { - return new PHPStan\Command\FixerApplication( - $this->getService('084'), - $this->getService('051'), - $this->getService('043'), - $this->getParameter('analysedPaths'), - '/home/jordan/projects/knowledge', - ($this->getParameter('sysGetTempDir')) . '/phpstan-fixer', - ['1.1.1.2'], - ['/home/jordan/projects/knowledge'], - [ - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/parametersSchema.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level8.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level7.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level6.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level5.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level4.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level3.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level2.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level1.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level0.neon', - '/home/jordan/projects/knowledge/vendor/nesbot/carbon/extension.neon', - '/home/jordan/projects/knowledge/vendor/pestphp/pest/extension.neon', - '/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/rules.neon', - '/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/rules.neon', - '/home/jordan/projects/knowledge/phpstan.neon', - '/home/jordan/projects/knowledge/phpstan-baseline.neon', - ], - null, - [ - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionUnionType.php', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionAttribute.php', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/Attribute.php', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionIntersectionType.php', - ], - null, - '8' - ); - } - - - public function createService067(): PHPStan\Dependency\DependencyResolver - { - return new PHPStan\Dependency\DependencyResolver( - $this->getService('081'), - $this->getService('reflectionProvider'), - $this->getService('069'), - $this->getService('0172') - ); - } - - - public function createService068(): PHPStan\Dependency\ExportedNodeFetcher - { - return new PHPStan\Dependency\ExportedNodeFetcher($this->getService('defaultAnalysisParser'), $this->getService('070')); - } - - - public function createService069(): PHPStan\Dependency\ExportedNodeResolver - { - return new PHPStan\Dependency\ExportedNodeResolver($this->getService('0172'), $this->getService('021')); - } - - - public function createService070(): PHPStan\Dependency\ExportedNodeVisitor - { - return new PHPStan\Dependency\ExportedNodeVisitor($this->getService('069')); - } - - - public function createService071(): PHPStan\DependencyInjection\Container - { - return new PHPStan\DependencyInjection\MemoizingContainer($this->getService('072')); - } - - - public function createService072(): PHPStan\DependencyInjection\Nette\NetteContainer - { - return new PHPStan\DependencyInjection\Nette\NetteContainer($this); - } - - - public function createService073(): PHPStan\DependencyInjection\DerivativeContainerFactory - { - return new PHPStan\DependencyInjection\DerivativeContainerFactory( - '/home/jordan/projects/knowledge', - '/home/jordan/projects/knowledge/var/cache/phpstan', - [ - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level8.neon', - '/home/jordan/projects/knowledge/vendor/phpstan/extension-installer/src/../../../nesbot/carbon/extension.neon', - '/home/jordan/projects/knowledge/vendor/phpstan/extension-installer/src/../../../pestphp/pest/extension.neon', - '/home/jordan/projects/knowledge/vendor/phpstan/extension-installer/src/../../phpstan-deprecation-rules/rules.neon', - '/home/jordan/projects/knowledge/vendor/phpstan/extension-installer/src/../../phpstan-strict-rules/rules.neon', - '/home/jordan/projects/knowledge/phpstan.neon', - ], - $this->getParameter('analysedPaths'), - ['/home/jordan/projects/knowledge'], - $this->getParameter('analysedPathsFromConfig'), - '8', - null, - null, - $this->getParameter('singleReflectionFile'), - $this->getParameter('singleReflectionInsteadOfFile') - ); - } - - - public function createService074(): PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider - { - return new PHPStan\DependencyInjection\Reflection\LazyClassReflectionExtensionRegistryProvider($this->getService('071')); - } - - - public function createService075(): PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider - { - return new PHPStan\DependencyInjection\Type\LazyDynamicReturnTypeExtensionRegistryProvider($this->getService('071')); - } - - - public function createService076(): PHPStan\DependencyInjection\Type\ParameterOutTypeExtensionProvider - { - return new PHPStan\DependencyInjection\Type\LazyParameterOutTypeExtensionProvider($this->getService('071')); - } - - - public function createService077(): PHPStan\DependencyInjection\Type\ExpressionTypeResolverExtensionRegistryProvider - { - return new PHPStan\DependencyInjection\Type\LazyExpressionTypeResolverExtensionRegistryProvider($this->getService('071')); - } - - - public function createService078(): PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider - { - return new PHPStan\DependencyInjection\Type\LazyOperatorTypeSpecifyingExtensionRegistryProvider($this->getService('071')); - } - - - public function createService079(): PHPStan\DependencyInjection\Type\DynamicThrowTypeExtensionProvider - { - return new PHPStan\DependencyInjection\Type\LazyDynamicThrowTypeExtensionProvider($this->getService('071')); - } - - - public function createService080(): PHPStan\DependencyInjection\Type\ParameterClosureTypeExtensionProvider - { - return new PHPStan\DependencyInjection\Type\LazyParameterClosureTypeExtensionProvider($this->getService('071')); - } - - - public function createService081(): PHPStan\File\FileHelper - { - return new PHPStan\File\FileHelper('/home/jordan/projects/knowledge'); - } - - - public function createService082(): PHPStan\File\FileExcluderFactory - { - return new PHPStan\File\FileExcluderFactory($this->getService('083'), [], null); - } - - - public function createService083(): PHPStan\File\FileExcluderRawFactory - { - return new class ($this) implements PHPStan\File\FileExcluderRawFactory { - private $container; - - - public function __construct(Container_2c8b00828e $container) - { - $this->container = $container; - } - - - public function create(array $analyseExcludes): PHPStan\File\FileExcluder - { - return new PHPStan\File\FileExcluder($this->container->getService('081'), $analyseExcludes, false); - } - }; - } - - - public function createService084(): PHPStan\File\FileMonitor - { - return new PHPStan\File\FileMonitor( - $this->getService('fileFinderAnalyse'), - $this->getService('fileFinderScan'), - $this->getParameter('analysedPaths'), - $this->getParameter('analysedPathsFromConfig'), - [], - [] - ); - } - - - public function createService085(): PHPStan\Parser\DeclarePositionVisitor - { - return new PHPStan\Parser\DeclarePositionVisitor; - } - - - public function createService086(): PHPStan\Parser\ImmediatelyInvokedClosureVisitor - { - return new PHPStan\Parser\ImmediatelyInvokedClosureVisitor; - } - - - public function createService087(): PHPStan\Parallel\ParallelAnalyser - { - return new PHPStan\Parallel\ParallelAnalyser(50, 600.0, 134217728); - } - - - public function createService088(): PHPStan\Parallel\Scheduler - { - return new PHPStan\Parallel\Scheduler(20, 1, 2); - } - - - public function createService089(): PHPStan\Parser\FunctionCallStatementFinder - { - return new PHPStan\Parser\FunctionCallStatementFinder; - } - - - public function createService090(): PHPStan\Process\CpuCoreCounter - { - return new PHPStan\Process\CpuCoreCounter; - } - - - public function createService091(): PHPStan\Reflection\FunctionReflectionFactory - { - return new class ($this) implements PHPStan\Reflection\FunctionReflectionFactory { - private $container; - - - public function __construct(Container_2c8b00828e $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, - bool $isFinal, - ?string $filename, - ?bool $isPure, - PHPStan\Reflection\Assertions $asserts, - bool $acceptsNamedArguments, - ?string $phpDocComment, - array $phpDocParameterOutTypes, - array $phpDocParameterImmediatelyInvokedCallable, - array $phpDocParameterClosureThisTypes - ): PHPStan\Reflection\Php\PhpFunctionReflection { - return new PHPStan\Reflection\Php\PhpFunctionReflection( - $this->container->getService('092'), - $reflection, - $this->container->getService('defaultAnalysisParser'), - $this->container->getService('089'), - $this->container->getService('061'), - $templateTypeMap, - $phpDocParameterTypes, - $phpDocReturnType, - $phpDocThrowType, - $deprecatedDescription, - $isDeprecated, - $isInternal, - $isFinal, - $filename, - $isPure, - $asserts, - $acceptsNamedArguments, - $phpDocComment, - $phpDocParameterOutTypes, - $phpDocParameterImmediatelyInvokedCallable, - $phpDocParameterClosureThisTypes - ); - } - }; - } - - - public function createService092(): PHPStan\Reflection\InitializerExprTypeResolver - { - return new PHPStan\Reflection\InitializerExprTypeResolver( - $this->getService('056'), - $this->getService('0114'), - $this->getService('024'), - $this->getService('078'), - $this->getService('0344'), - false - ); - } - - - public function createService093(): PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension - { - return new PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension; - } - - - public function createService094(): PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension - { - return new PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension; - } - - - public function createService095(): PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor; - } - - - public function createService096(): PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher( - $this->getService('095'), - $this->getService('defaultAnalysisParser') - ); - } - - - public function createService097(): PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker( - $this->getService('099'), - $this->getService('0100'), - $this->getService('098'), - $this->getService('024') - ); - } - - - public function createService098(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory( - $this->getService('096'), - $this->getService('fileFinderScan'), - $this->getService('024'), - $this->getService('061') - ); - } - - - public function createService099(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository($this->getService('098')); - } - - - public function createService0100(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory - { - return new class ($this) implements PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory { - private $container; - - - public function __construct(Container_2c8b00828e $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('0102')); - } - }; - } - - - public function createService0101(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory - { - return new class ($this) implements PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory { - private $container; - - - public function __construct(Container_2c8b00828e $container) - { - $this->container = $container; - } - - - public function create(string $fileName): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator( - $this->container->getService('096'), - $fileName - ); - } - }; - } - - - public function createService0102(): PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository - { - return new PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository($this->getService('0101')); - } - - - public function createService0103(): PHPStan\Reflection\RequireExtension\RequireExtendsMethodsClassReflectionExtension - { - return new PHPStan\Reflection\RequireExtension\RequireExtendsMethodsClassReflectionExtension; - } - - - public function createService0104(): PHPStan\Reflection\RequireExtension\RequireExtendsPropertiesClassReflectionExtension - { - return new PHPStan\Reflection\RequireExtension\RequireExtendsPropertiesClassReflectionExtension; - } - - - public function createService0105(): PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension - { - return new PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension([]); - } - - - public function createService0106(): PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension - { - return new PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension([]); - } - - - public function createService0107(): PHPStan\Reflection\Php\PhpClassReflectionExtension - { - return new PHPStan\Reflection\Php\PhpClassReflectionExtension( - $this->getService('054'), - $this->getService('055'), - $this->getService('0108'), - $this->getService('033'), - $this->getService('093'), - $this->getService('094'), - $this->getService('0120'), - $this->getService('defaultAnalysisParser'), - $this->getService('stubPhpDocProvider'), - $this->getService('0114'), - $this->getService('0172'), - false - ); - } - - - public function createService0108(): PHPStan\Reflection\Php\PhpMethodReflectionFactory - { - return new class ($this) implements PHPStan\Reflection\Php\PhpMethodReflectionFactory { - private $container; - - - public function __construct(Container_2c8b00828e $container) - { - $this->container = $container; - } - - - public function create( - PHPStan\Reflection\ClassReflection $declaringClass, - ?PHPStan\Reflection\ClassReflection $declaringTrait, - PHPStan\Reflection\Php\BuiltinMethodReflection $reflection, - PHPStan\Type\Generic\TemplateTypeMap $templateTypeMap, - array $phpDocParameterTypes, - ?PHPStan\Type\Type $phpDocReturnType, - ?PHPStan\Type\Type $phpDocThrowType, - ?string $deprecatedDescription, - bool $isDeprecated, - bool $isInternal, - bool $isFinal, - ?bool $isPure, - PHPStan\Reflection\Assertions $asserts, - ?PHPStan\Type\Type $selfOutType, - ?string $phpDocComment, - array $phpDocParameterOutTypes, - array $immediatelyInvokedCallableParameters = [], - array $phpDocClosureThisTypeParameters = [], - bool $acceptsNamedArguments = true - ): PHPStan\Reflection\Php\PhpMethodReflection { - return new PHPStan\Reflection\Php\PhpMethodReflection( - $this->container->getService('092'), - $declaringClass, - $declaringTrait, - $reflection, - $this->container->getService('reflectionProvider'), - $this->container->getService('defaultAnalysisParser'), - $this->container->getService('089'), - $this->container->getService('061'), - $templateTypeMap, - $phpDocParameterTypes, - $phpDocReturnType, - $phpDocThrowType, - $deprecatedDescription, - $isDeprecated, - $isInternal, - $isFinal, - $isPure, - $asserts, - $acceptsNamedArguments, - $selfOutType, - $phpDocComment, - $phpDocParameterOutTypes, - $immediatelyInvokedCallableParameters, - $phpDocClosureThisTypeParameters - ); - } - }; - } - - - public function createService0109(): PHPStan\Reflection\Php\Soap\SoapClientMethodsClassReflectionExtension - { - return new PHPStan\Reflection\Php\Soap\SoapClientMethodsClassReflectionExtension; - } - - - public function createService0110(): PHPStan\Reflection\Php\EnumAllowedSubTypesClassReflectionExtension - { - return new PHPStan\Reflection\Php\EnumAllowedSubTypesClassReflectionExtension; - } - - - public function createService0111(): PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension - { - return new PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension( - $this->getService('reflectionProvider'), - ['stdClass', 'Pest\Support\HigherOrderTapProxy', 'Pest\Expectation'], - $this->getService('094') - ); - } - - - public function createService0112(): PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension - { - return new PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension( - $this->getService('024'), - 'PHPStan\Reflection\ClassReflection', - 'getNativeReflection' - ); - } - - - public function createService0113(): PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension - { - return new PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension( - $this->getService('024'), - 'PHPStan\Reflection\Php\BuiltinMethodReflection', - 'getDeclaringClass' - ); - } - - - public function createService0114(): PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider - { - return new PHPStan\Reflection\ReflectionProvider\LazyReflectionProviderProvider($this->getService('071')); - } - - - public function createService0115(): PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider - { - return new PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider( - $this->getService('0120'), - $this->getService('betterReflectionReflector'), - $this->getService('0172'), - $this->getService('stubPhpDocProvider') - ); - } - - - public function createService0116(): PHPStan\Reflection\SignatureMap\SignatureMapParser - { - return new PHPStan\Reflection\SignatureMap\SignatureMapParser($this->getService('039')); - } - - - public function createService0117(): PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider - { - return new PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider( - $this->getService('0116'), - $this->getService('092'), - $this->getService('024'), - false - ); - } - - - public function createService0118(): PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider - { - return new PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider( - $this->getService('0117'), - $this->getService('096'), - $this->getService('0172'), - $this->getService('024'), - $this->getService('092'), - $this->getService('0114') - ); - } - - - public function createService0119(): PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory - { - return new PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory( - $this->getService('024'), - $this->getService('0117'), - $this->getService('0118') - ); - } - - - public function createService0120(): PHPStan\Reflection\SignatureMap\SignatureMapProvider - { - return $this->getService('0119')->create(); - } - - - public function createService0121(): PHPStan\Rules\Api\ApiRuleHelper - { - return new PHPStan\Rules\Api\ApiRuleHelper; - } - - - public function createService0122(): PHPStan\Rules\AttributesCheck - { - return new PHPStan\Rules\AttributesCheck( - $this->getService('reflectionProvider'), - $this->getService('0140'), - $this->getService('0124'), - true - ); - } - - - public function createService0123(): PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck - { - return new PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck($this->getService('0169'), true, false, false, false); - } - - - public function createService0124(): PHPStan\Rules\ClassNameCheck - { - return new PHPStan\Rules\ClassNameCheck($this->getService('0125'), $this->getService('0126')); - } - - - public function createService0125(): PHPStan\Rules\ClassCaseSensitivityCheck - { - return new PHPStan\Rules\ClassCaseSensitivityCheck($this->getService('reflectionProvider'), true); - } - - - public function createService0126(): PHPStan\Rules\ClassForbiddenNameCheck - { - return new PHPStan\Rules\ClassForbiddenNameCheck($this->getService('071')); - } - - - public function createService0127(): PHPStan\Rules\Classes\LocalTypeAliasesCheck - { - return new PHPStan\Rules\Classes\LocalTypeAliasesCheck( - [], - $this->getService('reflectionProvider'), - $this->getService('037'), - $this->getService('0155'), - $this->getService('0124'), - $this->getService('0161'), - $this->getService('0146'), - true, - true, - false - ); - } - - - public function createService0128(): PHPStan\Rules\Classes\MethodTagCheck - { - return new PHPStan\Rules\Classes\MethodTagCheck( - $this->getService('reflectionProvider'), - $this->getService('0124'), - $this->getService('0146'), - $this->getService('0155'), - $this->getService('0161'), - true, - true - ); - } - - - public function createService0129(): PHPStan\Rules\Classes\MixinCheck - { - return new PHPStan\Rules\Classes\MixinCheck( - $this->getService('reflectionProvider'), - $this->getService('0124'), - $this->getService('0146'), - $this->getService('0155'), - $this->getService('0161'), - true, - false, - true - ); - } - - - public function createService0130(): PHPStan\Rules\Classes\PropertyTagCheck - { - return new PHPStan\Rules\Classes\PropertyTagCheck( - $this->getService('reflectionProvider'), - $this->getService('0124'), - $this->getService('0146'), - $this->getService('0155'), - $this->getService('0161'), - true, - true - ); - } - - - public function createService0131(): PHPStan\Rules\Comparison\ConstantConditionRuleHelper - { - return new PHPStan\Rules\Comparison\ConstantConditionRuleHelper($this->getService('0132'), false, false); - } - - - public function createService0132(): PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper - { - return new PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper( - $this->getService('reflectionProvider'), - $this->getService('typeSpecifier'), - ['stdClass', 'Pest\Support\HigherOrderTapProxy', 'Pest\Expectation'], - false, - false - ); - } - - - public function createService0133(): PHPStan\Rules\Exceptions\DefaultExceptionTypeResolver - { - return new PHPStan\Rules\Exceptions\DefaultExceptionTypeResolver($this->getService('reflectionProvider'), [], [], [], []); - } - - - public function createService0134(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule - { - return new PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule($this->getService('0136')); - } - - - public function createService0135(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule - { - return new PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule($this->getService('0136')); - } - - - public function createService0136(): PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck - { - return new PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck($this->getService('exceptionTypeResolver')); - } - - - public function createService0137(): PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule - { - return new PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule($this->getService('0139')); - } - - - public function createService0138(): PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule - { - return new PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule($this->getService('0172'), $this->getService('0139')); - } - - - public function createService0139(): PHPStan\Rules\Exceptions\TooWideThrowTypeCheck - { - return new PHPStan\Rules\Exceptions\TooWideThrowTypeCheck; - } - - - public function createService0140(): PHPStan\Rules\FunctionCallParametersCheck - { - return new PHPStan\Rules\FunctionCallParametersCheck( - $this->getService('0169'), - $this->getService('0156'), - $this->getService('024'), - $this->getService('0161'), - $this->getService('0167'), - true, - true, - true, - true, - false - ); - } - - - public function createService0141(): PHPStan\Rules\FunctionDefinitionCheck - { - return new PHPStan\Rules\FunctionDefinitionCheck( - $this->getService('reflectionProvider'), - $this->getService('0124'), - $this->getService('0161'), - $this->getService('024'), - true, - false, - false - ); - } - - - public function createService0142(): PHPStan\Rules\FunctionReturnTypeCheck - { - return new PHPStan\Rules\FunctionReturnTypeCheck($this->getService('0169')); - } - - - public function createService0143(): PHPStan\Rules\ParameterCastableToStringCheck - { - return new PHPStan\Rules\ParameterCastableToStringCheck($this->getService('0169')); - } - - - public function createService0144(): PHPStan\Rules\Generics\CrossCheckInterfacesHelper - { - return new PHPStan\Rules\Generics\CrossCheckInterfacesHelper; - } - - - public function createService0145(): PHPStan\Rules\Generics\GenericAncestorsCheck - { - return new PHPStan\Rules\Generics\GenericAncestorsCheck( - $this->getService('reflectionProvider'), - $this->getService('0146'), - $this->getService('0149'), - $this->getService('0161'), - true, - [ - 'DatePeriod', - 'CallbackFilterIterator', - 'FilterIterator', - 'RecursiveCallbackFilterIterator', - 'AppendIterator', - 'NoRewindIterator', - 'LimitIterator', - 'InfiniteIterator', - 'CachingIterator', - 'RegexIterator', - 'ReflectionEnum', - ], - false - ); - } - - - public function createService0146(): PHPStan\Rules\Generics\GenericObjectTypeCheck - { - return new PHPStan\Rules\Generics\GenericObjectTypeCheck; - } - - - public function createService0147(): PHPStan\Rules\Generics\MethodTagTemplateTypeCheck - { - return new PHPStan\Rules\Generics\MethodTagTemplateTypeCheck($this->getService('0172'), $this->getService('0148')); - } - - - public function createService0148(): PHPStan\Rules\Generics\TemplateTypeCheck - { - return new PHPStan\Rules\Generics\TemplateTypeCheck( - $this->getService('reflectionProvider'), - $this->getService('0124'), - $this->getService('0146'), - $this->getService('0173'), - true - ); - } - - - public function createService0149(): PHPStan\Rules\Generics\VarianceCheck - { - return new PHPStan\Rules\Generics\VarianceCheck(false, false); - } - - - public function createService0150(): PHPStan\Rules\IssetCheck - { - return new PHPStan\Rules\IssetCheck($this->getService('0166'), $this->getService('0167'), true, false, false); - } - - - public function createService0151(): PHPStan\Rules\Methods\MethodCallCheck - { - return new PHPStan\Rules\Methods\MethodCallCheck($this->getService('reflectionProvider'), $this->getService('0169'), true, true); - } - - - public function createService0152(): PHPStan\Rules\Methods\StaticMethodCallCheck - { - return new PHPStan\Rules\Methods\StaticMethodCallCheck( - $this->getService('reflectionProvider'), - $this->getService('0169'), - $this->getService('0124'), - true, - true - ); - } - - - public function createService0153(): PHPStan\Rules\Methods\MethodSignatureRule - { - return new PHPStan\Rules\Methods\MethodSignatureRule($this->getService('0107'), true, true, false); - } - - - public function createService0154(): PHPStan\Rules\Methods\MethodParameterComparisonHelper - { - return new PHPStan\Rules\Methods\MethodParameterComparisonHelper($this->getService('024'), false); - } - - - public function createService0155(): PHPStan\Rules\MissingTypehintCheck - { - return new PHPStan\Rules\MissingTypehintCheck( - false, - true, - true, - false, - [ - 'DatePeriod', - 'CallbackFilterIterator', - 'FilterIterator', - 'RecursiveCallbackFilterIterator', - 'AppendIterator', - 'NoRewindIterator', - 'LimitIterator', - 'InfiniteIterator', - 'CachingIterator', - 'RegexIterator', - 'ReflectionEnum', - ] - ); - } - - - public function createService0156(): PHPStan\Rules\NullsafeCheck - { - return new PHPStan\Rules\NullsafeCheck; - } - - - public function createService0157(): PHPStan\Rules\Constants\LazyAlwaysUsedClassConstantsExtensionProvider - { - return new PHPStan\Rules\Constants\LazyAlwaysUsedClassConstantsExtensionProvider($this->getService('071')); - } - - - public function createService0158(): PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider - { - return new PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider($this->getService('071')); - } - - - public function createService0159(): PHPStan\Rules\PhpDoc\ConditionalReturnTypeRuleHelper - { - return new PHPStan\Rules\PhpDoc\ConditionalReturnTypeRuleHelper; - } - - - public function createService0160(): PHPStan\Rules\PhpDoc\AssertRuleHelper - { - return new PHPStan\Rules\PhpDoc\AssertRuleHelper( - $this->getService('092'), - $this->getService('reflectionProvider'), - $this->getService('0161'), - $this->getService('0124'), - $this->getService('0155'), - $this->getService('0146'), - false, - true, - true - ); - } - - - public function createService0161(): PHPStan\Rules\PhpDoc\UnresolvableTypeHelper - { - return new PHPStan\Rules\PhpDoc\UnresolvableTypeHelper; - } - - - public function createService0162(): PHPStan\Rules\PhpDoc\GenericCallableRuleHelper - { - return new PHPStan\Rules\PhpDoc\GenericCallableRuleHelper($this->getService('0148')); - } - - - public function createService0163(): PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper - { - return new PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper($this->getService('037'), $this->getService('0172'), false, false); - } - - - public function createService0164(): PHPStan\Rules\Playground\NeverRuleHelper - { - return new PHPStan\Rules\Playground\NeverRuleHelper; - } - - - public function createService0165(): PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider - { - return new PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider($this->getService('071')); - } - - - public function createService0166(): PHPStan\Rules\Properties\PropertyDescriptor - { - return new PHPStan\Rules\Properties\PropertyDescriptor; - } - - - public function createService0167(): PHPStan\Rules\Properties\PropertyReflectionFinder - { - return new PHPStan\Rules\Properties\PropertyReflectionFinder; - } - - - public function createService0168(): PHPStan\Rules\Pure\FunctionPurityCheck - { - return new PHPStan\Rules\Pure\FunctionPurityCheck; - } - - - public function createService0169(): PHPStan\Rules\RuleLevelHelper - { - return new PHPStan\Rules\RuleLevelHelper($this->getService('reflectionProvider'), true, false, true, false, false, false, false); - } - - - public function createService0170(): PHPStan\Rules\UnusedFunctionParametersCheck - { - return new PHPStan\Rules\UnusedFunctionParametersCheck($this->getService('reflectionProvider')); - } - - - public function createService0171(): PHPStan\Rules\TooWideTypehints\TooWideParameterOutTypeCheck - { - return new PHPStan\Rules\TooWideTypehints\TooWideParameterOutTypeCheck; - } - - - public function createService0172(): PHPStan\Type\FileTypeMapper - { - return new PHPStan\Type\FileTypeMapper( - $this->getService('0114'), - $this->getService('defaultAnalysisParser'), - $this->getService('035'), - $this->getService('034'), - $this->getService('023'), - $this->getService('081') - ); - } - - - public function createService0173(): PHPStan\Type\TypeAliasResolver - { - return new PHPStan\Type\UsefulTypeAliasResolver( - [], - $this->getService('039'), - $this->getService('037'), - $this->getService('reflectionProvider') - ); - } - - - public function createService0174(): PHPStan\Type\TypeAliasResolverProvider - { - return new PHPStan\Type\LazyTypeAliasResolverProvider($this->getService('071')); - } - - - public function createService0175(): PHPStan\Type\BitwiseFlagHelper - { - return new PHPStan\Type\BitwiseFlagHelper($this->getService('reflectionProvider')); - } - - - public function createService0176(): PHPStan\Type\Php\AbsFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\AbsFunctionDynamicReturnTypeExtension; - } - - - public function createService0177(): PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension; - } - - - public function createService0178(): PHPStan\Type\Php\ArrayChangeKeyCaseFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayChangeKeyCaseFunctionReturnTypeExtension; - } - - - public function createService0179(): PHPStan\Type\Php\ArrayIntersectKeyFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayIntersectKeyFunctionReturnTypeExtension($this->getService('024')); - } - - - public function createService0180(): PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension($this->getService('024')); - } - - - public function createService0181(): PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension($this->getService('024')); - } - - - public function createService0182(): PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension($this->getService('024')); - } - - - public function createService0183(): PHPStan\Type\Php\ArrayCurrentDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayCurrentDynamicReturnTypeExtension; - } - - - public function createService0184(): PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension($this->getService('024')); - } - - - public function createService0185(): PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension($this->getService('024')); - } - - - public function createService0186(): PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper - { - return new PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper($this->getService('reflectionProvider')); - } - - - public function createService0187(): PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension($this->getService('0186')); - } - - - public function createService0188(): PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension($this->getService('024')); - } - - - public function createService0189(): PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension($this->getService('0186')); - } - - - public function createService0190(): PHPStan\Type\Php\ArrayFindKeyFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayFindKeyFunctionReturnTypeExtension; - } - - - public function createService0191(): PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension; - } - - - public function createService0192(): PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension; - } - - - public function createService0193(): PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension; - } - - - public function createService0194(): PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension; - } - - - public function createService0195(): PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension($this->getService('024')); - } - - - public function createService0196(): PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension; - } - - - public function createService0197(): PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension; - } - - - public function createService0198(): PHPStan\Type\Php\ArrayNextDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayNextDynamicReturnTypeExtension; - } - - - public function createService0199(): PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension; - } - - - public function createService0200(): PHPStan\Type\Php\ArrayRandFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayRandFunctionReturnTypeExtension; - } - - - public function createService0201(): PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension; - } - - - public function createService0202(): PHPStan\Type\Php\ArrayReplaceFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayReplaceFunctionReturnTypeExtension; - } - - - public function createService0203(): PHPStan\Type\Php\ArrayReverseFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayReverseFunctionReturnTypeExtension($this->getService('024')); - } - - - public function createService0204(): PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension; - } - - - public function createService0205(): PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension($this->getService('024')); - } - - - public function createService0206(): PHPStan\Type\Php\ArraySpliceFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ArraySpliceFunctionReturnTypeExtension; - } - - - public function createService0207(): PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension($this->getService('024')); - } - - - public function createService0208(): PHPStan\Type\Php\ArraySearchFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\ArraySearchFunctionTypeSpecifyingExtension; - } - - - public function createService0209(): PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension($this->getService('024')); - } - - - public function createService0210(): PHPStan\Type\Php\ArraySumFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArraySumFunctionDynamicReturnTypeExtension; - } - - - public function createService0211(): PHPStan\Type\Php\AssertThrowTypeExtension - { - return new PHPStan\Type\Php\AssertThrowTypeExtension; - } - - - public function createService0212(): PHPStan\Type\Php\BackedEnumFromMethodDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\BackedEnumFromMethodDynamicReturnTypeExtension; - } - - - public function createService0213(): PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension; - } - - - public function createService0214(): PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension - { - return new PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension($this->getService('024')); - } - - - public function createService0215(): PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension; - } - - - public function createService0216(): PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension; - } - - - public function createService0217(): PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension; - } - - - public function createService0218(): PHPStan\Type\Php\CompactFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\CompactFunctionReturnTypeExtension(true); - } - - - public function createService0219(): PHPStan\Type\Php\ConstantFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ConstantFunctionReturnTypeExtension($this->getService('0220')); - } - - - public function createService0220(): PHPStan\Type\Php\ConstantHelper - { - return new PHPStan\Type\Php\ConstantHelper; - } - - - public function createService0221(): PHPStan\Type\Php\CountFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\CountFunctionReturnTypeExtension; - } - - - public function createService0222(): PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension; - } - - - public function createService0223(): PHPStan\Type\Php\CurlGetinfoFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\CurlGetinfoFunctionDynamicReturnTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0224(): PHPStan\Type\Php\DateFunctionReturnTypeHelper - { - return new PHPStan\Type\Php\DateFunctionReturnTypeHelper; - } - - - public function createService0225(): PHPStan\Type\Php\DateFormatFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\DateFormatFunctionReturnTypeExtension($this->getService('0224')); - } - - - public function createService0226(): PHPStan\Type\Php\DateFormatMethodReturnTypeExtension - { - return new PHPStan\Type\Php\DateFormatMethodReturnTypeExtension($this->getService('0224')); - } - - - public function createService0227(): PHPStan\Type\Php\DateFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\DateFunctionReturnTypeExtension($this->getService('0224')); - } - - - public function createService0228(): PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension - { - return new PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension($this->getService('024')); - } - - - public function createService0229(): PHPStan\Type\Php\DateIntervalDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\DateIntervalDynamicReturnTypeExtension; - } - - - public function createService0230(): PHPStan\Type\Php\DateTimeCreateDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\DateTimeCreateDynamicReturnTypeExtension; - } - - - public function createService0231(): PHPStan\Type\Php\DateTimeDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\DateTimeDynamicReturnTypeExtension; - } - - - public function createService0232(): PHPStan\Type\Php\DateTimeModifyReturnTypeExtension - { - return new PHPStan\Type\Php\DateTimeModifyReturnTypeExtension($this->getService('024'), 'DateTime'); - } - - - public function createService0233(): PHPStan\Type\Php\DateTimeModifyReturnTypeExtension - { - return new PHPStan\Type\Php\DateTimeModifyReturnTypeExtension($this->getService('024'), 'DateTimeImmutable'); - } - - - public function createService0234(): PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension - { - return new PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension($this->getService('024')); - } - - - public function createService0235(): PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension - { - return new PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension($this->getService('024')); - } - - - public function createService0236(): PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension - { - return new PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension($this->getService('024')); - } - - - public function createService0237(): PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension - { - return new PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension($this->getService('024')); - } - - - public function createService0238(): PHPStan\Type\Php\DsMapDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\DsMapDynamicReturnTypeExtension; - } - - - public function createService0239(): PHPStan\Type\Php\DsMapDynamicMethodThrowTypeExtension - { - return new PHPStan\Type\Php\DsMapDynamicMethodThrowTypeExtension; - } - - - public function createService0240(): PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension; - } - - - public function createService0241(): PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension($this->getService('024')); - } - - - public function createService0242(): PHPStan\Type\Php\FilterFunctionReturnTypeHelper - { - return new PHPStan\Type\Php\FilterFunctionReturnTypeHelper($this->getService('reflectionProvider'), $this->getService('024')); - } - - - public function createService0243(): PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension($this->getService('0242')); - } - - - public function createService0244(): PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension($this->getService('0242')); - } - - - public function createService0245(): PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension( - $this->getService('0242'), - $this->getService('reflectionProvider') - ); - } - - - public function createService0246(): PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension; - } - - - public function createService0247(): PHPStan\Type\Php\GetClassDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\GetClassDynamicReturnTypeExtension; - } - - - public function createService0248(): PHPStan\Type\Php\GetDebugTypeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\GetDebugTypeFunctionReturnTypeExtension; - } - - - public function createService0249(): PHPStan\Type\Php\GetDefinedVarsFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\GetDefinedVarsFunctionReturnTypeExtension; - } - - - public function createService0250(): PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0251(): PHPStan\Type\Php\GettypeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\GettypeFunctionReturnTypeExtension; - } - - - public function createService0252(): PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension; - } - - - public function createService0253(): PHPStan\Type\Php\HashFunctionsReturnTypeExtension - { - return new PHPStan\Type\Php\HashFunctionsReturnTypeExtension($this->getService('024')); - } - - - public function createService0254(): PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension($this->getService('024')); - } - - - public function createService0255(): PHPStan\Type\Php\IntdivThrowTypeExtension - { - return new PHPStan\Type\Php\IntdivThrowTypeExtension; - } - - - public function createService0256(): PHPStan\Type\Php\IniGetReturnTypeExtension - { - return new PHPStan\Type\Php\IniGetReturnTypeExtension; - } - - - public function createService0257(): PHPStan\Type\Php\JsonThrowTypeExtension - { - return new PHPStan\Type\Php\JsonThrowTypeExtension($this->getService('reflectionProvider'), $this->getService('0175')); - } - - - public function createService0258(): PHPStan\Type\Php\OpenSslEncryptParameterOutTypeExtension - { - return new PHPStan\Type\Php\OpenSslEncryptParameterOutTypeExtension; - } - - - public function createService0259(): PHPStan\Type\Php\ParseStrParameterOutTypeExtension - { - return new PHPStan\Type\Php\ParseStrParameterOutTypeExtension; - } - - - public function createService0260(): PHPStan\Type\Php\PregMatchTypeSpecifyingExtension - { - return new PHPStan\Type\Php\PregMatchTypeSpecifyingExtension($this->getService('0263')); - } - - - public function createService0261(): PHPStan\Type\Php\PregMatchParameterOutTypeExtension - { - return new PHPStan\Type\Php\PregMatchParameterOutTypeExtension($this->getService('0263')); - } - - - public function createService0262(): PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension - { - return new PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension($this->getService('0263')); - } - - - public function createService0263(): PHPStan\Type\Php\RegexArrayShapeMatcher - { - return new PHPStan\Type\Php\RegexArrayShapeMatcher( - $this->getService('0264'), - $this->getService('0265'), - $this->getService('024') - ); - } - - - public function createService0264(): PHPStan\Type\Regex\RegexGroupParser - { - return new PHPStan\Type\Regex\RegexGroupParser($this->getService('024'), $this->getService('0265')); - } - - - public function createService0265(): PHPStan\Type\Regex\RegexExpressionHelper - { - return new PHPStan\Type\Regex\RegexExpressionHelper($this->getService('092')); - } - - - public function createService0266(): PHPStan\Type\Php\ReflectionClassConstructorThrowTypeExtension - { - return new PHPStan\Type\Php\ReflectionClassConstructorThrowTypeExtension; - } - - - public function createService0267(): PHPStan\Type\Php\ReflectionFunctionConstructorThrowTypeExtension - { - return new PHPStan\Type\Php\ReflectionFunctionConstructorThrowTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0268(): PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension - { - return new PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0269(): PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension - { - return new PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0270(): PHPStan\Type\Php\StrContainingTypeSpecifyingExtension - { - return new PHPStan\Type\Php\StrContainingTypeSpecifyingExtension; - } - - - public function createService0271(): PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension - { - return new PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension; - } - - - public function createService0272(): PHPStan\Type\Php\SimpleXMLElementConstructorThrowTypeExtension - { - return new PHPStan\Type\Php\SimpleXMLElementConstructorThrowTypeExtension; - } - - - public function createService0273(): PHPStan\Type\Php\StatDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\StatDynamicReturnTypeExtension; - } - - - public function createService0274(): PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension - { - return new PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension; - } - - - public function createService0275(): PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension - { - return new PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension($this->getService('0167')); - } - - - public function createService0276(): PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension($this->getService('024')); - } - - - public function createService0277(): PHPStan\Type\Php\NumberFormatFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\NumberFormatFunctionDynamicReturnTypeExtension; - } - - - public function createService0278(): PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension($this->getService('reflectionProvider')); - } - - - public function createService0279(): PHPStan\Type\Php\PregFilterFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\PregFilterFunctionReturnTypeExtension; - } - - - public function createService0280(): PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension($this->getService('0175')); - } - - - public function createService0281(): PHPStan\Type\Php\ReflectionClassIsSubclassOfTypeSpecifyingExtension - { - return new PHPStan\Type\Php\ReflectionClassIsSubclassOfTypeSpecifyingExtension; - } - - - public function createService0282(): PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension; - } - - - public function createService0283(): PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension; - } - - - public function createService0284(): PHPStan\Type\Php\LtrimFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\LtrimFunctionReturnTypeExtension; - } - - - public function createService0285(): PHPStan\Type\Php\MbFunctionsReturnTypeExtension - { - return new PHPStan\Type\Php\MbFunctionsReturnTypeExtension($this->getService('024')); - } - - - public function createService0286(): PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension($this->getService('024')); - } - - - public function createService0287(): PHPStan\Type\Php\MbSubstituteCharacterDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\MbSubstituteCharacterDynamicReturnTypeExtension($this->getService('024')); - } - - - public function createService0288(): PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension($this->getService('024')); - } - - - public function createService0289(): PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension; - } - - - public function createService0290(): PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension; - } - - - public function createService0291(): PHPStan\Type\Php\ImplodeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ImplodeFunctionReturnTypeExtension; - } - - - public function createService0292(): PHPStan\Type\Php\NonEmptyStringFunctionsReturnTypeExtension - { - return new PHPStan\Type\Php\NonEmptyStringFunctionsReturnTypeExtension; - } - - - public function createService0293(): PHPStan\Type\Php\SetTypeFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\SetTypeFunctionTypeSpecifyingExtension; - } - - - public function createService0294(): PHPStan\Type\Php\StrCaseFunctionsReturnTypeExtension - { - return new PHPStan\Type\Php\StrCaseFunctionsReturnTypeExtension; - } - - - public function createService0295(): PHPStan\Type\Php\StrlenFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrlenFunctionReturnTypeExtension; - } - - - public function createService0296(): PHPStan\Type\Php\StrIncrementDecrementFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrIncrementDecrementFunctionReturnTypeExtension; - } - - - public function createService0297(): PHPStan\Type\Php\StrPadFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrPadFunctionReturnTypeExtension; - } - - - public function createService0298(): PHPStan\Type\Php\StrRepeatFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrRepeatFunctionReturnTypeExtension; - } - - - public function createService0299(): PHPStan\Type\Php\StrrevFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrrevFunctionReturnTypeExtension; - } - - - public function createService0300(): PHPStan\Type\Php\SubstrDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\SubstrDynamicReturnTypeExtension($this->getService('024')); - } - - - public function createService0301(): PHPStan\Type\Php\ThrowableReturnTypeExtension - { - return new PHPStan\Type\Php\ThrowableReturnTypeExtension; - } - - - public function createService0302(): PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension; - } - - - public function createService0303(): PHPStan\Type\Php\TriggerErrorDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\TriggerErrorDynamicReturnTypeExtension($this->getService('024')); - } - - - public function createService0304(): PHPStan\Type\Php\TrimFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\TrimFunctionDynamicReturnTypeExtension; - } - - - public function createService0305(): PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension; - } - - - public function createService0306(): PHPStan\Type\Php\PowFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\PowFunctionReturnTypeExtension; - } - - - public function createService0307(): PHPStan\Type\Php\RoundFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\RoundFunctionReturnTypeExtension($this->getService('024')); - } - - - public function createService0308(): PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension; - } - - - public function createService0309(): PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension; - } - - - public function createService0310(): PHPStan\Type\Php\RangeFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\RangeFunctionReturnTypeExtension; - } - - - public function createService0311(): PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension; - } - - - public function createService0312(): PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension; - } - - - public function createService0313(): PHPStan\Type\Php\ClassImplementsFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\ClassImplementsFunctionReturnTypeExtension; - } - - - public function createService0314(): PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension - { - return new PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension; - } - - - public function createService0315(): PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension - { - return new PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension($this->getService('0220')); - } - - - public function createService0316(): PHPStan\Type\Php\FunctionExistsFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\FunctionExistsFunctionTypeSpecifyingExtension; - } - - - public function createService0317(): PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension; - } - - - public function createService0318(): PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension(false); - } - - - public function createService0319(): PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension($this->getService('0274')); - } - - - public function createService0320(): PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension; - } - - - public function createService0321(): PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension($this->getService('0324')); - } - - - public function createService0322(): PHPStan\Type\Php\IteratorToArrayFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\IteratorToArrayFunctionReturnTypeExtension; - } - - - public function createService0323(): PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension($this->getService('0324')); - } - - - public function createService0324(): PHPStan\Type\Php\IsAFunctionTypeSpecifyingHelper - { - return new PHPStan\Type\Php\IsAFunctionTypeSpecifyingHelper; - } - - - public function createService0325(): PHPStan\Type\Php\CtypeDigitFunctionTypeSpecifyingExtension - { - return new PHPStan\Type\Php\CtypeDigitFunctionTypeSpecifyingExtension; - } - - - public function createService0326(): PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension( - $this->getService('reflectionProvider'), - $this->getService('0175') - ); - } - - - public function createService0327(): PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension( - $this->getService('reflectionProvider'), - false, - ['stdClass', 'Pest\Support\HigherOrderTapProxy', 'Pest\Expectation'], - false - ); - } - - - public function createService0328(): PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension - { - return new PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension; - } - - - public function createService0329(): PHPStan\Type\Php\SimpleXMLElementXpathMethodReturnTypeExtension - { - return new PHPStan\Type\Php\SimpleXMLElementXpathMethodReturnTypeExtension; - } - - - public function createService0330(): PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension($this->getService('024')); - } - - - public function createService0331(): PHPStan\Type\Php\StrTokFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrTokFunctionReturnTypeExtension; - } - - - public function createService0332(): PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension; - } - - - public function createService0333(): PHPStan\Type\Php\SscanfFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\SscanfFunctionDynamicReturnTypeExtension; - } - - - public function createService0334(): PHPStan\Type\Php\StrvalFamilyFunctionReturnTypeExtension - { - return new PHPStan\Type\Php\StrvalFamilyFunctionReturnTypeExtension; - } - - - public function createService0335(): PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension - { - return new PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension; - } - - - public function createService0336(): PHPStan\Type\Php\XMLReaderOpenReturnTypeExtension - { - return new PHPStan\Type\Php\XMLReaderOpenReturnTypeExtension; - } - - - public function createService0337(): PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension - { - return new PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension('ReflectionClass'); - } - - - public function createService0338(): PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension - { - return new PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension('ReflectionClassConstant'); - } - - - public function createService0339(): PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension - { - return new PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension('ReflectionFunctionAbstract'); - } - - - public function createService0340(): PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension - { - return new PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension('ReflectionParameter'); - } - - - public function createService0341(): PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension - { - return new PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension('ReflectionProperty'); - } - - - public function createService0342(): PHPStan\Type\Php\DatePeriodConstructorReturnTypeExtension - { - return new PHPStan\Type\Php\DatePeriodConstructorReturnTypeExtension; - } - - - public function createService0343(): PHPStan\Type\ClosureTypeFactory - { - return new PHPStan\Type\ClosureTypeFactory( - $this->getService('092'), - $this->getService('0350'), - $this->getService('originalBetterReflectionReflector'), - $this->getService('currentPhpVersionPhpParser') - ); - } - - - public function createService0344(): PHPStan\Type\Constant\OversizedArrayBuilder - { - return new PHPStan\Type\Constant\OversizedArrayBuilder; - } - - - public function createService0345(): PHPStan\Rules\Functions\PrintfHelper - { - return new PHPStan\Rules\Functions\PrintfHelper($this->getService('024')); - } - - - public function createService0346(): PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory - { - return new PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory( - $this->getService('phpParserDecorator'), - $this->getService('php8PhpParser'), - $this->getService('0349'), - $this->getService('0350'), - $this->getService('0102'), - $this->getService('099'), - $this->getService('097'), - $this->getService('0100'), - $this->getService('096'), - [], - [], - $this->getParameter('analysedPaths'), - ['/home/jordan/projects/knowledge'], - $this->getParameter('analysedPathsFromConfig'), - false, - $this->getParameter('singleReflectionFile') - ); - } - - - public function createService0347(): PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory - { - return new class ($this) implements PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory { - private $container; - - - public function __construct(Container_2c8b00828e $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('0114'), - $this->container->getService('092'), - $this->container->getService('074'), - $reflector, - $this->container->getService('0172'), - $this->container->getService('033'), - $this->container->getService('024'), - $this->container->getService('0115'), - $this->container->getService('stubPhpDocProvider'), - $this->container->getService('091'), - $this->container->getService('relativePathHelper'), - $this->container->getService('023'), - $this->container->getService('081'), - $this->container->getService('0349'), - $this->container->getService('0120'), - ['stdClass', 'Pest\Support\HigherOrderTapProxy', 'Pest\Expectation'] - ); - } - }; - } - - - public function createService0348(): PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory - { - return new PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory( - $this->getService('php8PhpParser'), - $this->getService('022'), - $this->getService('024') - ); - } - - - public function createService0349(): PHPStan\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber - { - return $this->getService('0348')->create(); - } - - - public function createService0350(): PHPStan\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber - { - return $this->getService('0351')->create(); - } - - - public function createService0351(): PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory - { - return new PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory( - $this->getService('022'), - $this->getService('024') - ); - } - - - public function createService0352(): PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter - { - return new PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter( - $this->getService('errorFormatter.github'), - $this->getService('errorFormatter.teamcity') - ); - } - - - public function createService0353(): PHPStan\Rules\Api\ApiClassConstFetchRule - { - return new PHPStan\Rules\Api\ApiClassConstFetchRule($this->getService('0121'), $this->getService('reflectionProvider')); - } - - - public function createService0354(): PHPStan\Rules\Api\ApiInstanceofRule - { - return new PHPStan\Rules\Api\ApiInstanceofRule($this->getService('0121'), $this->getService('reflectionProvider')); - } - - - public function createService0355(): PHPStan\Rules\Api\ApiInstanceofTypeRule - { - return new PHPStan\Rules\Api\ApiInstanceofTypeRule($this->getService('reflectionProvider'), false, true); - } - - - public function createService0356(): PHPStan\Rules\Api\NodeConnectingVisitorAttributesRule - { - return new PHPStan\Rules\Api\NodeConnectingVisitorAttributesRule($this->getService('071')); - } - - - public function createService0357(): PHPStan\Rules\Api\RuntimeReflectionFunctionRule - { - return new PHPStan\Rules\Api\RuntimeReflectionFunctionRule($this->getService('reflectionProvider')); - } - - - public function createService0358(): PHPStan\Rules\Api\RuntimeReflectionInstantiationRule - { - return new PHPStan\Rules\Api\RuntimeReflectionInstantiationRule($this->getService('reflectionProvider')); - } - - - public function createService0359(): PHPStan\Rules\Classes\ExistingClassInClassExtendsRule - { - return new PHPStan\Rules\Classes\ExistingClassInClassExtendsRule( - $this->getService('0124'), - $this->getService('reflectionProvider') - ); - } - - - public function createService0360(): PHPStan\Rules\Classes\ExistingClassInInstanceOfRule - { - return new PHPStan\Rules\Classes\ExistingClassInInstanceOfRule( - $this->getService('reflectionProvider'), - $this->getService('0124'), - true - ); - } - - - public function createService0361(): PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule - { - return new PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule($this->getService('0127')); - } - - - public function createService0362(): PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule - { - return new PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule( - $this->getService('reflectionProvider'), - $this->getService('0124'), - true - ); - } - - - public function createService0363(): PHPStan\Rules\Functions\CallToNonExistentFunctionRule - { - return new PHPStan\Rules\Functions\CallToNonExistentFunctionRule($this->getService('reflectionProvider'), true); - } - - - public function createService0364(): PHPStan\Rules\Constants\OverridingConstantRule - { - return new PHPStan\Rules\Constants\OverridingConstantRule(true); - } - - - public function createService0365(): PHPStan\Rules\Methods\OverridingMethodRule - { - return new PHPStan\Rules\Methods\OverridingMethodRule( - $this->getService('024'), - $this->getService('0153'), - true, - $this->getService('0154'), - $this->getService('0107'), - false, - false, - false - ); - } - - - public function createService0366(): PHPStan\Rules\Methods\ConsistentConstructorRule - { - return new PHPStan\Rules\Methods\ConsistentConstructorRule($this->getService('0154')); - } - - - public function createService0367(): PHPStan\Rules\Missing\MissingReturnRule - { - return new PHPStan\Rules\Missing\MissingReturnRule(true, true); - } - - - public function createService0368(): PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule - { - return new PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule( - $this->getService('reflectionProvider'), - $this->getService('0124'), - true - ); - } - - - public function createService0369(): PHPStan\Rules\Namespaces\ExistingNamesInUseRule - { - return new PHPStan\Rules\Namespaces\ExistingNamesInUseRule( - $this->getService('reflectionProvider'), - $this->getService('0124'), - true - ); - } - - - public function createService0370(): PHPStan\Rules\Operators\InvalidIncDecOperationRule - { - return new PHPStan\Rules\Operators\InvalidIncDecOperationRule($this->getService('0169'), false, false); - } - - - public function createService0371(): PHPStan\Rules\Properties\AccessPropertiesRule - { - return new PHPStan\Rules\Properties\AccessPropertiesRule( - $this->getService('reflectionProvider'), - $this->getService('0169'), - true, - false - ); - } - - - public function createService0372(): PHPStan\Rules\Properties\AccessStaticPropertiesRule - { - return new PHPStan\Rules\Properties\AccessStaticPropertiesRule( - $this->getService('reflectionProvider'), - $this->getService('0169'), - $this->getService('0124') - ); - } - - - public function createService0373(): PHPStan\Rules\Properties\ExistingClassesInPropertiesRule - { - return new PHPStan\Rules\Properties\ExistingClassesInPropertiesRule( - $this->getService('reflectionProvider'), - $this->getService('0124'), - $this->getService('0161'), - $this->getService('024'), - true, - false - ); - } - - - public function createService0374(): PHPStan\Rules\Functions\FunctionCallableRule - { - return new PHPStan\Rules\Functions\FunctionCallableRule( - $this->getService('reflectionProvider'), - $this->getService('0169'), - $this->getService('024'), - true, - true - ); - } - - - public function createService0375(): PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule - { - return new PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule($this->getService('0384')); - } - - - public function createService0376(): PHPStan\Rules\Properties\OverridingPropertyRule - { - return new PHPStan\Rules\Properties\OverridingPropertyRule(true, true); - } - - - public function createService0377(): PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyRule - { - return new PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyRule; - } - - - public function createService0378(): PHPStan\Rules\Properties\UninitializedPropertyRule - { - return new PHPStan\Rules\Properties\UninitializedPropertyRule($this->getService('0384')); - } - - - public function createService0379(): PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule - { - return new PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule( - $this->getService('0169'), - $this->getService('0166'), - $this->getService('0167'), - false - ); - } - - - public function createService0380(): PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule - { - return new PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule( - $this->getService('0166'), - $this->getService('0167'), - $this->getService('0169'), - false - ); - } - - - public function createService0381(): PHPStan\Rules\Variables\CompactVariablesRule - { - return new PHPStan\Rules\Variables\CompactVariablesRule(true); - } - - - public function createService0382(): PHPStan\Rules\Variables\DefinedVariableRule - { - return new PHPStan\Rules\Variables\DefinedVariableRule(true, true); - } - - - public function createService0383(): PHPStan\Rules\Regexp\RegularExpressionPatternRule - { - return new PHPStan\Rules\Regexp\RegularExpressionPatternRule($this->getService('0265')); - } - - - public function createService0384(): PHPStan\Reflection\ConstructorsHelper - { - return new PHPStan\Reflection\ConstructorsHelper($this->getService('071'), []); - } - - - public function createService0385(): PHPStan\Rules\Methods\MissingMagicSerializationMethodsRule - { - return new PHPStan\Rules\Methods\MissingMagicSerializationMethodsRule($this->getService('024')); - } - - - public function createService0386(): PHPStan\Rules\Constants\MagicConstantContextRule - { - return new PHPStan\Rules\Constants\MagicConstantContextRule; - } - - - public function createService0387(): PHPStan\Rules\Functions\UselessFunctionReturnValueRule - { - return new PHPStan\Rules\Functions\UselessFunctionReturnValueRule($this->getService('reflectionProvider')); - } - - - public function createService0388(): PHPStan\Rules\Functions\PrintfArrayParametersRule - { - return new PHPStan\Rules\Functions\PrintfArrayParametersRule($this->getService('0345'), $this->getService('reflectionProvider')); - } - - - public function createService0389(): PHPStan\Rules\Regexp\RegularExpressionQuotingRule - { - return new PHPStan\Rules\Regexp\RegularExpressionQuotingRule($this->getService('reflectionProvider'), $this->getService('0265')); - } - - - public function createService0390(): PHPStan\Rules\Keywords\RequireFileExistsRule - { - return new PHPStan\Rules\Keywords\RequireFileExistsRule('/home/jordan/projects/knowledge'); - } - - - public function createService0391(): PHPStan\Rules\Classes\MixinRule - { - return new PHPStan\Rules\Classes\MixinRule($this->getService('0129')); - } - - - public function createService0392(): PHPStan\Rules\Classes\MixinTraitRule - { - return new PHPStan\Rules\Classes\MixinTraitRule($this->getService('0129'), $this->getService('reflectionProvider')); - } - - - public function createService0393(): PHPStan\Rules\Classes\MixinTraitUseRule - { - return new PHPStan\Rules\Classes\MixinTraitUseRule($this->getService('0129')); - } - - - public function createService0394(): PHPStan\Rules\Classes\MethodTagRule - { - return new PHPStan\Rules\Classes\MethodTagRule($this->getService('0128')); - } - - - public function createService0395(): PHPStan\Rules\Classes\MethodTagTraitRule - { - return new PHPStan\Rules\Classes\MethodTagTraitRule($this->getService('0128'), $this->getService('reflectionProvider')); - } - - - public function createService0396(): PHPStan\Rules\Classes\MethodTagTraitUseRule - { - return new PHPStan\Rules\Classes\MethodTagTraitUseRule($this->getService('0128')); - } - - - public function createService0397(): PHPStan\Rules\Classes\PropertyTagRule - { - return new PHPStan\Rules\Classes\PropertyTagRule($this->getService('0130')); - } - - - public function createService0398(): PHPStan\Rules\Classes\PropertyTagTraitRule - { - return new PHPStan\Rules\Classes\PropertyTagTraitRule($this->getService('0130'), $this->getService('reflectionProvider')); - } - - - public function createService0399(): PHPStan\Rules\Classes\PropertyTagTraitUseRule - { - return new PHPStan\Rules\Classes\PropertyTagTraitUseRule($this->getService('0130')); - } - - - public function createService0400(): PHPStan\Rules\PhpDoc\RequireExtendsCheck - { - return new PHPStan\Rules\PhpDoc\RequireExtendsCheck($this->getService('0124'), true); - } - - - public function createService0401(): PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule - { - return new PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule( - $this->getService('reflectionProvider'), - $this->getService('0124'), - true - ); - } - - - public function createService0402(): PHPStan\Rules\Functions\IncompatibleArrowFunctionDefaultParameterTypeRule - { - return new PHPStan\Rules\Functions\IncompatibleArrowFunctionDefaultParameterTypeRule; - } - - - public function createService0403(): PHPStan\Rules\Functions\IncompatibleClosureDefaultParameterTypeRule - { - return new PHPStan\Rules\Functions\IncompatibleClosureDefaultParameterTypeRule; - } - - - public function createService0404(): PHPStan\Rules\Functions\CallCallablesRule - { - return new PHPStan\Rules\Functions\CallCallablesRule($this->getService('0140'), $this->getService('0169'), true); - } - - - public function createService0405(): PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule - { - return new PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule( - $this->getService('0147'), - $this->getService('reflectionProvider') - ); - } - - - public function createService0406(): PHPStan\Rules\Methods\IllegalConstructorMethodCallRule - { - return new PHPStan\Rules\Methods\IllegalConstructorMethodCallRule; - } - - - public function createService0407(): PHPStan\Rules\Methods\IllegalConstructorStaticCallRule - { - return new PHPStan\Rules\Methods\IllegalConstructorStaticCallRule; - } - - - public function createService0408(): PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule - { - return new PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule($this->getService('027'), $this->getService('030'), false, false); - } - - - public function createService0409(): PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule - { - return new PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule( - $this->getService('0172'), - $this->getService('reflectionProvider'), - $this->getService('0124'), - $this->getService('0146'), - $this->getService('0155'), - $this->getService('0161'), - true, - true - ); - } - - - public function createService0410(): PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule - { - return new PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule($this->getService('027'), $this->getService('030'), false); - } - - - public function createService0411(): PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule - { - return new PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule($this->getService('0163')); - } - - - public function createService0412(): PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule - { - return new PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule($this->getService('0172'), $this->getService('0163'), false); - } - - - public function createService0413(): PHPStan\Rules\Generics\PropertyVarianceRule - { - return new PHPStan\Rules\Generics\PropertyVarianceRule($this->getService('0149'), false); - } - - - public function createService0414(): PHPStan\Rules\Pure\PureFunctionRule - { - return new PHPStan\Rules\Pure\PureFunctionRule($this->getService('0168')); - } - - - public function createService0415(): PHPStan\Rules\Pure\PureMethodRule - { - return new PHPStan\Rules\Pure\PureMethodRule($this->getService('0168')); - } - - - public function createService0416(): PHPStan\Rules\Operators\InvalidBinaryOperationRule - { - return new PHPStan\Rules\Operators\InvalidBinaryOperationRule($this->getService('021'), $this->getService('0169'), false); - } - - - public function createService0417(): PHPStan\Rules\Operators\InvalidUnaryOperationRule - { - return new PHPStan\Rules\Operators\InvalidUnaryOperationRule($this->getService('0169'), false); - } - - - public function createService0418(): PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule - { - return new PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule($this->getService('0169'), true); - } - - - public function createService0419(): PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule - { - return new PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule(true); - } - - - public function createService0420(): PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule - { - return new PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule($this->getService('0169'), $this->getService('0123'), true); - } - - - public function createService0421(): PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule - { - return new PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule( - $this->getService('exceptionTypeResolver'), - false - ); - } - - - public function createService0422(): PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule - { - return new PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule( - $this->getService('exceptionTypeResolver'), - false - ); - } - - - public function createService0423(): PHPStan\Rules\Generators\YieldFromTypeRule - { - return new PHPStan\Rules\Generators\YieldFromTypeRule($this->getService('0169'), true); - } - - - public function createService0424(): PHPStan\Rules\Generators\YieldInGeneratorRule - { - return new PHPStan\Rules\Generators\YieldInGeneratorRule(true); - } - - - public function createService0425(): PHPStan\Rules\Arrays\ArrayUnpackingRule - { - return new PHPStan\Rules\Arrays\ArrayUnpackingRule($this->getService('024'), $this->getService('0169')); - } - - - public function createService0426(): PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule - { - return new PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule($this->getService('0167')); - } - - - public function createService0427(): PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule - { - return new PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule($this->getService('0167'), $this->getService('0384')); - } - - - public function createService0428(): PHPStan\Rules\Variables\ParameterOutAssignedTypeRule - { - return new PHPStan\Rules\Variables\ParameterOutAssignedTypeRule($this->getService('0169')); - } - - - public function createService0429(): PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule - { - return new PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule($this->getService('0169')); - } - - - public function createService0430(): PHPStan\Rules\Classes\ImpossibleInstanceOfRule - { - return new PHPStan\Rules\Classes\ImpossibleInstanceOfRule(true, false, false, true); - } - - - public function createService0431(): PHPStan\Rules\Comparison\BooleanAndConstantConditionRule - { - return new PHPStan\Rules\Comparison\BooleanAndConstantConditionRule($this->getService('0131'), false, false, false, true); - } - - - public function createService0432(): PHPStan\Rules\Comparison\BooleanOrConstantConditionRule - { - return new PHPStan\Rules\Comparison\BooleanOrConstantConditionRule($this->getService('0131'), false, false, false, true); - } - - - public function createService0433(): PHPStan\Rules\Comparison\BooleanNotConstantConditionRule - { - return new PHPStan\Rules\Comparison\BooleanNotConstantConditionRule($this->getService('0131'), false, false, true); - } - - - public function createService0434(): PHPStan\Rules\DeadCode\NoopRule - { - return new PHPStan\Rules\DeadCode\NoopRule($this->getService('021'), false); - } - - - public function createService0435(): PHPStan\Rules\DeadCode\CallToConstructorStatementWithoutImpurePointsRule - { - return new PHPStan\Rules\DeadCode\CallToConstructorStatementWithoutImpurePointsRule; - } - - - public function createService0436(): PHPStan\Rules\DeadCode\ConstructorWithoutImpurePointsCollector - { - return new PHPStan\Rules\DeadCode\ConstructorWithoutImpurePointsCollector; - } - - - public function createService0437(): PHPStan\Rules\DeadCode\PossiblyPureNewCollector - { - return new PHPStan\Rules\DeadCode\PossiblyPureNewCollector($this->getService('reflectionProvider')); - } - - - public function createService0438(): PHPStan\Rules\DeadCode\CallToFunctionStatementWithoutImpurePointsRule - { - return new PHPStan\Rules\DeadCode\CallToFunctionStatementWithoutImpurePointsRule; - } - - - public function createService0439(): PHPStan\Rules\DeadCode\FunctionWithoutImpurePointsCollector - { - return new PHPStan\Rules\DeadCode\FunctionWithoutImpurePointsCollector; - } - - - public function createService0440(): PHPStan\Rules\DeadCode\PossiblyPureFuncCallCollector - { - return new PHPStan\Rules\DeadCode\PossiblyPureFuncCallCollector($this->getService('reflectionProvider')); - } - - - public function createService0441(): PHPStan\Rules\DeadCode\CallToMethodStatementWithoutImpurePointsRule - { - return new PHPStan\Rules\DeadCode\CallToMethodStatementWithoutImpurePointsRule; - } - - - public function createService0442(): PHPStan\Rules\DeadCode\MethodWithoutImpurePointsCollector - { - return new PHPStan\Rules\DeadCode\MethodWithoutImpurePointsCollector; - } - - - public function createService0443(): PHPStan\Rules\DeadCode\PossiblyPureMethodCallCollector - { - return new PHPStan\Rules\DeadCode\PossiblyPureMethodCallCollector; - } - - - public function createService0444(): PHPStan\Rules\DeadCode\CallToStaticMethodStatementWithoutImpurePointsRule - { - return new PHPStan\Rules\DeadCode\CallToStaticMethodStatementWithoutImpurePointsRule; - } - - - public function createService0445(): PHPStan\Rules\DeadCode\PossiblyPureStaticCallCollector - { - return new PHPStan\Rules\DeadCode\PossiblyPureStaticCallCollector; - } - - - public function createService0446(): PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule - { - return new PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule($this->getService('0165'), [], [], false); - } - - - public function createService0447(): PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule - { - return new PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule($this->getService('0131'), false, true); - } - - - public function createService0448(): PHPStan\Rules\Comparison\ElseIfConstantConditionRule - { - return new PHPStan\Rules\Comparison\ElseIfConstantConditionRule($this->getService('0131'), false, false, true); - } - - - public function createService0449(): PHPStan\Rules\Comparison\IfConstantConditionRule - { - return new PHPStan\Rules\Comparison\IfConstantConditionRule($this->getService('0131'), false, true); - } - - - public function createService0450(): PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule - { - return new PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule($this->getService('0132'), true, false, false, true); - } - - - public function createService0451(): PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule - { - return new PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule($this->getService('0132'), true, false, false, true); - } - - - public function createService0452(): PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule - { - return new PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule($this->getService('0132'), true, false, false, true); - } - - - public function createService0453(): PHPStan\Rules\Comparison\LogicalXorConstantConditionRule - { - return new PHPStan\Rules\Comparison\LogicalXorConstantConditionRule($this->getService('0131'), false, false, true); - } - - - public function createService0454(): PHPStan\Rules\DeadCode\BetterNoopRule - { - return new PHPStan\Rules\DeadCode\BetterNoopRule($this->getService('021')); - } - - - public function createService0455(): PHPStan\Rules\Comparison\MatchExpressionRule - { - return new PHPStan\Rules\Comparison\MatchExpressionRule($this->getService('0131'), true, false, false, false); - } - - - public function createService0456(): PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule - { - return new PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule(false, true); - } - - - public function createService0457(): PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule - { - return new PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule($this->getService('060'), true, false, false, true); - } - - - public function createService0458(): PHPStan\Rules\Comparison\ConstantLooseComparisonRule - { - return new PHPStan\Rules\Comparison\ConstantLooseComparisonRule(true, false, false, true); - } - - - public function createService0459(): PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule - { - return new PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule($this->getService('0131'), false, true); - } - - - public function createService0460(): PHPStan\Rules\Comparison\UnreachableIfBranchesRule - { - return new PHPStan\Rules\Comparison\UnreachableIfBranchesRule($this->getService('0131'), false, false, true); - } - - - public function createService0461(): PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule - { - return new PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule($this->getService('0131'), false, false, true); - } - - - public function createService0462(): PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule - { - return new PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule($this->getService('0131'), false, true); - } - - - public function createService0463(): PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule - { - return new PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule($this->getService('0131'), false, true); - } - - - public function createService0464(): PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule - { - return new PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule( - $this->getService('reflectionProvider'), - false - ); - } - - - public function createService0465(): PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule(false, false); - } - - - public function createService0466(): PHPStan\Rules\Properties\NullsafePropertyFetchRule - { - return new PHPStan\Rules\Properties\NullsafePropertyFetchRule; - } - - - public function createService0467(): PHPStan\Rules\Traits\TraitDeclarationCollector - { - return new PHPStan\Rules\Traits\TraitDeclarationCollector; - } - - - public function createService0468(): PHPStan\Rules\Traits\TraitUseCollector - { - return new PHPStan\Rules\Traits\TraitUseCollector; - } - - - public function createService0469(): PHPStan\Rules\Traits\NotAnalysedTraitRule - { - return new PHPStan\Rules\Traits\NotAnalysedTraitRule; - } - - - public function createService0470(): PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule - { - return new PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule($this->getService('exceptionTypeResolver'), true); - } - - - public function createService0471(): PHPStan\Rules\TooWideTypehints\TooWideFunctionParameterOutTypeRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideFunctionParameterOutTypeRule($this->getService('0171')); - } - - - public function createService0472(): PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule($this->getService('0171')); - } - - - public function createService0473(): PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule - { - return new PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule($this->getService('0165'), $this->getService('0167')); - } - - - public function createService0474(): PHPStan\Rules\Functions\RandomIntParametersRule - { - return new PHPStan\Rules\Functions\RandomIntParametersRule($this->getService('reflectionProvider'), true); - } - - - public function createService0475(): PHPStan\Rules\Functions\ArrayFilterRule - { - return new PHPStan\Rules\Functions\ArrayFilterRule($this->getService('reflectionProvider'), false, true); - } - - - public function createService0476(): PHPStan\Rules\Functions\ArrayValuesRule - { - return new PHPStan\Rules\Functions\ArrayValuesRule($this->getService('reflectionProvider'), false, true); - } - - - public function createService0477(): PHPStan\Rules\Functions\CallUserFuncRule - { - return new PHPStan\Rules\Functions\CallUserFuncRule($this->getService('reflectionProvider'), $this->getService('0140')); - } - - - public function createService0478(): PHPStan\Rules\Functions\ImplodeFunctionRule - { - return new PHPStan\Rules\Functions\ImplodeFunctionRule( - $this->getService('reflectionProvider'), - $this->getService('0169'), - false - ); - } - - - public function createService0479(): PHPStan\Rules\Functions\ParameterCastableToStringRule - { - return new PHPStan\Rules\Functions\ParameterCastableToStringRule( - $this->getService('reflectionProvider'), - $this->getService('0143') - ); - } - - - public function createService0480(): PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule - { - return new PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule( - $this->getService('reflectionProvider'), - $this->getService('0143') - ); - } - - - public function createService0481(): PHPStan\Rules\Functions\SortParameterCastableToStringRule - { - return new PHPStan\Rules\Functions\SortParameterCastableToStringRule( - $this->getService('reflectionProvider'), - $this->getService('0143') - ); - } - - - public function createService0482(): PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule - { - return new PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule($this->getService('0155'), false); - } - - - public function createService0483(): PHPStan\Rules\Methods\MissingMethodParameterTypehintRule - { - return new PHPStan\Rules\Methods\MissingMethodParameterTypehintRule($this->getService('0155'), false); - } - - - public function createService0484(): PHPStan\Rules\Methods\MissingMethodSelfOutTypeRule - { - return new PHPStan\Rules\Methods\MissingMethodSelfOutTypeRule($this->getService('0155')); - } - - - public function createService0485(): Carbon\PHPStan\MacroExtension - { - return new Carbon\PHPStan\MacroExtension($this->getService('reflectionProvider'), $this->getService('0343')); - } - - - public function createService0486(): PHPStan\Rules\Deprecations\DeprecatedClassHelper - { - return new PHPStan\Rules\Deprecations\DeprecatedClassHelper($this->getService('reflectionProvider')); - } - - - public function createService0487(): PHPStan\DependencyInjection\LazyDeprecatedScopeResolverProvider - { - return new PHPStan\DependencyInjection\LazyDeprecatedScopeResolverProvider($this->getService('071')); - } - - - public function createService0488(): PHPStan\Rules\Deprecations\DeprecatedScopeHelper - { - return $this->getService('0487')->get(); - } - - - public function createService0489(): PHPStan\Rules\Deprecations\DefaultDeprecatedScopeResolver - { - return new PHPStan\Rules\Deprecations\DefaultDeprecatedScopeResolver; - } - - - public function createService0490(): PHPStan\Rules\BooleansInConditions\BooleanRuleHelper - { - return new PHPStan\Rules\BooleansInConditions\BooleanRuleHelper($this->getService('0169')); - } - - - public function createService0491(): PHPStan\Rules\Operators\OperatorRuleHelper - { - return new PHPStan\Rules\Operators\OperatorRuleHelper($this->getService('0169')); - } - - - public function createService0492(): PHPStan\Rules\VariableVariables\VariablePropertyFetchRule - { - return new PHPStan\Rules\VariableVariables\VariablePropertyFetchRule( - $this->getService('reflectionProvider'), - ['stdClass', 'Pest\Support\HigherOrderTapProxy', 'Pest\Expectation'] - ); - } - - - public function createService0493(): PHPStan\Rules\DisallowedConstructs\DisallowedLooseComparisonRule - { - return new PHPStan\Rules\DisallowedConstructs\DisallowedLooseComparisonRule; - } - - - public function createService0494(): PHPStan\Rules\BooleansInConditions\BooleanInBooleanAndRule - { - return new PHPStan\Rules\BooleansInConditions\BooleanInBooleanAndRule($this->getService('0490'), false); - } - - - public function createService0495(): PHPStan\Rules\BooleansInConditions\BooleanInBooleanNotRule - { - return new PHPStan\Rules\BooleansInConditions\BooleanInBooleanNotRule($this->getService('0490')); - } - - - public function createService0496(): PHPStan\Rules\BooleansInConditions\BooleanInBooleanOrRule - { - return new PHPStan\Rules\BooleansInConditions\BooleanInBooleanOrRule($this->getService('0490'), false); - } - - - public function createService0497(): PHPStan\Rules\BooleansInConditions\BooleanInElseIfConditionRule - { - return new PHPStan\Rules\BooleansInConditions\BooleanInElseIfConditionRule($this->getService('0490')); - } - - - public function createService0498(): PHPStan\Rules\BooleansInConditions\BooleanInIfConditionRule - { - return new PHPStan\Rules\BooleansInConditions\BooleanInIfConditionRule($this->getService('0490')); - } - - - public function createService0499(): PHPStan\Rules\BooleansInConditions\BooleanInTernaryOperatorRule - { - return new PHPStan\Rules\BooleansInConditions\BooleanInTernaryOperatorRule($this->getService('0490')); - } - - - public function createService0500(): PHPStan\Rules\Cast\UselessCastRule - { - return new PHPStan\Rules\Cast\UselessCastRule(false, true); - } - - - public function createService0501(): PHPStan\Rules\Classes\RequireParentConstructCallRule - { - return new PHPStan\Rules\Classes\RequireParentConstructCallRule; - } - - - public function createService0502(): PHPStan\Rules\DisallowedConstructs\DisallowedBacktickRule - { - return new PHPStan\Rules\DisallowedConstructs\DisallowedBacktickRule; - } - - - public function createService0503(): PHPStan\Rules\DisallowedConstructs\DisallowedEmptyRule - { - return new PHPStan\Rules\DisallowedConstructs\DisallowedEmptyRule; - } - - - public function createService0504(): PHPStan\Rules\DisallowedConstructs\DisallowedImplicitArrayCreationRule - { - return new PHPStan\Rules\DisallowedConstructs\DisallowedImplicitArrayCreationRule; - } - - - public function createService0505(): PHPStan\Rules\DisallowedConstructs\DisallowedShortTernaryRule - { - return new PHPStan\Rules\DisallowedConstructs\DisallowedShortTernaryRule; - } - - - public function createService0506(): PHPStan\Rules\ForeachLoop\OverwriteVariablesWithForeachRule - { - return new PHPStan\Rules\ForeachLoop\OverwriteVariablesWithForeachRule; - } - - - public function createService0507(): PHPStan\Rules\ForLoop\OverwriteVariablesWithForLoopInitRule - { - return new PHPStan\Rules\ForLoop\OverwriteVariablesWithForLoopInitRule; - } - - - public function createService0508(): PHPStan\Rules\Functions\ArrayFilterStrictRule - { - return new PHPStan\Rules\Functions\ArrayFilterStrictRule($this->getService('reflectionProvider'), false, true, true); - } - - - public function createService0509(): PHPStan\Rules\Functions\ClosureUsesThisRule - { - return new PHPStan\Rules\Functions\ClosureUsesThisRule; - } - - - public function createService0510(): PHPStan\Rules\Methods\WrongCaseOfInheritedMethodRule - { - return new PHPStan\Rules\Methods\WrongCaseOfInheritedMethodRule; - } - - - public function createService0511(): PHPStan\Rules\Operators\OperandInArithmeticPostDecrementRule - { - return new PHPStan\Rules\Operators\OperandInArithmeticPostDecrementRule($this->getService('0491')); - } - - - public function createService0512(): PHPStan\Rules\Operators\OperandInArithmeticPostIncrementRule - { - return new PHPStan\Rules\Operators\OperandInArithmeticPostIncrementRule($this->getService('0491')); - } - - - public function createService0513(): PHPStan\Rules\Operators\OperandInArithmeticPreDecrementRule - { - return new PHPStan\Rules\Operators\OperandInArithmeticPreDecrementRule($this->getService('0491')); - } - - - public function createService0514(): PHPStan\Rules\Operators\OperandInArithmeticPreIncrementRule - { - return new PHPStan\Rules\Operators\OperandInArithmeticPreIncrementRule($this->getService('0491')); - } - - - public function createService0515(): PHPStan\Rules\Operators\OperandsInArithmeticAdditionRule - { - return new PHPStan\Rules\Operators\OperandsInArithmeticAdditionRule($this->getService('0491'), false); - } - - - public function createService0516(): PHPStan\Rules\Operators\OperandsInArithmeticDivisionRule - { - return new PHPStan\Rules\Operators\OperandsInArithmeticDivisionRule($this->getService('0491'), false); - } - - - public function createService0517(): PHPStan\Rules\Operators\OperandsInArithmeticExponentiationRule - { - return new PHPStan\Rules\Operators\OperandsInArithmeticExponentiationRule($this->getService('0491'), false); - } - - - public function createService0518(): PHPStan\Rules\Operators\OperandsInArithmeticModuloRule - { - return new PHPStan\Rules\Operators\OperandsInArithmeticModuloRule($this->getService('0491'), false); - } - - - public function createService0519(): PHPStan\Rules\Operators\OperandsInArithmeticMultiplicationRule - { - return new PHPStan\Rules\Operators\OperandsInArithmeticMultiplicationRule($this->getService('0491'), false); - } - - - public function createService0520(): PHPStan\Rules\Operators\OperandsInArithmeticSubtractionRule - { - return new PHPStan\Rules\Operators\OperandsInArithmeticSubtractionRule($this->getService('0491'), false); - } - - - public function createService0521(): PHPStan\Rules\StrictCalls\DynamicCallOnStaticMethodsRule - { - return new PHPStan\Rules\StrictCalls\DynamicCallOnStaticMethodsRule($this->getService('0169')); - } - - - public function createService0522(): PHPStan\Rules\StrictCalls\DynamicCallOnStaticMethodsCallableRule - { - return new PHPStan\Rules\StrictCalls\DynamicCallOnStaticMethodsCallableRule($this->getService('0169')); - } - - - public function createService0523(): PHPStan\Rules\StrictCalls\StrictFunctionCallsRule - { - return new PHPStan\Rules\StrictCalls\StrictFunctionCallsRule($this->getService('reflectionProvider')); - } - - - public function createService0524(): PHPStan\Rules\SwitchConditions\MatchingTypeInSwitchCaseConditionRule - { - return new PHPStan\Rules\SwitchConditions\MatchingTypeInSwitchCaseConditionRule($this->getService('022')); - } - - - public function createService0525(): PHPStan\Rules\VariableVariables\VariableMethodCallRule - { - return new PHPStan\Rules\VariableVariables\VariableMethodCallRule; - } - - - public function createService0526(): PHPStan\Rules\VariableVariables\VariableMethodCallableRule - { - return new PHPStan\Rules\VariableVariables\VariableMethodCallableRule; - } - - - public function createService0527(): PHPStan\Rules\VariableVariables\VariableStaticMethodCallRule - { - return new PHPStan\Rules\VariableVariables\VariableStaticMethodCallRule; - } - - - public function createService0528(): PHPStan\Rules\VariableVariables\VariableStaticMethodCallableRule - { - return new PHPStan\Rules\VariableVariables\VariableStaticMethodCallableRule; - } - - - public function createService0529(): PHPStan\Rules\VariableVariables\VariableStaticPropertyFetchRule - { - return new PHPStan\Rules\VariableVariables\VariableStaticPropertyFetchRule; - } - - - public function createService0530(): PHPStan\Rules\VariableVariables\VariableVariablesRule - { - return new PHPStan\Rules\VariableVariables\VariableVariablesRule; - } - - - public function createServiceBetterReflectionClassReflector(): PHPStan\BetterReflection\Reflector\ClassReflector - { - return new PHPStan\BetterReflection\Reflector\ClassReflector($this->getService('betterReflectionSourceLocator')); - } - - - public function createServiceBetterReflectionConstantReflector(): PHPStan\BetterReflection\Reflector\ConstantReflector - { - return new PHPStan\BetterReflection\Reflector\ConstantReflector($this->getService('betterReflectionSourceLocator')); - } - - - public function createServiceBetterReflectionFunctionReflector(): PHPStan\BetterReflection\Reflector\FunctionReflector - { - return new PHPStan\BetterReflection\Reflector\FunctionReflector($this->getService('betterReflectionSourceLocator')); - } - - - public function createServiceBetterReflectionProvider(): PHPStan\Reflection\BetterReflection\BetterReflectionProvider - { - return new PHPStan\Reflection\BetterReflection\BetterReflectionProvider( - $this->getService('0114'), - $this->getService('092'), - $this->getService('074'), - $this->getService('betterReflectionReflector'), - $this->getService('0172'), - $this->getService('033'), - $this->getService('024'), - $this->getService('0115'), - $this->getService('stubPhpDocProvider'), - $this->getService('091'), - $this->getService('relativePathHelper'), - $this->getService('023'), - $this->getService('081'), - $this->getService('0349'), - $this->getService('0120'), - ['stdClass', '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('0346')->create(); - } - - - public function createServiceBroker(): PHPStan\Broker\Broker - { - return $this->getService('brokerFactory')->create(); - } - - - public function createServiceBrokerFactory(): PHPStan\Broker\BrokerFactory - { - return new PHPStan\Broker\BrokerFactory($this->getService('071')); - } - - - public function createServiceCacheStorage(): PHPStan\Cache\FileCacheStorage - { - return new PHPStan\Cache\FileCacheStorage('/home/jordan/projects/knowledge/var/cache/phpstan/cache/PHPStan'); - } - - - public function createServiceContainer(): Container_2c8b00828e - { - return $this; - } - - - public function createServiceCurrentPhpVersionLexer(): PhpParser\Lexer - { - return $this->getService('02')->create(); - } - - - public function createServiceCurrentPhpVersionPhpParser(): PhpParser\Parser\Php7 - { - return new PhpParser\Parser\Php7($this->getService('currentPhpVersionLexer')); - } - - - public function createServiceCurrentPhpVersionRichParser(): PHPStan\Parser\RichParser - { - return new PHPStan\Parser\RichParser( - $this->getService('currentPhpVersionPhpParser'), - $this->getService('currentPhpVersionLexer'), - $this->getService('03'), - $this->getService('071'), - $this->getService('052'), - false - ); - } - - - public function createServiceCurrentPhpVersionSimpleDirectParser(): PHPStan\Parser\SimpleParser - { - return new PHPStan\Parser\SimpleParser($this->getService('currentPhpVersionPhpParser'), $this->getService('03')); - } - - - public function createServiceCurrentPhpVersionSimpleParser(): PHPStan\Parser\CleaningParser - { - return new PHPStan\Parser\CleaningParser($this->getService('currentPhpVersionSimpleDirectParser'), $this->getService('024')); - } - - - 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('0352'), - 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('0133'); - } - - - public function createServiceFileExcluderAnalyse(): PHPStan\File\FileExcluder - { - return $this->getService('082')->createAnalyseFileExcluder(); - } - - - public function createServiceFileExcluderScan(): PHPStan\File\FileExcluder - { - return $this->getService('082')->createScanFileExcluder(); - } - - - public function createServiceFileFinderAnalyse(): PHPStan\File\FileFinder - { - return new PHPStan\File\FileFinder($this->getService('fileExcluderAnalyse'), $this->getService('081'), ['php']); - } - - - public function createServiceFileFinderScan(): PHPStan\File\FileFinder - { - return new PHPStan\File\FileFinder($this->getService('fileExcluderScan'), $this->getService('081'), ['php']); - } - - - 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('/home/jordan/projects/knowledge'); - } - - - public function createServicePathRoutingParser(): PHPStan\Parser\PathRoutingParser - { - return new PHPStan\Parser\PathRoutingParser( - $this->getService('081'), - $this->getService('currentPhpVersionRichParser'), - $this->getService('currentPhpVersionSimpleParser'), - $this->getService('php8Parser'), - $this->getParameter('singleReflectionFile') - ); - } - - - 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')); - } - - - public function createServicePhp8PhpParser(): PhpParser\Parser\Php7 - { - return new PhpParser\Parser\Php7($this->getService('php8Lexer')); - } - - - public function createServicePhpParserDecorator(): PHPStan\Parser\PhpParserDecorator - { - return new PHPStan\Parser\PhpParserDecorator($this->getService('defaultAnalysisParser')); - } - - - public function createServicePhpstanDiagnoseExtension(): PHPStan\Diagnose\PHPStanDiagnoseExtension - { - return new PHPStan\Diagnose\PHPStanDiagnoseExtension( - $this->getService('024'), - $this->getService('081'), - ['/home/jordan/projects/knowledge'], - [ - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/parametersSchema.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level8.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level7.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level6.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level5.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level4.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level3.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level2.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level1.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level0.neon', - '/home/jordan/projects/knowledge/vendor/nesbot/carbon/extension.neon', - '/home/jordan/projects/knowledge/vendor/pestphp/pest/extension.neon', - '/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/rules.neon', - '/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/rules.neon', - '/home/jordan/projects/knowledge/phpstan.neon', - '/home/jordan/projects/knowledge/phpstan-baseline.neon', - ] - ); - } - - - 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('071')); - } - - - public function createServiceRelativePathHelper(): PHPStan\File\RelativePathHelper - { - return new PHPStan\File\FuzzyRelativePathHelper( - $this->getService('parentDirectoryRelativePathHelper'), - '/home/jordan/projects/knowledge', - $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('031')); - } - - - public function createServiceRules__10(): PHPStan\Rules\Api\ApiTraitUseRule - { - return new PHPStan\Rules\Api\ApiTraitUseRule($this->getService('0121'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__100(): PHPStan\Rules\Constants\ValueAssignedToClassConstantRule - { - return new PHPStan\Rules\Constants\ValueAssignedToClassConstantRule; - } - - - public function createServiceRules__101(): PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule - { - return new PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule; - } - - - public function createServiceRules__102(): PHPStan\Rules\Generics\ClassAncestorsRule - { - return new PHPStan\Rules\Generics\ClassAncestorsRule($this->getService('0145'), $this->getService('0144')); - } - - - public function createServiceRules__103(): PHPStan\Rules\Generics\ClassTemplateTypeRule - { - return new PHPStan\Rules\Generics\ClassTemplateTypeRule($this->getService('0148')); - } - - - public function createServiceRules__104(): PHPStan\Rules\Generics\EnumAncestorsRule - { - return new PHPStan\Rules\Generics\EnumAncestorsRule($this->getService('0145'), $this->getService('0144')); - } - - - public function createServiceRules__105(): PHPStan\Rules\Generics\EnumTemplateTypeRule - { - return new PHPStan\Rules\Generics\EnumTemplateTypeRule; - } - - - public function createServiceRules__106(): PHPStan\Rules\Generics\FunctionTemplateTypeRule - { - return new PHPStan\Rules\Generics\FunctionTemplateTypeRule($this->getService('0172'), $this->getService('0148')); - } - - - public function createServiceRules__107(): PHPStan\Rules\Generics\FunctionSignatureVarianceRule - { - return new PHPStan\Rules\Generics\FunctionSignatureVarianceRule($this->getService('0149')); - } - - - public function createServiceRules__108(): PHPStan\Rules\Generics\InterfaceAncestorsRule - { - return new PHPStan\Rules\Generics\InterfaceAncestorsRule($this->getService('0145'), $this->getService('0144')); - } - - - public function createServiceRules__109(): PHPStan\Rules\Generics\InterfaceTemplateTypeRule - { - return new PHPStan\Rules\Generics\InterfaceTemplateTypeRule($this->getService('0148')); - } - - - public function createServiceRules__11(): PHPStan\Rules\Api\GetTemplateTypeRule - { - return new PHPStan\Rules\Api\GetTemplateTypeRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__110(): PHPStan\Rules\Generics\MethodTemplateTypeRule - { - return new PHPStan\Rules\Generics\MethodTemplateTypeRule($this->getService('0172'), $this->getService('0148')); - } - - - public function createServiceRules__111(): PHPStan\Rules\Generics\MethodTagTemplateTypeRule - { - return new PHPStan\Rules\Generics\MethodTagTemplateTypeRule($this->getService('0147')); - } - - - public function createServiceRules__112(): PHPStan\Rules\Generics\MethodSignatureVarianceRule - { - return new PHPStan\Rules\Generics\MethodSignatureVarianceRule($this->getService('0149')); - } - - - public function createServiceRules__113(): PHPStan\Rules\Generics\TraitTemplateTypeRule - { - return new PHPStan\Rules\Generics\TraitTemplateTypeRule($this->getService('0172'), $this->getService('0148')); - } - - - public function createServiceRules__114(): PHPStan\Rules\Generics\UsedTraitsRule - { - return new PHPStan\Rules\Generics\UsedTraitsRule($this->getService('0172'), $this->getService('0145')); - } - - - public function createServiceRules__115(): PHPStan\Rules\Methods\CallPrivateMethodThroughStaticRule - { - return new PHPStan\Rules\Methods\CallPrivateMethodThroughStaticRule; - } - - - public function createServiceRules__116(): PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule - { - return new PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule; - } - - - public function createServiceRules__117(): PHPStan\Rules\Operators\InvalidComparisonOperationRule - { - return new PHPStan\Rules\Operators\InvalidComparisonOperationRule($this->getService('0169')); - } - - - public function createServiceRules__118(): PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule - { - return new PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule($this->getService('0159')); - } - - - public function createServiceRules__119(): PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule - { - return new PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule($this->getService('0159')); - } - - - public function createServiceRules__12(): PHPStan\Rules\Api\PhpStanNamespaceIn3rdPartyPackageRule - { - return new PHPStan\Rules\Api\PhpStanNamespaceIn3rdPartyPackageRule($this->getService('0121')); - } - - - public function createServiceRules__120(): PHPStan\Rules\PhpDoc\FunctionAssertRule - { - return new PHPStan\Rules\PhpDoc\FunctionAssertRule($this->getService('0160')); - } - - - public function createServiceRules__121(): PHPStan\Rules\PhpDoc\MethodAssertRule - { - return new PHPStan\Rules\PhpDoc\MethodAssertRule($this->getService('0160')); - } - - - public function createServiceRules__122(): PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule - { - return new PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule($this->getService('0161'), $this->getService('0146')); - } - - - public function createServiceRules__123(): PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule - { - return new PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule($this->getService('0146'), $this->getService('0161')); - } - - - public function createServiceRules__124(): PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule - { - return new PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule( - $this->getService('0172'), - $this->getService('0146'), - $this->getService('0161'), - $this->getService('0162') - ); - } - - - public function createServiceRules__125(): PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule - { - return new PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule( - $this->getService('0146'), - $this->getService('0161'), - $this->getService('0162') - ); - } - - - public function createServiceRules__126(): PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule - { - return new PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule($this->getService('0172')); - } - - - public function createServiceRules__127(): PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule - { - return new PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule($this->getService('0172')); - } - - - public function createServiceRules__128(): PHPStan\Rules\Properties\AccessPrivatePropertyThroughStaticRule - { - return new PHPStan\Rules\Properties\AccessPrivatePropertyThroughStaticRule; - } - - - public function createServiceRules__129(): PHPStan\Rules\Classes\RequireImplementsRule - { - return new PHPStan\Rules\Classes\RequireImplementsRule; - } - - - public function createServiceRules__13(): PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule - { - return new PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule($this->getService('021')); - } - - - public function createServiceRules__130(): PHPStan\Rules\Classes\RequireExtendsRule - { - return new PHPStan\Rules\Classes\RequireExtendsRule; - } - - - public function createServiceRules__131(): PHPStan\Rules\PhpDoc\RequireImplementsDefinitionClassRule - { - return new PHPStan\Rules\PhpDoc\RequireImplementsDefinitionClassRule; - } - - - public function createServiceRules__132(): PHPStan\Rules\PhpDoc\RequireExtendsDefinitionClassRule - { - return new PHPStan\Rules\PhpDoc\RequireExtendsDefinitionClassRule($this->getService('0400')); - } - - - public function createServiceRules__133(): PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule - { - return new PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule( - $this->getService('reflectionProvider'), - $this->getService('0400') - ); - } - - - public function createServiceRules__134(): PHPStan\Rules\Arrays\ArrayDestructuringRule - { - return new PHPStan\Rules\Arrays\ArrayDestructuringRule($this->getService('0169'), $this->getService('0123')); - } - - - public function createServiceRules__135(): PHPStan\Rules\Arrays\IterableInForeachRule - { - return new PHPStan\Rules\Arrays\IterableInForeachRule($this->getService('0169')); - } - - - public function createServiceRules__136(): PHPStan\Rules\Arrays\OffsetAccessAssignmentRule - { - return new PHPStan\Rules\Arrays\OffsetAccessAssignmentRule($this->getService('0169')); - } - - - public function createServiceRules__137(): PHPStan\Rules\Arrays\OffsetAccessAssignOpRule - { - return new PHPStan\Rules\Arrays\OffsetAccessAssignOpRule($this->getService('0169')); - } - - - public function createServiceRules__138(): PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule - { - return new PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule($this->getService('0169')); - } - - - public function createServiceRules__139(): PHPStan\Rules\Arrays\UnpackIterableInArrayRule - { - return new PHPStan\Rules\Arrays\UnpackIterableInArrayRule($this->getService('0169')); - } - - - public function createServiceRules__14(): PHPStan\Rules\Arrays\EmptyArrayItemRule - { - return new PHPStan\Rules\Arrays\EmptyArrayItemRule; - } - - - public function createServiceRules__140(): PHPStan\Rules\Exceptions\ThrowExprTypeRule - { - return new PHPStan\Rules\Exceptions\ThrowExprTypeRule($this->getService('0169')); - } - - - public function createServiceRules__141(): PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule - { - return new PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule($this->getService('0142')); - } - - - public function createServiceRules__142(): PHPStan\Rules\Functions\ClosureReturnTypeRule - { - return new PHPStan\Rules\Functions\ClosureReturnTypeRule($this->getService('0142')); - } - - - public function createServiceRules__143(): PHPStan\Rules\Functions\ReturnTypeRule - { - return new PHPStan\Rules\Functions\ReturnTypeRule($this->getService('0142')); - } - - - public function createServiceRules__144(): PHPStan\Rules\Generators\YieldTypeRule - { - return new PHPStan\Rules\Generators\YieldTypeRule($this->getService('0169')); - } - - - public function createServiceRules__145(): PHPStan\Rules\Methods\ReturnTypeRule - { - return new PHPStan\Rules\Methods\ReturnTypeRule($this->getService('0142')); - } - - - public function createServiceRules__146(): PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule - { - return new PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule($this->getService('0169')); - } - - - public function createServiceRules__147(): PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule - { - return new PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule($this->getService('0167'), $this->getService('0384')); - } - - - public function createServiceRules__148(): PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule - { - return new PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule($this->getService('0167')); - } - - - public function createServiceRules__149(): PHPStan\Rules\Properties\TypesAssignedToPropertiesRule - { - return new PHPStan\Rules\Properties\TypesAssignedToPropertiesRule($this->getService('0169'), $this->getService('0167')); - } - - - public function createServiceRules__15(): PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule - { - return new PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule; - } - - - public function createServiceRules__150(): PHPStan\Rules\Variables\ThrowTypeRule - { - return new PHPStan\Rules\Variables\ThrowTypeRule($this->getService('0169')); - } - - - public function createServiceRules__151(): PHPStan\Rules\Variables\VariableCloningRule - { - return new PHPStan\Rules\Variables\VariableCloningRule($this->getService('0169')); - } - - - public function createServiceRules__152(): PHPStan\Rules\Arrays\DeadForeachRule - { - return new PHPStan\Rules\Arrays\DeadForeachRule; - } - - - public function createServiceRules__153(): PHPStan\Rules\DeadCode\UnreachableStatementRule - { - return new PHPStan\Rules\DeadCode\UnreachableStatementRule; - } - - - public function createServiceRules__154(): PHPStan\Rules\DeadCode\UnusedPrivateConstantRule - { - return new PHPStan\Rules\DeadCode\UnusedPrivateConstantRule($this->getService('0157')); - } - - - public function createServiceRules__155(): PHPStan\Rules\DeadCode\UnusedPrivateMethodRule - { - return new PHPStan\Rules\DeadCode\UnusedPrivateMethodRule($this->getService('0158')); - } - - - public function createServiceRules__156(): PHPStan\Rules\Exceptions\OverwrittenExitPointByFinallyRule - { - return new PHPStan\Rules\Exceptions\OverwrittenExitPointByFinallyRule; - } - - - public function createServiceRules__157(): PHPStan\Rules\Functions\CallToFunctionStatementWithoutSideEffectsRule - { - return new PHPStan\Rules\Functions\CallToFunctionStatementWithoutSideEffectsRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__158(): PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule - { - return new PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule($this->getService('0169')); - } - - - public function createServiceRules__159(): PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule - { - return new PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule( - $this->getService('0169'), - $this->getService('reflectionProvider') - ); - } - - - public function createServiceRules__16(): PHPStan\Rules\Cast\UnsetCastRule - { - return new PHPStan\Rules\Cast\UnsetCastRule($this->getService('024')); - } - - - public function createServiceRules__160(): PHPStan\Rules\Methods\NullsafeMethodCallRule - { - return new PHPStan\Rules\Methods\NullsafeMethodCallRule; - } - - - public function createServiceRules__161(): PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule; - } - - - public function createServiceRules__162(): PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule; - } - - - public function createServiceRules__163(): PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule - { - return new PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule; - } - - - public function createServiceRules__164(): PHPStan\Rules\DateTimeInstantiationRule - { - return new PHPStan\Rules\DateTimeInstantiationRule; - } - - - public function createServiceRules__165(): PHPStan\Rules\Constants\MissingClassConstantTypehintRule - { - return new PHPStan\Rules\Constants\MissingClassConstantTypehintRule($this->getService('0155')); - } - - - public function createServiceRules__166(): PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule - { - return new PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule($this->getService('0155')); - } - - - public function createServiceRules__167(): PHPStan\Rules\Methods\MissingMethodReturnTypehintRule - { - return new PHPStan\Rules\Methods\MissingMethodReturnTypehintRule($this->getService('0155')); - } - - - public function createServiceRules__168(): PHPStan\Rules\Properties\MissingPropertyTypehintRule - { - return new PHPStan\Rules\Properties\MissingPropertyTypehintRule($this->getService('0155')); - } - - - public function createServiceRules__169(): PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule - { - return new PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule( - $this->getService('reflectionProvider'), - $this->getService('0488') - ); - } - - - public function createServiceRules__17(): PHPStan\Rules\Classes\AllowedSubTypesRule - { - return new PHPStan\Rules\Classes\AllowedSubTypesRule; - } - - - public function createServiceRules__170(): PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule - { - return new PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule( - $this->getService('reflectionProvider'), - $this->getService('0169'), - $this->getService('0488') - ); - } - - - public function createServiceRules__171(): PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule - { - return new PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule( - $this->getService('reflectionProvider'), - $this->getService('0488') - ); - } - - - public function createServiceRules__172(): PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule - { - return new PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule( - $this->getService('reflectionProvider'), - $this->getService('0488') - ); - } - - - public function createServiceRules__173(): PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule - { - return new PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule( - $this->getService('reflectionProvider'), - $this->getService('0169'), - $this->getService('0488') - ); - } - - - public function createServiceRules__174(): PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule - { - return new PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule( - $this->getService('reflectionProvider'), - $this->getService('0169'), - $this->getService('0488') - ); - } - - - public function createServiceRules__175(): PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule - { - return new PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule( - $this->getService('reflectionProvider'), - $this->getService('0488') - ); - } - - - public function createServiceRules__176(): PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule - { - return new PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule( - $this->getService('reflectionProvider'), - $this->getService('0488') - ); - } - - - public function createServiceRules__177(): PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule - { - return new PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule( - $this->getService('reflectionProvider'), - $this->getService('0488') - ); - } - - - public function createServiceRules__178(): PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule - { - return new PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__179(): PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule - { - return new PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule( - $this->getService('reflectionProvider'), - $this->getService('0169'), - $this->getService('0488') - ); - } - - - public function createServiceRules__18(): PHPStan\Rules\Classes\ClassAttributesRule - { - return new PHPStan\Rules\Classes\ClassAttributesRule($this->getService('0122')); - } - - - public function createServiceRules__180(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule - { - return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule( - $this->getService('0486'), - $this->getService('0488') - ); - } - - - public function createServiceRules__181(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule - { - return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule( - $this->getService('0486'), - $this->getService('0488') - ); - } - - - public function createServiceRules__182(): PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule - { - return new PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule( - $this->getService('0486'), - $this->getService('0488') - ); - } - - - public function createServiceRules__183(): PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule - { - return new PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule($this->getService('0488')); - } - - - public function createServiceRules__184(): PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule - { - return new PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule( - $this->getService('reflectionProvider'), - $this->getService('0488') - ); - } - - - public function createServiceRules__19(): PHPStan\Rules\Classes\ClassConstantAttributesRule - { - return new PHPStan\Rules\Classes\ClassConstantAttributesRule($this->getService('0122')); - } - - - public function createServiceRules__2(): PHPStan\Rules\Debug\DumpTypeRule - { - return new PHPStan\Rules\Debug\DumpTypeRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__20(): PHPStan\Rules\Classes\ClassConstantRule - { - return new PHPStan\Rules\Classes\ClassConstantRule( - $this->getService('reflectionProvider'), - $this->getService('0169'), - $this->getService('0124'), - $this->getService('024') - ); - } - - - public function createServiceRules__21(): PHPStan\Rules\Classes\DuplicateDeclarationRule - { - return new PHPStan\Rules\Classes\DuplicateDeclarationRule; - } - - - public function createServiceRules__22(): PHPStan\Rules\Classes\EnumSanityRule - { - return new PHPStan\Rules\Classes\EnumSanityRule; - } - - - public function createServiceRules__23(): PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule - { - return new PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule( - $this->getService('0124'), - $this->getService('reflectionProvider') - ); - } - - - public function createServiceRules__24(): PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule - { - return new PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule( - $this->getService('0124'), - $this->getService('reflectionProvider') - ); - } - - - public function createServiceRules__25(): PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule - { - return new PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule( - $this->getService('0124'), - $this->getService('reflectionProvider') - ); - } - - - public function createServiceRules__26(): PHPStan\Rules\Classes\ExistingClassInTraitUseRule - { - return new PHPStan\Rules\Classes\ExistingClassInTraitUseRule($this->getService('0124'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__27(): PHPStan\Rules\Classes\InstantiationRule - { - return new PHPStan\Rules\Classes\InstantiationRule( - $this->getService('reflectionProvider'), - $this->getService('0140'), - $this->getService('0124') - ); - } - - - public function createServiceRules__28(): PHPStan\Rules\Classes\InstantiationCallableRule - { - return new PHPStan\Rules\Classes\InstantiationCallableRule; - } - - - public function createServiceRules__29(): PHPStan\Rules\Classes\InvalidPromotedPropertiesRule - { - return new PHPStan\Rules\Classes\InvalidPromotedPropertiesRule($this->getService('024')); - } - - - public function createServiceRules__3(): PHPStan\Rules\Debug\FileAssertRule - { - return new PHPStan\Rules\Debug\FileAssertRule($this->getService('reflectionProvider')); - } - - - public function createServiceRules__30(): PHPStan\Rules\Classes\LocalTypeAliasesRule - { - return new PHPStan\Rules\Classes\LocalTypeAliasesRule($this->getService('0127')); - } - - - public function createServiceRules__31(): PHPStan\Rules\Classes\LocalTypeTraitAliasesRule - { - return new PHPStan\Rules\Classes\LocalTypeTraitAliasesRule($this->getService('0127'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__32(): PHPStan\Rules\Classes\NewStaticRule - { - return new PHPStan\Rules\Classes\NewStaticRule; - } - - - public function createServiceRules__33(): PHPStan\Rules\Classes\NonClassAttributeClassRule - { - return new PHPStan\Rules\Classes\NonClassAttributeClassRule; - } - - - public function createServiceRules__34(): PHPStan\Rules\Classes\ReadOnlyClassRule - { - return new PHPStan\Rules\Classes\ReadOnlyClassRule($this->getService('024')); - } - - - public function createServiceRules__35(): PHPStan\Rules\Classes\TraitAttributeClassRule - { - return new PHPStan\Rules\Classes\TraitAttributeClassRule; - } - - - public function createServiceRules__36(): PHPStan\Rules\Constants\ClassAsClassConstantRule - { - return new PHPStan\Rules\Constants\ClassAsClassConstantRule; - } - - - public function createServiceRules__37(): PHPStan\Rules\Constants\DynamicClassConstantFetchRule - { - return new PHPStan\Rules\Constants\DynamicClassConstantFetchRule($this->getService('024'), $this->getService('0169')); - } - - - public function createServiceRules__38(): PHPStan\Rules\Constants\FinalConstantRule - { - return new PHPStan\Rules\Constants\FinalConstantRule($this->getService('024')); - } - - - public function createServiceRules__39(): PHPStan\Rules\Constants\NativeTypedClassConstantRule - { - return new PHPStan\Rules\Constants\NativeTypedClassConstantRule($this->getService('024')); - } - - - public function createServiceRules__4(): PHPStan\Rules\Api\ApiInstantiationRule - { - return new PHPStan\Rules\Api\ApiInstantiationRule($this->getService('0121'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__40(): PHPStan\Rules\EnumCases\EnumCaseAttributesRule - { - return new PHPStan\Rules\EnumCases\EnumCaseAttributesRule($this->getService('0122')); - } - - - public function createServiceRules__41(): PHPStan\Rules\Exceptions\NoncapturingCatchRule - { - return new PHPStan\Rules\Exceptions\NoncapturingCatchRule($this->getService('024')); - } - - - public function createServiceRules__42(): PHPStan\Rules\Exceptions\ThrowExpressionRule - { - return new PHPStan\Rules\Exceptions\ThrowExpressionRule($this->getService('024')); - } - - - public function createServiceRules__43(): PHPStan\Rules\Functions\ArrowFunctionAttributesRule - { - return new PHPStan\Rules\Functions\ArrowFunctionAttributesRule($this->getService('0122')); - } - - - public function createServiceRules__44(): PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule - { - return new PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule($this->getService('0156')); - } - - - public function createServiceRules__45(): PHPStan\Rules\Functions\ClosureAttributesRule - { - return new PHPStan\Rules\Functions\ClosureAttributesRule($this->getService('0122')); - } - - - public function createServiceRules__46(): PHPStan\Rules\Functions\DefineParametersRule - { - return new PHPStan\Rules\Functions\DefineParametersRule($this->getService('024')); - } - - - public function createServiceRules__47(): PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule - { - return new PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule( - $this->getService('0141'), - $this->getService('024') - ); - } - - - public function createServiceRules__48(): PHPStan\Rules\Functions\CallToFunctionParametersRule - { - return new PHPStan\Rules\Functions\CallToFunctionParametersRule( - $this->getService('reflectionProvider'), - $this->getService('0140') - ); - } - - - public function createServiceRules__49(): PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule - { - return new PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule($this->getService('0141')); - } - - - public function createServiceRules__5(): PHPStan\Rules\Api\ApiClassExtendsRule - { - return new PHPStan\Rules\Api\ApiClassExtendsRule($this->getService('0121'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__50(): PHPStan\Rules\Functions\ExistingClassesInTypehintsRule - { - return new PHPStan\Rules\Functions\ExistingClassesInTypehintsRule($this->getService('0141')); - } - - - public function createServiceRules__51(): PHPStan\Rules\Functions\FunctionAttributesRule - { - return new PHPStan\Rules\Functions\FunctionAttributesRule($this->getService('0122')); - } - - - public function createServiceRules__52(): PHPStan\Rules\Functions\InnerFunctionRule - { - return new PHPStan\Rules\Functions\InnerFunctionRule; - } - - - public function createServiceRules__53(): PHPStan\Rules\Functions\InvalidLexicalVariablesInClosureUseRule - { - return new PHPStan\Rules\Functions\InvalidLexicalVariablesInClosureUseRule; - } - - - public function createServiceRules__54(): PHPStan\Rules\Functions\ParamAttributesRule - { - return new PHPStan\Rules\Functions\ParamAttributesRule($this->getService('0122')); - } - - - public function createServiceRules__55(): PHPStan\Rules\Functions\PrintfParametersRule - { - return new PHPStan\Rules\Functions\PrintfParametersRule($this->getService('0345'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__56(): PHPStan\Rules\Functions\RedefinedParametersRule - { - return new PHPStan\Rules\Functions\RedefinedParametersRule; - } - - - public function createServiceRules__57(): PHPStan\Rules\Functions\ReturnNullsafeByRefRule - { - return new PHPStan\Rules\Functions\ReturnNullsafeByRefRule($this->getService('0156')); - } - - - public function createServiceRules__58(): PHPStan\Rules\Ignore\IgnoreParseErrorRule - { - return new PHPStan\Rules\Ignore\IgnoreParseErrorRule; - } - - - public function createServiceRules__59(): PHPStan\Rules\Functions\VariadicParametersDeclarationRule - { - return new PHPStan\Rules\Functions\VariadicParametersDeclarationRule; - } - - - public function createServiceRules__6(): PHPStan\Rules\Api\ApiClassImplementsRule - { - return new PHPStan\Rules\Api\ApiClassImplementsRule($this->getService('0121'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__60(): PHPStan\Rules\Keywords\ContinueBreakInLoopRule - { - return new PHPStan\Rules\Keywords\ContinueBreakInLoopRule; - } - - - public function createServiceRules__61(): PHPStan\Rules\Keywords\DeclareStrictTypesRule - { - return new PHPStan\Rules\Keywords\DeclareStrictTypesRule($this->getService('021')); - } - - - public function createServiceRules__62(): PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule - { - return new PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule; - } - - - public function createServiceRules__63(): PHPStan\Rules\Methods\AbstractPrivateMethodRule - { - return new PHPStan\Rules\Methods\AbstractPrivateMethodRule; - } - - - public function createServiceRules__64(): PHPStan\Rules\Methods\CallMethodsRule - { - return new PHPStan\Rules\Methods\CallMethodsRule($this->getService('0151'), $this->getService('0140')); - } - - - public function createServiceRules__65(): PHPStan\Rules\Methods\CallStaticMethodsRule - { - return new PHPStan\Rules\Methods\CallStaticMethodsRule($this->getService('0152'), $this->getService('0140')); - } - - - public function createServiceRules__66(): PHPStan\Rules\Methods\ConstructorReturnTypeRule - { - return new PHPStan\Rules\Methods\ConstructorReturnTypeRule; - } - - - public function createServiceRules__67(): PHPStan\Rules\Methods\ExistingClassesInTypehintsRule - { - return new PHPStan\Rules\Methods\ExistingClassesInTypehintsRule($this->getService('0141')); - } - - - public function createServiceRules__68(): PHPStan\Rules\Methods\FinalPrivateMethodRule - { - return new PHPStan\Rules\Methods\FinalPrivateMethodRule($this->getService('024')); - } - - - public function createServiceRules__69(): PHPStan\Rules\Methods\MethodCallableRule - { - return new PHPStan\Rules\Methods\MethodCallableRule($this->getService('0151'), $this->getService('024')); - } - - - public function createServiceRules__7(): PHPStan\Rules\Api\ApiInterfaceExtendsRule - { - return new PHPStan\Rules\Api\ApiInterfaceExtendsRule($this->getService('0121'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__70(): PHPStan\Rules\Methods\MethodVisibilityInInterfaceRule - { - return new PHPStan\Rules\Methods\MethodVisibilityInInterfaceRule; - } - - - public function createServiceRules__71(): PHPStan\Rules\Methods\MissingMethodImplementationRule - { - return new PHPStan\Rules\Methods\MissingMethodImplementationRule; - } - - - public function createServiceRules__72(): PHPStan\Rules\Methods\MethodAttributesRule - { - return new PHPStan\Rules\Methods\MethodAttributesRule($this->getService('0122')); - } - - - public function createServiceRules__73(): PHPStan\Rules\Methods\StaticMethodCallableRule - { - return new PHPStan\Rules\Methods\StaticMethodCallableRule($this->getService('0152'), $this->getService('024')); - } - - - public function createServiceRules__74(): PHPStan\Rules\Names\UsedNamesRule - { - return new PHPStan\Rules\Names\UsedNamesRule; - } - - - public function createServiceRules__75(): PHPStan\Rules\Operators\InvalidAssignVarRule - { - return new PHPStan\Rules\Operators\InvalidAssignVarRule($this->getService('0156')); - } - - - public function createServiceRules__76(): PHPStan\Rules\Properties\AccessPropertiesInAssignRule - { - return new PHPStan\Rules\Properties\AccessPropertiesInAssignRule($this->getService('0371')); - } - - - public function createServiceRules__77(): PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule - { - return new PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule($this->getService('0372')); - } - - - public function createServiceRules__78(): PHPStan\Rules\Properties\InvalidCallablePropertyTypeRule - { - return new PHPStan\Rules\Properties\InvalidCallablePropertyTypeRule; - } - - - public function createServiceRules__79(): PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule - { - return new PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule($this->getService('0384')); - } - - - public function createServiceRules__8(): PHPStan\Rules\Api\ApiMethodCallRule - { - return new PHPStan\Rules\Api\ApiMethodCallRule($this->getService('0121')); - } - - - public function createServiceRules__80(): PHPStan\Rules\Properties\PropertiesInInterfaceRule - { - return new PHPStan\Rules\Properties\PropertiesInInterfaceRule; - } - - - public function createServiceRules__81(): PHPStan\Rules\Properties\PropertyAttributesRule - { - return new PHPStan\Rules\Properties\PropertyAttributesRule($this->getService('0122')); - } - - - public function createServiceRules__82(): PHPStan\Rules\Properties\ReadOnlyPropertyRule - { - return new PHPStan\Rules\Properties\ReadOnlyPropertyRule($this->getService('024')); - } - - - public function createServiceRules__83(): PHPStan\Rules\Traits\ConflictingTraitConstantsRule - { - return new PHPStan\Rules\Traits\ConflictingTraitConstantsRule($this->getService('092')); - } - - - public function createServiceRules__84(): PHPStan\Rules\Traits\ConstantsInTraitsRule - { - return new PHPStan\Rules\Traits\ConstantsInTraitsRule($this->getService('024')); - } - - - public function createServiceRules__85(): PHPStan\Rules\Types\InvalidTypesInUnionRule - { - return new PHPStan\Rules\Types\InvalidTypesInUnionRule; - } - - - public function createServiceRules__86(): PHPStan\Rules\Variables\UnsetRule - { - return new PHPStan\Rules\Variables\UnsetRule; - } - - - public function createServiceRules__87(): PHPStan\Rules\Whitespace\FileWhitespaceRule - { - return new PHPStan\Rules\Whitespace\FileWhitespaceRule; - } - - - public function createServiceRules__88(): PHPStan\Rules\Classes\UnusedConstructorParametersRule - { - return new PHPStan\Rules\Classes\UnusedConstructorParametersRule($this->getService('0170')); - } - - - public function createServiceRules__89(): PHPStan\Rules\Constants\ConstantRule - { - return new PHPStan\Rules\Constants\ConstantRule; - } - - - public function createServiceRules__9(): PHPStan\Rules\Api\ApiStaticCallRule - { - return new PHPStan\Rules\Api\ApiStaticCallRule($this->getService('0121'), $this->getService('reflectionProvider')); - } - - - public function createServiceRules__90(): PHPStan\Rules\Functions\UnusedClosureUsesRule - { - return new PHPStan\Rules\Functions\UnusedClosureUsesRule($this->getService('0170')); - } - - - public function createServiceRules__91(): PHPStan\Rules\Variables\EmptyRule - { - return new PHPStan\Rules\Variables\EmptyRule($this->getService('0150')); - } - - - public function createServiceRules__92(): PHPStan\Rules\Variables\IssetRule - { - return new PHPStan\Rules\Variables\IssetRule($this->getService('0150')); - } - - - public function createServiceRules__93(): PHPStan\Rules\Variables\NullCoalesceRule - { - return new PHPStan\Rules\Variables\NullCoalesceRule($this->getService('0150')); - } - - - public function createServiceRules__94(): PHPStan\Rules\Cast\EchoRule - { - return new PHPStan\Rules\Cast\EchoRule($this->getService('0169')); - } - - - public function createServiceRules__95(): PHPStan\Rules\Cast\InvalidCastRule - { - return new PHPStan\Rules\Cast\InvalidCastRule($this->getService('reflectionProvider'), $this->getService('0169')); - } - - - public function createServiceRules__96(): PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule - { - return new PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule($this->getService('021'), $this->getService('0169')); - } - - - public function createServiceRules__97(): PHPStan\Rules\Cast\PrintRule - { - return new PHPStan\Rules\Cast\PrintRule($this->getService('0169')); - } - - - public function createServiceRules__98(): PHPStan\Rules\Classes\AccessPrivateConstantThroughStaticRule - { - return new PHPStan\Rules\Classes\AccessPrivateConstantThroughStaticRule; - } - - - public function createServiceRules__99(): PHPStan\Rules\Comparison\UsageOfVoidMatchExpressionRule - { - return new PHPStan\Rules\Comparison\UsageOfVoidMatchExpressionRule; - } - - - public function createServiceSimpleRelativePathHelper(): PHPStan\File\RelativePathHelper - { - return new PHPStan\File\SimpleRelativePathHelper('/home/jordan/projects/knowledge'); - } - - - public function createServiceStubPhpDocProvider(): PHPStan\PhpDoc\StubPhpDocProvider - { - return new PHPStan\PhpDoc\StubPhpDocProvider( - $this->getService('defaultAnalysisParser'), - $this->getService('0172'), - $this->getService('043') - ); - } - - - public function createServiceTypeSpecifier(): PHPStan\Analyser\TypeSpecifier - { - return $this->getService('typeSpecifierFactory')->create(); - } - - - public function createServiceTypeSpecifierFactory(): PHPStan\Analyser\TypeSpecifierFactory - { - return new PHPStan\Analyser\TypeSpecifierFactory($this->getService('071')); - } - - - public function initialize(): void - { - } - - - protected function getStaticParameters(): array - { - return [ - 'bootstrapFiles' => [ - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionUnionType.php', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionAttribute.php', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/Attribute.php', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionIntersectionType.php', - ], - 'excludes_analyse' => [], - 'excludePaths' => null, - 'level' => 8, - 'paths' => ['/home/jordan/projects/knowledge/app', '/home/jordan/projects/knowledge/config'], - 'exceptions' => [ - 'implicitThrows' => true, - 'reportUncheckedExceptionDeadCatch' => true, - 'uncheckedExceptionRegexes' => [], - 'uncheckedExceptionClasses' => [], - 'checkedExceptionRegexes' => [], - 'checkedExceptionClasses' => [], - 'check' => ['missingCheckedExceptionInThrows' => false, 'tooWideThrowType' => false], - ], - 'featureToggles' => [ - 'bleedingEdge' => false, - 'disableRuntimeReflectionProvider' => true, - 'skipCheckGenericClasses' => [ - 'DatePeriod', - 'CallbackFilterIterator', - 'FilterIterator', - 'RecursiveCallbackFilterIterator', - 'AppendIterator', - 'NoRewindIterator', - 'LimitIterator', - 'InfiniteIterator', - 'CachingIterator', - 'RegexIterator', - 'ReflectionEnum', - ], - 'explicitMixedInUnknownGenericNew' => false, - 'explicitMixedForGlobalVariables' => false, - 'explicitMixedViaIsArray' => false, - 'arrayFilter' => false, - 'arrayUnpacking' => false, - 'arrayValues' => false, - 'nodeConnectingVisitorCompatibility' => true, - 'nodeConnectingVisitorRule' => false, - 'illegalConstructorMethodCall' => false, - 'disableCheckMissingIterableValueType' => false, - 'strictUnnecessaryNullsafePropertyFetch' => false, - 'looseComparison' => false, - 'consistentConstructor' => false, - 'checkUnresolvableParameterTypes' => false, - 'readOnlyByPhpDoc' => false, - 'phpDocParserRequireWhitespaceBeforeDescription' => false, - 'phpDocParserIncludeLines' => false, - 'enableIgnoreErrorsWithinPhpDocs' => false, - 'runtimeReflectionRules' => false, - 'notAnalysedTrait' => false, - 'curlSetOptTypes' => false, - 'listType' => false, - 'abstractTraitMethod' => false, - 'missingMagicSerializationRule' => false, - 'nullContextForVoidReturningFunctions' => false, - 'unescapeStrings' => false, - 'alwaysCheckTooWideReturnTypeFinalMethods' => false, - 'duplicateStubs' => false, - 'logicalXor' => false, - 'betterNoop' => false, - 'invarianceComposition' => false, - 'alwaysTrueAlwaysReported' => false, - 'disableUnreachableBranchesRules' => false, - 'varTagType' => false, - 'closureDefaultParameterTypeRule' => false, - 'newRuleLevelHelper' => false, - 'instanceofType' => false, - 'paramOutVariance' => false, - 'allInvalidPhpDocs' => false, - 'strictStaticMethodTemplateTypeVariance' => false, - 'propertyVariance' => false, - 'genericPrototypeMessage' => false, - 'stricterFunctionMap' => false, - 'invalidPhpDocTagLine' => false, - 'detectDeadTypeInMultiCatch' => false, - 'zeroFiles' => false, - 'projectServicesNotInAnalysedPaths' => false, - 'callUserFunc' => false, - 'finalByPhpDoc' => false, - 'magicConstantOutOfContext' => false, - 'paramOutType' => false, - 'pure' => false, - 'checkParameterCastableToStringFunctions' => false, - 'uselessReturnValue' => false, - 'printfArrayParameters' => false, - 'preciseMissingReturn' => false, - 'validatePregQuote' => false, - 'noImplicitWildcard' => false, - 'requireFileExists' => false, - 'narrowPregMatches' => true, - 'tooWidePropertyType' => false, - 'explicitThrow' => false, - 'absentTypeChecks' => false, - ], - 'fileExtensions' => ['php'], - 'checkAdvancedIsset' => true, - 'checkAlwaysTrueCheckTypeFunctionCall' => true, - 'checkAlwaysTrueInstanceof' => true, - 'checkAlwaysTrueStrictComparison' => true, - 'checkAlwaysTrueLooseComparison' => true, - 'reportAlwaysTrueInLastCondition' => false, - 'checkClassCaseSensitivity' => true, - 'checkExplicitMixed' => false, - 'checkImplicitMixed' => false, - 'checkFunctionArgumentTypes' => true, - 'checkFunctionNameCase' => true, - 'checkGenericClassInNonGenericObjectType' => true, - 'checkInternalClassCaseSensitivity' => true, - 'checkMissingIterableValueType' => true, - 'checkMissingCallableSignature' => false, - 'checkMissingVarTagTypehint' => true, - 'checkArgumentsPassedByReference' => true, - 'checkMaybeUndefinedVariables' => true, - 'checkNullables' => true, - 'checkThisOnly' => false, - 'checkUnionTypes' => true, - 'checkBenevolentUnionTypes' => false, - 'checkExplicitMixedMissingReturn' => true, - 'checkPhpDocMissingReturn' => true, - 'checkPhpDocMethodSignatures' => true, - 'checkExtraArguments' => true, - 'checkMissingTypehints' => true, - 'checkTooWideReturnTypesInProtectedAndPublicMethods' => false, - 'checkUninitializedProperties' => false, - 'checkDynamicProperties' => false, - 'deprecationRulesInstalled' => true, - 'inferPrivatePropertyTypeFromConstructor' => false, - 'reportMaybes' => true, - 'reportMaybesInMethodSignatures' => true, - 'reportMaybesInPropertyPhpDocTypes' => true, - 'reportStaticMethodSignatures' => true, - 'reportWrongPhpDocTypeInVarTag' => false, - 'reportAnyTypeWideningInVarTag' => false, - 'reportPossiblyNonexistentGeneralArrayOffset' => false, - 'reportPossiblyNonexistentConstantArrayOffset' => false, - 'checkMissingOverrideMethodAttribute' => false, - 'mixinExcludeClasses' => [], - 'scanFiles' => [], - 'scanDirectories' => [], - 'parallel' => [ - 'jobSize' => 20, - 'processTimeout' => 600.0, - 'maximumNumberOfProcesses' => 1, - 'minimumNumberOfJobsPerProcess' => 2, - 'buffer' => 134217728, - ], - 'phpVersion' => null, - 'polluteScopeWithLoopInitialAssignments' => false, - 'polluteScopeWithAlwaysIterableForeach' => false, - 'propertyAlwaysWrittenTags' => [], - 'propertyAlwaysReadTags' => [], - 'additionalConstructors' => [], - 'treatPhpDocTypesAsCertain' => false, - 'usePathConstantsAsConstantString' => false, - 'rememberPossiblyImpureFunctionValues' => true, - 'tips' => ['treatPhpDocTypesAsCertain' => true], - 'tipsOfTheDay' => true, - 'reportMagicMethods' => true, - 'reportMagicProperties' => true, - 'ignoreErrors' => [ - [ - 'message' => '#^Cannot cast array\|bool\|string\|null to string\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeAddCommand.php', - ], - [ - 'message' => '#^Parameter \#1 \$entry of method App\\\Services\\\QdrantService\:\:upsert\(\) expects array\{id\: int\|string, title\: string, content\: string, tags\?\: array\, category\?\: string, module\?\: string, priority\?\: string, status\?\: string, \.\.\.\}, array\{title\: string, content\: non\-empty\-string, category\: \'architecture\'\|\'debugging\'\|\'deployment\'\|\'security\'\|\'testing\'\|null, module\: string\|null, priority\: \'critical\'\|\'high\'\|\'low\'\|\'medium\', confidence\: int, source\: string\|null, ticket\: string\|null, \.\.\.\} given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeAddCommand.php', - ], - [ - 'message' => '#^Variable \$tags in isset\(\) always exists and is not nullable\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchCommand.php', - ], - [ - 'message' => '#^Short ternary operator is not allowed\. Use null coalesce operator if applicable or consider using long ternary\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchStatusCommand.php', - ], - [ - 'message' => '#^Construct empty\(\) is not allowed\. Use more strict comparison\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - ], - [ - 'message' => '#^Only booleans are allowed in a negated boolean, array\\|int\|string\|null\>\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - ], - [ - 'message' => '#^Only booleans are allowed in an if condition, string\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - ], - [ - 'message' => '#^Parameter \#1 \$id of method App\\\Services\\\QdrantService\:\:getById\(\) expects int\|string, array\|bool\|string\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - ], - [ - 'message' => '#^Parameter \#1 \$id of method App\\\Services\\\QdrantService\:\:incrementUsage\(\) expects int\|string, array\|bool\|string\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - ], - [ - 'message' => '#^Parameter \#1 \$id of method App\\\Services\\\QdrantService\:\:getById\(\) expects int\|string, array\|bool\|string\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php', - ], - [ - 'message' => '#^Parameter \#1 \$id of method App\\\Services\\\QdrantService\:\:updateFields\(\) expects int\|string, array\|bool\|string\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php', - ], - [ - 'message' => '#^Part \$id \(array\|bool\|string\|null\) of encapsed string cannot be cast to string\.$#', - 'count' => 2, - 'path' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php', - ], - [ - 'message' => '#^Method App\\\Commands\\\Service\\\StatusCommand\:\:getContainerStatus\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/Service/StatusCommand.php', - ], - [ - 'message' => '#^Method App\\\Commands\\\Service\\\StatusCommand\:\:performHealthChecks\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/Service/StatusCommand.php', - ], - [ - 'message' => '#^Method App\\\Commands\\\Service\\\StatusCommand\:\:renderDashboard\(\) has parameter \$containers with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/Service/StatusCommand.php', - ], - [ - 'message' => '#^Method App\\\Commands\\\Service\\\StatusCommand\:\:renderDashboard\(\) has parameter \$healthData with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/Service/StatusCommand.php', - ], - [ - 'message' => '#^Only booleans are allowed in a negated boolean, array\|bool\|string\|null given\.$#', - 'count' => 2, - 'path' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - ], - [ - 'message' => '#^Only booleans are allowed in an if condition, array\\|float\|int\|string\|null\>\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - ], - [ - 'message' => '#^Only booleans are allowed in an if condition, array\|bool\|string\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - ], - [ - 'message' => '#^Only booleans are allowed in an if condition, array\|string\|true given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - ], - [ - 'message' => '#^Variable \$allPayload on left side of \?\? always exists and is not nullable\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - ], - [ - 'message' => '#^Method App\\\Contracts\\\FullTextSearchInterface\:\:searchObservations\(\) has invalid return type App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Contracts/FullTextSearchInterface.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Observation in generic type Illuminate\\\Database\\\Eloquent\\\Collection\ in PHPDoc tag @return is not subtype of template type TModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Collection\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Contracts/FullTextSearchInterface.php', - ], - [ - 'message' => '#^Only booleans are allowed in an if condition, string\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/QdrantConnector.php', - ], - [ - 'message' => '#^Method App\\\Integrations\\\Qdrant\\\Requests\\\CreateCollection\:\:defaultBody\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/CreateCollection.php', - ], - [ - 'message' => '#^Method App\\\Integrations\\\Qdrant\\\Requests\\\DeletePoints\:\:defaultBody\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/DeletePoints.php', - ], - [ - 'message' => '#^Method App\\\Integrations\\\Qdrant\\\Requests\\\GetPoints\:\:defaultBody\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/GetPoints.php', - ], - [ - 'message' => '#^Method App\\\Integrations\\\Qdrant\\\Requests\\\SearchPoints\:\:defaultBody\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/SearchPoints.php', - ], - [ - 'message' => '#^Only booleans are allowed in an if condition, array\\|null given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/SearchPoints.php', - ], - [ - 'message' => '#^Method App\\\Integrations\\\Qdrant\\\Requests\\\UpsertPoints\:\:defaultBody\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/UpsertPoints.php', - ], - [ - 'message' => '#^Class App\\\Models\\\Observation not found\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Session.php', - ], - [ - 'message' => '#^Method App\\\Models\\\Session\:\:observations\(\) has invalid return type App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Session.php', - ], - [ - 'message' => '#^Method App\\\Models\\\Session\:\:observations\(\) should return Illuminate\\\Database\\\Eloquent\\\Relations\\\HasMany\ but returns Illuminate\\\Database\\\Eloquent\\\Relations\\\HasMany\\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Session.php', - ], - [ - 'message' => '#^Parameter \#1 \$related of method Illuminate\\\Database\\\Eloquent\\\Model\:\:hasMany\(\) expects class\-string\, string given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Session.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Observation in generic type Illuminate\\\Database\\\Eloquent\\\Relations\\\HasMany\ in PHPDoc tag @return is not subtype of template type TRelatedModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Relations\\\HasMany\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Session.php', - ], - [ - 'message' => '#^Unable to resolve the template type TRelatedModel in call to method Illuminate\\\Database\\\Eloquent\\\Model\:\:hasMany\(\)$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Session.php', - ], - [ - 'message' => '#^Class App\\\Models\\\Entry not found\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Tag.php', - ], - [ - 'message' => '#^Method App\\\Models\\\Tag\:\:entries\(\) has invalid return type App\\\Models\\\Entry\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Tag.php', - ], - [ - 'message' => '#^Method App\\\Models\\\Tag\:\:entries\(\) should return Illuminate\\\Database\\\Eloquent\\\Relations\\\BelongsToMany\ but returns Illuminate\\\Database\\\Eloquent\\\Relations\\\BelongsToMany\\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Tag.php', - ], - [ - 'message' => '#^Parameter \#1 \$related of method Illuminate\\\Database\\\Eloquent\\\Model\:\:belongsToMany\(\) expects class\-string\, string given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Tag.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Entry in generic type Illuminate\\\Database\\\Eloquent\\\Relations\\\BelongsToMany\ in PHPDoc tag @return is not subtype of template type TRelatedModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Relations\\\BelongsToMany\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Tag.php', - ], - [ - 'message' => '#^Unable to resolve the template type TRelatedModel in call to method Illuminate\\\Database\\\Eloquent\\\Model\:\:belongsToMany\(\)$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Models/Tag.php', - ], - [ - 'message' => '#^Class App\\\Services\\\ChromaDBIndexService not found\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Providers/AppServiceProvider.php', - ], - [ - 'message' => '#^Class App\\\Services\\\SemanticSearchService not found\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Providers/AppServiceProvider.php', - ], - [ - 'message' => '#^Instantiated class App\\\Services\\\ChromaDBIndexService not found\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Providers/AppServiceProvider.php', - ], - [ - 'message' => '#^Instantiated class App\\\Services\\\SemanticSearchService not found\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Providers/AppServiceProvider.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:analyzeIssue\(\) has parameter \$issue with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:analyzeIssue\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:buildTodoList\(\) has parameter \$analysis with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:buildTodoList\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:extractKeywords\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:gatherCodebaseContext\(\) has parameter \$issue with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:gatherCodebaseContext\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:groupFilesByChangeType\(\) has parameter \$files with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:groupFilesByChangeType\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:searchFiles\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:validateAndEnhanceAnalysis\(\) has parameter \$analysis with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\IssueAnalyzerService\:\:validateAndEnhanceAnalysis\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/IssueAnalyzerService.php', - ], - [ - 'message' => '#^Construct empty\(\) is not allowed\. Use more strict comparison\.$#', - 'count' => 3, - 'path' => '/home/jordan/projects/knowledge/app/Services/MarkdownExporter.php', - ], - [ - 'message' => '#^Call to static method query\(\) on an unknown class App\\\Models\\\Observation\.$#', - 'count' => 3, - 'path' => '/home/jordan/projects/knowledge/app/Services/ObservationService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\ObservationService\:\:createObservation\(\) has invalid return type App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/ObservationService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\ObservationService\:\:getObservationsByType\(\) has invalid return type App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/ObservationService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\ObservationService\:\:getRecentObservations\(\) has invalid return type App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/ObservationService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\ObservationService\:\:searchObservations\(\) has invalid return type App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/ObservationService.php', - ], - [ - 'message' => '#^PHPDoc tag @var contains unknown class App\\\Models\\\Observation\.$#', - 'count' => 2, - 'path' => '/home/jordan/projects/knowledge/app/Services/ObservationService.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Observation in generic type Illuminate\\\Database\\\Eloquent\\\Collection\ in PHPDoc tag @return is not subtype of template type TModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Collection\.$#', - 'count' => 3, - 'path' => '/home/jordan/projects/knowledge/app/Services/ObservationService.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Observation in generic type Illuminate\\\Database\\\Eloquent\\\Collection\ in PHPDoc tag @var is not subtype of template type TModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Collection\.$#', - 'count' => 2, - 'path' => '/home/jordan/projects/knowledge/app/Services/ObservationService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:analyzeIssue\(\) has parameter \$codebaseContext with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:analyzeIssue\(\) has parameter \$issue with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:analyzeIssue\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:analyzeTestFailure\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:buildIssueAnalysisPrompt\(\) has parameter \$codebaseContext with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:buildIssueAnalysisPrompt\(\) has parameter \$issue with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:enhanceEntry\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:expandQuery\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:extractConcepts\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:extractTags\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:parseEnhancementResponse\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:parseIssueAnalysisResponse\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:suggestCodeChanges\(\) has parameter \$issue with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\OllamaService\:\:suggestCodeChanges\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/OllamaService.php', - ], - [ - 'message' => '#^Construct empty\(\) is not allowed\. Use more strict comparison\.$#', - 'count' => 3, - 'path' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\QdrantService\:\:search\(\) should return Illuminate\\\Support\\\Collection\, category\: string\|null, module\: string\|null, priority\: string\|null, \.\.\.\}\> but returns Illuminate\\\Support\\\Collection\<\(int\|string\), array\{id\: mixed, score\: mixed, title\: mixed, content\: mixed, tags\: mixed, category\: mixed, module\: mixed, priority\: mixed, \.\.\.\}\>\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ], - [ - 'message' => '#^Only booleans are allowed in a negated boolean, mixed given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ], - [ - 'message' => '#^Parameter \#1 \$entry of method App\\\Services\\\QdrantService\:\:upsert\(\) expects array\{id\: int\|string, title\: string, content\: string, tags\?\: array\, category\?\: string, module\?\: string, priority\?\: string, status\?\: string, \.\.\.\}, array\{id\: int\|string, title\: string, content\: string, tags\: array\, category\: string\|null, module\: string\|null, priority\: string\|null, status\: string\|null, \.\.\.\} given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ], - [ - 'message' => '#^Parameter \#1 \$entry of method App\\\Services\\\QdrantService\:\:upsert\(\) expects array\{id\: int\|string, title\: string, content\: string, tags\?\: array\, category\?\: string, module\?\: string, priority\?\: string, status\?\: string, \.\.\.\}, non\-empty\-array\ given\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ], - [ - 'message' => '#^Unable to resolve the template type TKey in call to function collect$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ], - [ - 'message' => '#^Unable to resolve the template type TValue in call to function collect$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ], - [ - 'message' => '#^Access to property \$id on an unknown class App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SQLiteFtsService.php', - ], - [ - 'message' => '#^Call to static method query\(\) on an unknown class App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SQLiteFtsService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\SQLiteFtsService\:\:searchObservations\(\) has invalid return type App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SQLiteFtsService.php', - ], - [ - 'message' => '#^PHPDoc tag @var for variable \$observations contains unknown class App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SQLiteFtsService.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Observation in generic type Illuminate\\\Database\\\Eloquent\\\Collection\ in PHPDoc tag @return is not subtype of template type TModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Collection\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SQLiteFtsService.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Observation in generic type Illuminate\\\Database\\\Eloquent\\\Collection\ in PHPDoc tag @var for variable \$observations is not subtype of template type TModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Collection\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SQLiteFtsService.php', - ], - [ - 'message' => '#^Dynamic call to static method Illuminate\\\Database\\\Eloquent\\\Builder\\:\:where\(\)\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SessionService.php', - ], - [ - 'message' => '#^Dynamic call to static method Illuminate\\\Database\\\Query\\\Builder\:\:orderBy\(\)\.$#', - 'count' => 2, - 'path' => '/home/jordan/projects/knowledge/app/Services/SessionService.php', - ], - [ - 'message' => '#^Dynamic call to static method Illuminate\\\Database\\\Query\\\Builder\:\:whereNull\(\)\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SessionService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\SessionService\:\:getSessionObservations\(\) has invalid return type App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SessionService.php', - ], - [ - 'message' => '#^PHPDoc tag @var contains unknown class App\\\Models\\\Observation\.$#', - 'count' => 2, - 'path' => '/home/jordan/projects/knowledge/app/Services/SessionService.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Observation in generic type Illuminate\\\Database\\\Eloquent\\\Collection\ in PHPDoc tag @return is not subtype of template type TModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Collection\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/SessionService.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Observation in generic type Illuminate\\\Database\\\Eloquent\\\Collection\ in PHPDoc tag @var is not subtype of template type TModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Collection\.$#', - 'count' => 2, - 'path' => '/home/jordan/projects/knowledge/app/Services/SessionService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\StubFtsService\:\:searchObservations\(\) has invalid return type App\\\Models\\\Observation\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/StubFtsService.php', - ], - [ - 'message' => '#^Type App\\\Models\\\Observation in generic type Illuminate\\\Database\\\Eloquent\\\Collection\ in PHPDoc tag @return is not subtype of template type TModel of Illuminate\\\Database\\\Eloquent\\\Model of class Illuminate\\\Database\\\Eloquent\\\Collection\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/StubFtsService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:execute\(\) has parameter \$issue with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:execute\(\) has parameter \$todos with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:execute\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:executeImplementation\(\) has parameter \$issue with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:executeImplementation\(\) has parameter \$todo with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:executeImplementation\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:executeQuality\(\) has parameter \$todo with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:executeQuality\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:executeTest\(\) has parameter \$issue with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:executeTest\(\) has parameter \$todo with no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:executeTest\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:getCompletedTodos\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Method App\\\Services\\\TodoExecutorService\:\:getFailedTodos\(\) return type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Property App\\\Services\\\TodoExecutorService\:\:\$completedTodos type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#^Property App\\\Services\\\TodoExecutorService\:\:\$failedTodos type has no value type specified in iterable type array\.$#', - 'count' => 1, - 'path' => '/home/jordan/projects/knowledge/app/Services/TodoExecutorService.php', - ], - [ - 'message' => '#does not specify its types: TFactory#', - 'paths' => ['/home/jordan/projects/knowledge/app/Models/*'], - ], - [ - 'message' => '#Only booleans are allowed in (an if condition|&&)#', - 'paths' => ['/home/jordan/projects/knowledge/app/Services/*'], - ], - ], - 'internalErrorsCountLimit' => 50, - 'cache' => ['nodesByFileCountMax' => 1024, 'nodesByStringCountMax' => 256], - 'reportUnmatchedIgnoredErrors' => true, - 'scopeClass' => 'PHPStan\Analyser\MutatingScope', - 'typeAliases' => [], - 'universalObjectCratesClasses' => ['stdClass', 'Pest\Support\HigherOrderTapProxy', 'Pest\Expectation'], - 'stubFiles' => [ - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionAttribute.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionClass.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionClassConstant.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionFunctionAbstract.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionMethod.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionParameter.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ReflectionProperty.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/iterable.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ArrayObject.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/WeakReference.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ext-ds.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ImagickPixel.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/PDOStatement.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/date.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/ibm_db2.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/mysqli.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/zip.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/dom.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/spl.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/SplObjectStorage.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/Exception.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/arrayFunctions.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/core.stub', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/typeCheckingFunctions.stub', - ], - 'earlyTerminatingMethodCalls' => [], - 'earlyTerminatingFunctionCalls' => [], - 'memoryLimitFile' => '/home/jordan/projects/knowledge/var/cache/phpstan/.memory_limit', - 'tempResultCachePath' => '/home/jordan/projects/knowledge/var/cache/phpstan/resultCaches', - 'resultCachePath' => '/home/jordan/projects/knowledge/var/cache/phpstan/resultCache.php', - 'resultCacheChecksProjectExtensionFilesDependencies' => false, - 'staticReflectionClassNamePatterns' => [], - '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, - 'strictRules' => [ - 'allRules' => true, - 'disallowedLooseComparison' => [true, false], - 'booleansInConditions' => true, - 'uselessCast' => true, - 'requireParentConstructorCall' => true, - 'disallowedConstructs' => true, - 'overwriteVariablesWithLoop' => true, - 'closureUsesThis' => true, - 'matchingInheritedMethodNames' => true, - 'numericOperandsInArithmeticOperators' => true, - 'strictCalls' => true, - 'switchConditionsMatchingType' => true, - 'noVariableVariables' => true, - 'strictArrayFilter' => [true, false], - ], - 'tmpDir' => '/home/jordan/projects/knowledge/var/cache/phpstan', - 'debugMode' => true, - 'productionMode' => false, - 'tempDir' => '/home/jordan/projects/knowledge/var/cache/phpstan', - 'rootDir' => '/home/jordan/projects/knowledge/vendor/phpstan/phpstan', - 'currentWorkingDirectory' => '/home/jordan/projects/knowledge', - 'cliArgumentsVariablesRegistered' => true, - 'additionalConfigFiles' => [ - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level8.neon', - '/home/jordan/projects/knowledge/vendor/phpstan/extension-installer/src/../../../nesbot/carbon/extension.neon', - '/home/jordan/projects/knowledge/vendor/phpstan/extension-installer/src/../../../pestphp/pest/extension.neon', - '/home/jordan/projects/knowledge/vendor/phpstan/extension-installer/src/../../phpstan-deprecation-rules/rules.neon', - '/home/jordan/projects/knowledge/vendor/phpstan/extension-installer/src/../../phpstan-strict-rules/rules.neon', - '/home/jordan/projects/knowledge/phpstan.neon', - ], - 'allConfigFiles' => [ - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/parametersSchema.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level8.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level7.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level6.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level5.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level4.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level3.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level2.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level1.neon', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level0.neon', - '/home/jordan/projects/knowledge/vendor/nesbot/carbon/extension.neon', - '/home/jordan/projects/knowledge/vendor/pestphp/pest/extension.neon', - '/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/rules.neon', - '/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/rules.neon', - '/home/jordan/projects/knowledge/phpstan.neon', - '/home/jordan/projects/knowledge/phpstan-baseline.neon', - ], - 'composerAutoloaderProjectPaths' => ['/home/jordan/projects/knowledge'], - 'generateBaselineFile' => null, - 'usedLevel' => '8', - 'cliAutoloadFile' => null, - ]; - } - - - protected function getDynamicParameter($key) - { - switch (true) { - case $key === 'singleReflectionFile': return null; - case $key === 'singleReflectionInsteadOfFile': return null; - case $key === 'analysedPaths': return null; - case $key === 'analysedPathsFromConfig': return null; - case $key === 'env': return null; - case $key === 'fixerTmpDir': return ($this->getParameter('sysGetTempDir')) . '/phpstan-fixer'; - 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); }, [ - 'singleReflectionFile', - 'singleReflectionInsteadOfFile', - 'analysedPaths', - 'analysedPathsFromConfig', - 'env', - 'fixerTmpDir', - 'sysGetTempDir', - 'pro', - ]); - return parent::getParameters(); - } -} diff --git a/var/cache/phpstan/cache/nette.configurator/Container_2c8b00828e.php.lock b/var/cache/phpstan/cache/nette.configurator/Container_2c8b00828e.php.lock deleted file mode 100644 index e69de29..0000000 diff --git a/var/cache/phpstan/cache/nette.configurator/Container_2c8b00828e.php.meta b/var/cache/phpstan/cache/nette.configurator/Container_2c8b00828e.php.meta deleted file mode 100644 index 2fe641f..0000000 --- a/var/cache/phpstan/cache/nette.configurator/Container_2c8b00828e.php.meta +++ /dev/null @@ -1 +0,0 @@ -a:6:{i:0;i:1;i:1;a:26:{s:91:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.neon";i:1759225815;s:101:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/parametersSchema.neon";i:1759225815;s:98:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level8.neon";i:1759225815;s:98:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level7.neon";i:1759225815;s:98:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level6.neon";i:1759225815;s:98:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level5.neon";i:1759225815;s:98:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level4.neon";i:1759225815;s:98:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level3.neon";i:1759225815;s:98:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level2.neon";i:1759225815;s:98:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level1.neon";i:1759225815;s:98:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/conf/config.level0.neon";i:1759225815;s:108:"/home/jordan/projects/knowledge/vendor/phpstan/extension-installer/src/../../../nesbot/carbon/extension.neon";i:1764709468;s:107:"/home/jordan/projects/knowledge/vendor/phpstan/extension-installer/src/../../../pestphp/pest/extension.neon";i:1765799368;s:113:"/home/jordan/projects/knowledge/vendor/phpstan/extension-installer/src/../../phpstan-deprecation-rules/rules.neon";i:1726069955;s:108:"/home/jordan/projects/knowledge/vendor/phpstan/extension-installer/src/../../phpstan-strict-rules/rules.neon";i:1737291744;s:44:"/home/jordan/projects/knowledge/phpstan.neon";i:1768694921;s:53:"/home/jordan/projects/knowledge/phpstan-baseline.neon";i:1768694921;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/nette/di/src/DI/Extensions/ServicesExtension.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/nette/di/src/DI/Extensions/ParametersExtension.php";i:1759225815;s:139:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/nette/bootstrap/src/Bootstrap/Extensions/PhpExtension.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/nette/di/src/DI/Extensions/ExtensionsExtension.php";i:1759225815;s:117:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/RulesExtension.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/ConditionalTagsExtension.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/ParametersSchemaExtension.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/ValidateIgnoredErrorsExtension.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/ValidateExcludePathsExtension.php";i:1759225815;}i:2;a:811:{s:109:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Debug/DebugScopeRule.php";i:1759225815;s:93:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Rule.php";i:1759225815;s:113:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Debug/DumpPhpDocTypeRule.php";i:1759225815;s:107:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Debug/DumpTypeRule.php";i:1759225815;s:109:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Debug/FileAssertRule.php";i:1759225815;s:113:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiInstantiationRule.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiClassExtendsRule.php";i:1759225815;s:115:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiClassImplementsRule.php";i:1759225815;s:116:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiInterfaceExtendsRule.php";i:1759225815;s:110:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiMethodCallRule.php";i:1759225815;s:110:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiStaticCallRule.php";i:1759225815;s:108:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiTraitUseRule.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/GetTemplateTypeRule.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/PhpStanNamespaceIn3rdPartyPackageRule.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/DuplicateKeysInLiteralArraysRule.php";i:1759225815;s:114:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/EmptyArrayItemRule.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/OffsetAccessWithoutDimForReadingRule.php";i:1759225815;s:107:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Cast/UnsetCastRule.php";i:1759225815;s:116:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/AllowedSubTypesRule.php";i:1759225815;s:116:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ClassAttributesRule.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ClassConstantAttributesRule.php";i:1759225815;s:114:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ClassConstantRule.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/DuplicateDeclarationRule.php";i:1759225815;s:111:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/EnumSanityRule.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ExistingClassesInClassImplementsRule.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ExistingClassesInEnumImplementsRule.php";i:1759225815;s:134:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ExistingClassesInInterfaceExtendsRule.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ExistingClassInTraitUseRule.php";i:1759225815;s:114:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/InstantiationRule.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/InstantiationCallableRule.php";i:1759225815;s:126:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/InvalidPromotedPropertiesRule.php";i:1759225815;s:117:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/LocalTypeAliasesRule.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/LocalTypeTraitAliasesRule.php";i:1759225815;s:110:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/NewStaticRule.php";i:1759225815;s:123:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/NonClassAttributeClassRule.php";i:1759225815;s:114:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ReadOnlyClassRule.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/TraitAttributeClassRule.php";i:1759225815;s:123:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/ClassAsClassConstantRule.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/DynamicClassConstantFetchRule.php";i:1759225815;s:116:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/FinalConstantRule.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/NativeTypedClassConstantRule.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/EnumCases/EnumCaseAttributesRule.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/NoncapturingCatchRule.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/ThrowExpressionRule.php";i:1759225815;s:126:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ArrowFunctionAttributesRule.php";i:1759225815;s:135:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ArrowFunctionReturnNullsafeByRefRule.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ClosureAttributesRule.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/DefineParametersRule.php";i:1759225815;s:142:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ExistingClassesInArrowFunctionTypehintsRule.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/CallToFunctionParametersRule.php";i:1759225815;s:136:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ExistingClassesInClosureTypehintsRule.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ExistingClassesInTypehintsRule.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/FunctionAttributesRule.php";i:1759225815;s:116:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/InnerFunctionRule.php";i:1759225815;s:138:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/InvalidLexicalVariablesInClosureUseRule.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ParamAttributesRule.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/PrintfParametersRule.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/RedefinedParametersRule.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ReturnNullsafeByRefRule.php";i:1759225815;s:116:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Ignore/IgnoreParseErrorRule.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/VariadicParametersDeclarationRule.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Keywords/ContinueBreakInLoopRule.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Keywords/DeclareStrictTypesRule.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/AbstractMethodInNonAbstractClassRule.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/AbstractPrivateMethodRule.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/CallMethodsRule.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/CallStaticMethodsRule.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/ConstructorReturnTypeRule.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/ExistingClassesInTypehintsRule.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/FinalPrivateMethodRule.php";i:1759225815;s:115:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodCallableRule.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodVisibilityInInterfaceRule.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MissingMethodImplementationRule.php";i:1759225815;s:117:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodAttributesRule.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/StaticMethodCallableRule.php";i:1759225815;s:108:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Names/UsedNamesRule.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Operators/InvalidAssignVarRule.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/AccessPropertiesInAssignRule.php";i:1759225815;s:134:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/AccessStaticPropertiesInAssignRule.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/InvalidCallablePropertyTypeRule.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/MissingReadOnlyPropertyAssignRule.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/PropertiesInInterfaceRule.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/PropertyAttributesRule.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadOnlyPropertyRule.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Traits/ConflictingTraitConstantsRule.php";i:1759225815;s:117:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Traits/ConstantsInTraitsRule.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Types/InvalidTypesInUnionRule.php";i:1759225815;s:108:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/UnsetRule.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Whitespace/FileWhitespaceRule.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/UnusedConstructorParametersRule.php";i:1759225815;s:111:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/ConstantRule.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/UnusedClosureUsesRule.php";i:1759225815;s:108:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/EmptyRule.php";i:1759225815;s:108:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/IssetRule.php";i:1759225815;s:115:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/NullCoalesceRule.php";i:1759225815;s:102:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Cast/EchoRule.php";i:1759225815;s:109:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Cast/InvalidCastRule.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Cast/InvalidPartOfEncapsedStringRule.php";i:1759225815;s:103:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Cast/PrintRule.php";i:1759225815;s:135:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/AccessPrivateConstantThroughStaticRule.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/UsageOfVoidMatchExpressionRule.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/ValueAssignedToClassConstantRule.php";i:1759225815;s:135:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/IncompatibleDefaultParameterTypeRule.php";i:1759225815;s:116:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/ClassAncestorsRule.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/ClassTemplateTypeRule.php";i:1759225815;s:115:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/EnumAncestorsRule.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/EnumTemplateTypeRule.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/FunctionTemplateTypeRule.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/FunctionSignatureVarianceRule.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/InterfaceAncestorsRule.php";i:1759225815;s:123:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/InterfaceTemplateTypeRule.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/MethodTemplateTypeRule.php";i:1759225815;s:123:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/MethodTagTemplateTypeRule.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/MethodSignatureVarianceRule.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/TraitTemplateTypeRule.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/UsedTraitsRule.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/CallPrivateMethodThroughStaticRule.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/IncompatibleDefaultParameterTypeRule.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Operators/InvalidComparisonOperationRule.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/FunctionConditionalReturnTypeRule.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/MethodConditionalReturnTypeRule.php";i:1759225815;s:114:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/FunctionAssertRule.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/MethodAssertRule.php";i:1759225815;s:123:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatibleSelfOutTypeRule.php";i:1759225815;s:135:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatibleClassConstantPhpDocTypeRule.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatiblePhpDocTypeRule.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatiblePropertyPhpDocTypeRule.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/InvalidThrowsPhpDocValueRule.php";i:1759225815;s:143:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/IncompatibleParamImmediatelyInvokedCallableRule.php";i:1759225815;s:138:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/AccessPrivatePropertyThroughStaticRule.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/RequireImplementsRule.php";i:1759225815;s:115:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/RequireExtendsRule.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/RequireImplementsDefinitionClassRule.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/RequireExtendsDefinitionClassRule.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/RequireExtendsDefinitionTraitRule.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/ArrayDestructuringRule.php";i:1759225815;s:117:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/IterableInForeachRule.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/OffsetAccessAssignmentRule.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/OffsetAccessAssignOpRule.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/OffsetAccessValueAssignmentRule.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/UnpackIterableInArrayRule.php";i:1759225815;s:117:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/ThrowExprTypeRule.php";i:1759225815;s:126:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ArrowFunctionReturnTypeRule.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ClosureReturnTypeRule.php";i:1759225815;s:113:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ReturnTypeRule.php";i:1759225815;s:113:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generators/YieldTypeRule.php";i:1759225815;s:111:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/ReturnTypeRule.php";i:1759225815;s:141:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/DefaultValueTypesAssignedToPropertiesRule.php";i:1759225815;s:126:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadOnlyPropertyAssignRule.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadOnlyPropertyAssignRefRule.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/TypesAssignedToPropertiesRule.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/ThrowTypeRule.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/VariableCloningRule.php";i:1759225815;s:111:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/DeadForeachRule.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/UnreachableStatementRule.php";i:1759225815;s:123:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/UnusedPrivateConstantRule.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/UnusedPrivateMethodRule.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/OverwrittenExitPointByFinallyRule.php";i:1759225815;s:144:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/CallToFunctionStatementWithoutSideEffectsRule.php";i:1759225815;s:140:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/CallToMethodStatementWithoutSideEffectsRule.php";i:1759225815;s:146:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/CallToStaticMethodStatementWithoutSideEffectsRule.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/NullsafeMethodCallRule.php";i:1759225815;s:144:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideArrowFunctionReturnTypehintRule.php";i:1759225815;s:138:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideClosureReturnTypehintRule.php";i:1759225815;s:139:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideFunctionReturnTypehintRule.php";i:1759225815;s:114:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DateTimeInstantiationRule.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/MissingClassConstantTypehintRule.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/MissingFunctionReturnTypehintRule.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MissingMethodReturnTypehintRule.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/MissingPropertyTypehintRule.php";i:1759225815;s:128:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/AccessDeprecatedPropertyRule.php";i:1726069955;s:134:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/AccessDeprecatedStaticPropertyRule.php";i:1726069955;s:128:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedFunctionRule.php";i:1726069955;s:126:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedMethodRule.php";i:1726069955;s:132:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/CallToDeprecatedStaticMethodRule.php";i:1726069955;s:139:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/FetchingClassConstOfDeprecatedClassRule.php";i:1726069955;s:127:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/FetchingDeprecatedConstRule.php";i:1726069955;s:139:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/ImplementationOfDeprecatedInterfaceRule.php";i:1726069955;s:132:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InheritanceOfDeprecatedClassRule.php";i:1726069955;s:136:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InheritanceOfDeprecatedInterfaceRule.php";i:1726069955;s:134:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/InstantiationOfDeprecatedClassRule.php";i:1726069955;s:144:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInClassMethodSignatureRule.php";i:1726069955;s:140:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInClosureSignatureRule.php";i:1726069955;s:141:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/TypeHintDeprecatedInFunctionSignatureRule.php";i:1726069955;s:125:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/UsageOfDeprecatedCastRule.php";i:1726069955;s:126:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/UsageOfDeprecatedTraitRule.php";i:1726069955;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/BuilderFactory.php";i:1759225815;s:102:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/LexerFactory.php";i:1759225815;s:141:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NameResolver.php";i:1759225815;s:136:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/NodeVisitorAbstract.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor.php";i:1759225815;s:111:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/AnonymousClassVisitor.php";i:1759225815;s:111:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ArrayFilterArgVisitor.php";i:1759225815;s:109:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ArrayFindArgVisitor.php";i:1759225815;s:108:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ArrayMapArgVisitor.php";i:1759225815;s:109:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ArrayWalkArgVisitor.php";i:1759225815;s:107:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ClosureArgVisitor.php";i:1759225815;s:113:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ClosureBindToVarVisitor.php";i:1759225815;s:111:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ClosureBindArgVisitor.php";i:1759225815;s:110:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/CurlSetOptArgVisitor.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/TypeTraverserInstanceofVisitor.php";i:1759225815;s:113:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ArrowFunctionArgVisitor.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/MagicConstantParamDefaultVisitor.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/NewAssignedToPropertyVisitor.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ParentStmtTypesVisitor.php";i:1759225815;s:109:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/TryCatchTypeVisitor.php";i:1759225815;s:110:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/LastConditionVisitor.php";i:1759225815;s:150:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/NodeVisitor/NodeConnectingVisitor.php";i:1759225815;s:107:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Node/Printer/ExprPrinter.php";i:1759225815;s:103:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Node/Printer/Printer.php";i:1759225815;s:139:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinter/Standard.php";i:1759225815;s:138:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/PrettyPrinterAbstract.php";i:1759225815;s:114:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Broker/AnonymousClassNameHelper.php";i:1759225815;s:111:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Php/PhpVersionFactoryFactory.php";i:1759225815;s:123:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/phpstan/phpdoc-parser/src/Lexer/Lexer.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/phpstan/phpdoc-parser/src/Parser/TypeParser.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/phpstan/phpdoc-parser/src/Parser/PhpDocParser.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/phpstan/phpdoc-parser/src/Printer/Printer.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/ConstExprParserFactory.php";i:1759225815;s:115:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/PhpDocInheritanceResolver.php";i:1759225815;s:108:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/PhpDocNodeResolver.php";i:1759225815;s:110:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/PhpDocStringResolver.php";i:1759225815;s:111:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/ConstExprNodeResolver.php";i:1759225815;s:106:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/TypeNodeResolver.php";i:1759225815;s:108:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/TypeStringResolver.php";i:1759225815;s:103:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/StubValidator.php";i:1759225815;s:117:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/CountableStubFilesExtension.php";i:1759225815;s:108:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/StubFilesExtension.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/SocketSelectStubFilesExtension.php";i:1759225815;s:114:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/DefaultStubFilesProvider.php";i:1759225815;s:107:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/StubFilesProvider.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/JsonValidateStubFilesExtension.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/ReflectionEnumStubFilesExtension.php";i:1759225815;s:100:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/Analyser.php";i:1759225815;s:115:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/AnalyserResultFinalizer.php";i:1759225815;s:104:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/FileAnalyser.php";i:1759225815;s:113:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/LocalIgnoresProcessor.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/RuleErrorTransformer.php";i:1759225815;s:117:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/Ignore/IgnoredErrorHelper.php";i:1759225815;s:110:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/Ignore/IgnoreLexer.php";i:1759225815;s:116:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/LazyInternalScopeFactory.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/InternalScopeFactory.php";i:1759225815;s:104:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/ScopeFactory.php";i:1759225815;s:109:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/NodeScopeResolver.php";i:1759225815;s:115:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/ConstantResolverFactory.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/ResultCache/ResultCacheClearer.php";i:1759225815;s:116:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/RicherScopeGetTypeHelper.php";i:1759225815;s:94:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Cache/Cache.php";i:1759225815;s:109:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Collectors/RegistryFactory.php";i:1759225815;s:109:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Command/AnalyseApplication.php";i:1759225815;s:105:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Command/AnalyserRunner.php";i:1759225815;s:107:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Command/FixerApplication.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Dependency/DependencyResolver.php";i:1759225815;s:113:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Dependency/ExportedNodeFetcher.php";i:1759225815;s:114:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Dependency/ExportedNodeResolver.php";i:1759225815;s:113:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Dependency/ExportedNodeVisitor.php";i:1759225815;s:123:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Nette/NetteContainer.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Container.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/DerivativeContainerFactory.php";i:1759225815;s:98:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/File/FileHelper.php";i:1759225815;s:107:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/File/FileExcluderFactory.php";i:1759225815;s:98:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/File/FileFinder.php";i:1759225815;s:99:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/File/FileMonitor.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/DeclarePositionVisitor.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/ImmediatelyInvokedClosureVisitor.php";i:1759225815;s:108:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parallel/ParallelAnalyser.php";i:1759225815;s:101:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parallel/Scheduler.php";i:1759225815;s:109:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Diagnose/DiagnoseExtension.php";i:1759225815;s:117:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/FunctionCallStatementFinder.php";i:1759225815;s:105:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Process/CpuCoreCounter.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/InitializerExprTypeResolver.php";i:1759225815;s:148:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Annotations/AnnotationsMethodsClassReflectionExtension.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/MethodsClassReflectionExtension.php";i:1759225815;s:151:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Annotations/AnnotationsPropertiesClassReflectionExtension.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/PropertiesClassReflectionExtension.php";i:1759225815;s:139:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/CachingVisitor.php";i:1759225815;s:141:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/FileNodesFetcher.php";i:1759225815;s:171:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/ComposerJsonAndInstalledJsonSourceLocatorMaker.php";i:1759225815;s:163:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedDirectorySourceLocatorFactory.php";i:1759225815;s:166:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedDirectorySourceLocatorRepository.php";i:1759225815;s:167:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocatorRepository.php";i:1759225815;s:156:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/RequireExtension/RequireExtendsMethodsClassReflectionExtension.php";i:1759225815;s:159:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/RequireExtension/RequireExtendsPropertiesClassReflectionExtension.php";i:1759225815;s:136:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Mixin/MixinMethodsClassReflectionExtension.php";i:1759225815;s:139:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Mixin/MixinPropertiesClassReflectionExtension.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/PhpClassReflectionExtension.php";i:1759225815;s:144:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/Soap/SoapClientMethodsClassReflectionExtension.php";i:1759225815;s:141:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/EnumAllowedSubTypesClassReflectionExtension.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/AllowedSubTypesClassReflectionExtension.php";i:1759225815;s:143:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/UniversalObjectCratesClassReflectionExtension.php";i:1759225815;s:154:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/PHPStan/NativeReflectionEnumReturnDynamicReturnTypeExtension.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/DynamicMethodReturnTypeExtension.php";i:1759225815;s:139:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/SignatureMap/NativeFunctionReflectionProvider.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/SignatureMap/SignatureMapParser.php";i:1759225815;s:135:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/SignatureMap/FunctionSignatureMapProvider.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/SignatureMap/SignatureMapProvider.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/SignatureMap/Php8SignatureMapProvider.php";i:1759225815;s:134:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/SignatureMap/SignatureMapProviderFactory.php";i:1759225815;s:106:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiRuleHelper.php";i:1759225815;s:104:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/AttributesCheck.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/NonexistentOffsetInArrayDimFetchCheck.php";i:1759225815;s:103:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/ClassNameCheck.php";i:1759225815;s:114:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/ClassCaseSensitivityCheck.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/ClassForbiddenNameCheck.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/LocalTypeAliasesCheck.php";i:1759225815;s:111:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MethodTagCheck.php";i:1759225815;s:107:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MixinCheck.php";i:1759225815;s:113:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/PropertyTagCheck.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ConstantConditionRuleHelper.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ImpossibleCheckTypeHelper.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/DefaultExceptionTypeResolver.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/ExceptionTypeResolver.php";i:1759225815;s:143:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/MissingCheckedExceptionInFunctionThrowsRule.php";i:1759225815;s:141:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/MissingCheckedExceptionInMethodThrowsRule.php";i:1759225815;s:136:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/MissingCheckedExceptionInThrowsCheck.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/TooWideFunctionThrowTypeRule.php";i:1759225815;s:126:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/TooWideMethodThrowTypeRule.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/TooWideThrowTypeCheck.php";i:1759225815;s:116:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/FunctionCallParametersCheck.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/FunctionDefinitionCheck.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/FunctionReturnTypeCheck.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/ParameterCastableToStringCheck.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/CrossCheckInterfacesHelper.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/GenericAncestorsCheck.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/GenericObjectTypeCheck.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/MethodTagTemplateTypeCheck.php";i:1759225815;s:115:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/TemplateTypeCheck.php";i:1759225815;s:111:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/VarianceCheck.php";i:1759225815;s:99:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/IssetCheck.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodCallCheck.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/StaticMethodCallCheck.php";i:1759225815;s:116:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodSignatureRule.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MethodParameterComparisonHelper.php";i:1759225815;s:109:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/MissingTypehintCheck.php";i:1759225815;s:102:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/NullsafeCheck.php";i:1759225815;s:144:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/LazyAlwaysUsedClassConstantsExtensionProvider.php";i:1759225815;s:140:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/AlwaysUsedClassConstantsExtensionProvider.php";i:1759225815;s:134:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/LazyAlwaysUsedMethodExtensionProvider.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/AlwaysUsedMethodExtensionProvider.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/ConditionalReturnTypeRuleHelper.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/AssertRuleHelper.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/UnresolvableTypeHelper.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/GenericCallableRuleHelper.php";i:1759225815;s:116:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/VarTagTypeRuleHelper.php";i:1759225815;s:115:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Playground/NeverRuleHelper.php";i:1759225815;s:140:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/LazyReadWritePropertiesExtensionProvider.php";i:1759225815;s:136:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadWritePropertiesExtensionProvider.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/PropertyDescriptor.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/PropertyReflectionFinder.php";i:1759225815;s:113:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Pure/FunctionPurityCheck.php";i:1759225815;s:104:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/RuleLevelHelper.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/UnusedFunctionParametersCheck.php";i:1759225815;s:134:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideParameterOutTypeCheck.php";i:1759225815;s:102:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/FileTypeMapper.php";i:1759225815;s:105:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/BitwiseFlagHelper.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/AbsFunctionDynamicReturnTypeExtension.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/DynamicFunctionReturnTypeExtension.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArgumentBasedFunctionReturnTypeExtension.php";i:1759225815;s:137:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayChangeKeyCaseFunctionReturnTypeExtension.php";i:1759225815;s:136:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayIntersectKeyFunctionReturnTypeExtension.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayChunkFunctionReturnTypeExtension.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayColumnFunctionReturnTypeExtension.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayCombineFunctionReturnTypeExtension.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayCurrentDynamicReturnTypeExtension.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFillFunctionReturnTypeExtension.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFillKeysFunctionReturnTypeExtension.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFilterFunctionReturnTypeHelper.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFilterFunctionReturnTypeExtension.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFlipFunctionReturnTypeExtension.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFindFunctionReturnTypeExtension.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayFindKeyFunctionReturnTypeExtension.php";i:1759225815;s:126:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayKeyDynamicReturnTypeExtension.php";i:1759225815;s:137:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayKeyExistsFunctionTypeSpecifyingExtension.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/FunctionTypeSpecifyingExtension.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/TypeSpecifierAwareExtension.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayKeyFirstDynamicReturnTypeExtension.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayKeyLastDynamicReturnTypeExtension.php";i:1759225815;s:135:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayKeysFunctionDynamicReturnTypeExtension.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayMapFunctionReturnTypeExtension.php";i:1759225815;s:136:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayMergeFunctionDynamicReturnTypeExtension.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayNextDynamicReturnTypeExtension.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayPopFunctionReturnTypeExtension.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayRandFunctionReturnTypeExtension.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayReduceFunctionReturnTypeExtension.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayReplaceFunctionReturnTypeExtension.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayReverseFunctionReturnTypeExtension.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayShiftFunctionReturnTypeExtension.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArraySliceFunctionReturnTypeExtension.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArraySpliceFunctionReturnTypeExtension.php";i:1759225815;s:137:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArraySearchFunctionDynamicReturnTypeExtension.php";i:1759225815;s:134:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArraySearchFunctionTypeSpecifyingExtension.php";i:1759225815;s:137:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayValuesFunctionDynamicReturnTypeExtension.php";i:1759225815;s:134:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArraySumFunctionDynamicReturnTypeExtension.php";i:1759225815;s:116:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/AssertThrowTypeExtension.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/DynamicFunctionThrowTypeExtension.php";i:1759225815;s:138:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/BackedEnumFromMethodDynamicReturnTypeExtension.php";i:1759225815;s:126:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/DynamicStaticMethodReturnTypeExtension.php";i:1759225815;s:138:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/Base64DecodeDynamicFunctionReturnTypeExtension.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/BcMathStringOrNullReturnTypeExtension.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ClosureBindDynamicReturnTypeExtension.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ClosureBindToDynamicReturnTypeExtension.php";i:1759225815;s:137:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ClosureFromCallableDynamicReturnTypeExtension.php";i:1759225815;s:126:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/CompactFunctionReturnTypeExtension.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ConstantFunctionReturnTypeExtension.php";i:1759225815;s:106:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ConstantHelper.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/CountFunctionReturnTypeExtension.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/CountFunctionTypeSpecifyingExtension.php";i:1759225815;s:137:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/CurlGetinfoFunctionDynamicReturnTypeExtension.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateFunctionReturnTypeHelper.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateFormatFunctionReturnTypeExtension.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateFormatMethodReturnTypeExtension.php";i:1759225815;s:123:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateFunctionReturnTypeExtension.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateIntervalConstructorThrowTypeExtension.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/DynamicStaticMethodThrowTypeExtension.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateIntervalDynamicReturnTypeExtension.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeCreateDynamicReturnTypeExtension.php";i:1759225815;s:126:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeDynamicReturnTypeExtension.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeModifyReturnTypeExtension.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeConstructorThrowTypeExtension.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeModifyMethodThrowTypeExtension.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/DynamicMethodThrowTypeExtension.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeSubMethodThrowTypeExtension.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DateTimeZoneConstructorThrowTypeExtension.php";i:1759225815;s:123:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DsMapDynamicReturnTypeExtension.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DsMapDynamicMethodThrowTypeExtension.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DioStatDynamicFunctionReturnTypeExtension.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ExplodeFunctionDynamicReturnTypeExtension.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/FilterFunctionReturnTypeHelper.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/FilterInputDynamicReturnTypeExtension.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/FilterVarDynamicReturnTypeExtension.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/FilterVarArrayDynamicReturnTypeExtension.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GetCalledClassDynamicReturnTypeExtension.php";i:1759225815;s:126:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GetClassDynamicReturnTypeExtension.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GetDebugTypeFunctionReturnTypeExtension.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GetDefinedVarsFunctionReturnTypeExtension.php";i:1759225815;s:140:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GetParentClassDynamicFunctionReturnTypeExtension.php";i:1759225815;s:126:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GettypeFunctionReturnTypeExtension.php";i:1759225815;s:138:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/GettimeofdayDynamicFunctionReturnTypeExtension.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/HashFunctionsReturnTypeExtension.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/HighlightStringDynamicReturnTypeExtension.php";i:1759225815;s:116:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IntdivThrowTypeExtension.php";i:1759225815;s:117:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IniGetReturnTypeExtension.php";i:1759225815;s:114:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/JsonThrowTypeExtension.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/OpenSslEncryptParameterOutTypeExtension.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/FunctionParameterOutTypeExtension.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ParseStrParameterOutTypeExtension.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PregMatchTypeSpecifyingExtension.php";i:1759225815;s:126:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PregMatchParameterOutTypeExtension.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PregReplaceCallbackClosureTypeExtension.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/FunctionParameterClosureTypeExtension.php";i:1759225815;s:114:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/RegexArrayShapeMatcher.php";i:1759225815;s:110:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Regex/RegexGroupParser.php";i:1759225815;s:115:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Regex/RegexExpressionHelper.php";i:1759225815;s:136:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReflectionClassConstructorThrowTypeExtension.php";i:1759225815;s:139:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReflectionFunctionConstructorThrowTypeExtension.php";i:1759225815;s:137:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReflectionMethodConstructorThrowTypeExtension.php";i:1759225815;s:139:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReflectionPropertyConstructorThrowTypeExtension.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrContainingTypeSpecifyingExtension.php";i:1759225815;s:140:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SimpleXMLElementClassPropertyReflectionExtension.php";i:1759225815;s:137:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SimpleXMLElementConstructorThrowTypeExtension.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StatDynamicReturnTypeExtension.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MethodExistsTypeSpecifyingExtension.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PropertyExistsTypeSpecifyingExtension.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MinMaxFunctionReturnTypeExtension.php";i:1759225815;s:138:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/NumberFormatFunctionDynamicReturnTypeExtension.php";i:1759225815;s:134:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PathinfoFunctionDynamicReturnTypeExtension.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PregFilterFunctionReturnTypeExtension.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PregSplitDynamicReturnTypeExtension.php";i:1759225815;s:142:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReflectionClassIsSubclassOfTypeSpecifyingExtension.php";i:1759225815;s:117:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/MethodTypeSpecifyingExtension.php";i:1759225815;s:134:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReplaceFunctionsDynamicReturnTypeExtension.php";i:1759225815;s:139:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ArrayPointerFunctionsDynamicReturnTypeExtension.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/LtrimFunctionReturnTypeExtension.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MbFunctionsReturnTypeExtension.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MbFunctionsReturnTypeExtensionTrait.php";i:1759225815;s:136:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MbConvertEncodingFunctionReturnTypeExtension.php";i:1759225815;s:139:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MbSubstituteCharacterDynamicReturnTypeExtension.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MbStrlenFunctionReturnTypeExtension.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/MicrotimeFunctionReturnTypeExtension.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/HrtimeFunctionReturnTypeExtension.php";i:1759225815;s:126:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ImplodeFunctionReturnTypeExtension.php";i:1759225815;s:134:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/NonEmptyStringFunctionsReturnTypeExtension.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SetTypeFunctionTypeSpecifyingExtension.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrCaseFunctionsReturnTypeExtension.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrlenFunctionReturnTypeExtension.php";i:1759225815;s:140:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrIncrementDecrementFunctionReturnTypeExtension.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrPadFunctionReturnTypeExtension.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrRepeatFunctionReturnTypeExtension.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrrevFunctionReturnTypeExtension.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SubstrDynamicReturnTypeExtension.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ThrowableReturnTypeExtension.php";i:1759225815;s:134:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ParseUrlFunctionDynamicReturnTypeExtension.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/TriggerErrorDynamicReturnTypeExtension.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/TrimFunctionDynamicReturnTypeExtension.php";i:1759225815;s:140:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/VersionCompareFunctionDynamicReturnTypeExtension.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/PowFunctionReturnTypeExtension.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/RoundFunctionReturnTypeExtension.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrtotimeFunctionReturnTypeExtension.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/RandomIntFunctionReturnTypeExtension.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/RangeFunctionReturnTypeExtension.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/AssertFunctionTypeSpecifyingExtension.php";i:1759225815;s:134:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ClassExistsFunctionTypeSpecifyingExtension.php";i:1759225815;s:134:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ClassImplementsFunctionReturnTypeExtension.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DefineConstantTypeSpecifyingExtension.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DefinedConstantTypeSpecifyingExtension.php";i:1759225815;s:137:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/FunctionExistsFunctionTypeSpecifyingExtension.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/InArrayFunctionTypeSpecifyingExtension.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IsArrayFunctionTypeSpecifyingExtension.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IsCallableFunctionTypeSpecifyingExtension.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IsIterableFunctionTypeSpecifyingExtension.php";i:1759225815;s:135:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IsSubclassOfFunctionTypeSpecifyingExtension.php";i:1759225815;s:134:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IteratorToArrayFunctionReturnTypeExtension.php";i:1759225815;s:126:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IsAFunctionTypeSpecifyingExtension.php";i:1759225815;s:123:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/IsAFunctionTypeSpecifyingHelper.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/CtypeDigitFunctionTypeSpecifyingExtension.php";i:1759225815;s:134:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/JsonThrowOnErrorDynamicReturnTypeExtension.php";i:1759225815;s:141:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/TypeSpecifyingFunctionsDynamicReturnTypeExtension.php";i:1759225815;s:138:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SimpleXMLElementAsXMLMethodReturnTypeExtension.php";i:1759225815;s:138:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SimpleXMLElementXpathMethodReturnTypeExtension.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrSplitFunctionReturnTypeExtension.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrTokFunctionReturnTypeExtension.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SprintfFunctionDynamicReturnTypeExtension.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/SscanfFunctionDynamicReturnTypeExtension.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrvalFamilyFunctionReturnTypeExtension.php";i:1759225815;s:138:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/StrWordCountFunctionDynamicReturnTypeExtension.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/XMLReaderOpenReturnTypeExtension.php";i:1759225815;s:140:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/ReflectionGetAttributesMethodReturnTypeExtension.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Php/DatePeriodConstructorReturnTypeExtension.php";i:1759225815;s:106:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/ClosureTypeFactory.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/Constant/OversizedArrayBuilder.php";i:1759225815;s:111:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/PrintfHelper.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/TypeSpecifierFactory.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/File/ParentDirectoryRelativePathHelper.php";i:1759225815;s:106:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/File/RelativePathHelper.php";i:1759225815;s:103:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Broker/BrokerFactory.php";i:1759225815;s:105:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Cache/FileCacheStorage.php";i:1759225815;s:101:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Cache/CacheStorage.php";i:1759225815;s:100:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/RichParser.php";i:1759225815;s:96:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/Parser.php";i:1759225815;s:104:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/CleaningParser.php";i:1759225815;s:102:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/SimpleParser.php";i:1759225815;s:102:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/CachedParser.php";i:1759225815;s:108:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/PhpParserDecorator.php";i:1759225815;s:123:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/Parser.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/Parser/Php7.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/ParserAbstract.php";i:1759225815;s:101:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/LazyRegistry.php";i:1759225815;s:97:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Registry.php";i:1759225815;s:108:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/StubPhpDocProvider.php";i:1759225815;s:138:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ReflectionProvider/ReflectionProviderFactory.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ReflectionProvider.php";i:1759225815;s:147:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/Reflector/DefaultReflector.php";i:1759225815;s:140:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/Reflector/Reflector.php";i:1759225815;s:139:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/Reflector/MemoizingReflector.php";i:1759225815;s:145:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/Reflector/ClassReflector.php";i:1759225815;s:148:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/Reflector/FunctionReflector.php";i:1759225815;s:148:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/Reflector/ConstantReflector.php";i:1759225815;s:135:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/BetterReflectionProvider.php";i:1759225815;s:147:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/BetterReflectionSourceLocatorFactory.php";i:1759225815;s:158:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceStubber/PhpStormStubsSourceStubberFactory.php";i:1759225815;s:175:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/PhpStormStubsSourceStubber.php";i:1759225815;s:162:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/SourceStubber.php";i:1759225815;s:155:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceStubber/ReflectionSourceStubberFactory.php";i:1759225815;s:172:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/SourceLocator/SourceStubber/ReflectionSourceStubber.php";i:1759225815;s:107:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Parser/PathRoutingParser.php";i:1759225815;s:116:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Diagnose/PHPStanDiagnoseExtension.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/CiDetectedErrorFormatter.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/ErrorFormatter.php";i:1759225815;s:123:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/RawErrorFormatter.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/TableErrorFormatter.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/CheckstyleErrorFormatter.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/JsonErrorFormatter.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/JunitErrorFormatter.php";i:1759225815;s:126:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/GitlabErrorFormatter.php";i:1759225815;s:126:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/GithubErrorFormatter.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Command/ErrorFormatter/TeamcityErrorFormatter.php";i:1759225815;s:115:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiClassConstFetchRule.php";i:1759225815;s:110:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiInstanceofRule.php";i:1759225815;s:114:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/ApiInstanceofTypeRule.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/NodeConnectingVisitorAttributesRule.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/RuntimeReflectionFunctionRule.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Api/RuntimeReflectionInstantiationRule.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ExistingClassInClassExtendsRule.php";i:1759225815;s:126:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ExistingClassInInstanceOfRule.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/LocalTypeTraitUseAliasesRule.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/CaughtExceptionExistenceRule.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/CallToNonExistentFunctionRule.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/OverridingConstantRule.php";i:1759225815;s:117:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/OverridingMethodRule.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/ConsistentConstructorRule.php";i:1759225815;s:114:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Missing/MissingReturnRule.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Namespaces/ExistingNamesInGroupUseRule.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Namespaces/ExistingNamesInUseRule.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Operators/InvalidIncDecOperationRule.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/AccessPropertiesRule.php";i:1759225815;s:126:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/AccessStaticPropertiesRule.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ExistingClassesInPropertiesRule.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/FunctionCallableRule.php";i:1759225815;s:141:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/MissingReadOnlyByPhpDocPropertyAssignRule.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/OverridingPropertyRule.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadOnlyByPhpDocPropertyRule.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/UninitializedPropertyRule.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/WritingToReadOnlyPropertiesRule.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadingWriteOnlyPropertiesRule.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/CompactVariablesRule.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/DefinedVariableRule.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Regexp/RegularExpressionPatternRule.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ConstructorsHelper.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MissingMagicSerializationMethodsRule.php";i:1759225815;s:123:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Constants/MagicConstantContextRule.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/UselessFunctionReturnValueRule.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/PrintfArrayParametersRule.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Regexp/RegularExpressionQuotingRule.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Keywords/RequireFileExistsRule.php";i:1759225815;s:106:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MixinRule.php";i:1759225815;s:111:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MixinTraitRule.php";i:1759225815;s:114:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MixinTraitUseRule.php";i:1759225815;s:110:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MethodTagRule.php";i:1759225815;s:115:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MethodTagTraitRule.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/MethodTagTraitUseRule.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/PropertyTagRule.php";i:1759225815;s:117:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/PropertyTagTraitRule.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/PropertyTagTraitUseRule.php";i:1759225815;s:115:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/RequireExtendsCheck.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/RequireImplementsDefinitionTraitRule.php";i:1759225815;s:148:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/IncompatibleArrowFunctionDefaultParameterTypeRule.php";i:1759225815;s:142:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/IncompatibleClosureDefaultParameterTypeRule.php";i:1759225815;s:116:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/CallCallablesRule.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/MethodTagTemplateTypeTraitRule.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/IllegalConstructorMethodCallRule.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/IllegalConstructorStaticCallRule.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/InvalidPhpDocTagValueRule.php";i:1759225815;s:123:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/InvalidPhpDocVarTagTypeRule.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/InvalidPHPStanDocTagRule.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/VarTagChangedExpressionTypeRule.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/PhpDoc/WrongVariableNameInVarTagRule.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generics/PropertyVarianceRule.php";i:1759225815;s:110:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Pure/PureFunctionRule.php";i:1759225815;s:108:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Pure/PureMethodRule.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Operators/InvalidBinaryOperationRule.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Operators/InvalidUnaryOperationRule.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/InvalidKeyInArrayDimFetchRule.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/InvalidKeyInArrayItemRule.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/NonexistentOffsetInArrayDimFetchRule.php";i:1759225815;s:144:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/ThrowsVoidFunctionWithExplicitThrowPointRule.php";i:1759225815;s:142:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/ThrowsVoidMethodWithExplicitThrowPointRule.php";i:1759225815;s:117:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generators/YieldFromTypeRule.php";i:1759225815;s:120:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Generators/YieldInGeneratorRule.php";i:1759225815;s:114:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Arrays/ArrayUnpackingRule.php";i:1759225815;s:137:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadOnlyByPhpDocPropertyAssignRefRule.php";i:1759225815;s:134:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/ReadOnlyByPhpDocPropertyAssignRule.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/ParameterOutAssignedTypeRule.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Variables/ParameterOutExecutionEndTypeRule.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Classes/ImpossibleInstanceOfRule.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/BooleanAndConstantConditionRule.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/BooleanOrConstantConditionRule.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/BooleanNotConstantConditionRule.php";i:1759225815;s:106:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/NoopRule.php";i:1759225815;s:147:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/CallToConstructorStatementWithoutImpurePointsRule.php";i:1759225815;s:137:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/ConstructorWithoutImpurePointsCollector.php";i:1759225815;s:103:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Collectors/Collector.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/PossiblyPureNewCollector.php";i:1759225815;s:144:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/CallToFunctionStatementWithoutImpurePointsRule.php";i:1759225815;s:134:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/FunctionWithoutImpurePointsCollector.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/PossiblyPureFuncCallCollector.php";i:1759225815;s:142:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/CallToMethodStatementWithoutImpurePointsRule.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/MethodWithoutImpurePointsCollector.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/PossiblyPureMethodCallCollector.php";i:1759225815;s:148:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/CallToStaticMethodStatementWithoutImpurePointsRule.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/PossiblyPureStaticCallCollector.php";i:1759225815;s:123:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/UnusedPrivatePropertyRule.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/DoWhileLoopConstantConditionRule.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ElseIfConstantConditionRule.php";i:1759225815;s:123:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/IfConstantConditionRule.php";i:1759225815;s:135:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ImpossibleCheckTypeFunctionCallRule.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ImpossibleCheckTypeMethodCallRule.php";i:1759225815;s:139:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ImpossibleCheckTypeStaticMethodCallRule.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/LogicalXorConstantConditionRule.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/DeadCode/BetterNoopRule.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/MatchExpressionRule.php";i:1759225815;s:146:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/NumberComparisonOperatorsConstantConditionRule.php";i:1759225815;s:136:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/StrictComparisonOfDifferentTypesRule.php";i:1759225815;s:127:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/ConstantLooseComparisonRule.php";i:1759225815;s:136:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/TernaryOperatorConstantConditionRule.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/UnreachableIfBranchesRule.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/UnreachableTernaryElseBranchRule.php";i:1759225815;s:133:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/WhileLoopAlwaysFalseConditionRule.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Comparison/WhileLoopAlwaysTrueConditionRule.php";i:1759225815;s:145:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/CallToConstructorStatementWithoutSideEffectsRule.php";i:1759225815;s:137:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideMethodReturnTypehintRule.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Properties/NullsafePropertyFetchRule.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Traits/TraitDeclarationCollector.php";i:1759225815;s:113:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Traits/TraitUseCollector.php";i:1759225815;s:116:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Traits/NotAnalysedTraitRule.php";i:1759225815;s:130:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Exceptions/CatchWithUnthrownExceptionRule.php";i:1759225815;s:141:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideFunctionParameterOutTypeRule.php";i:1759225815;s:139:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWideMethodParameterOutTypeRule.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/TooWideTypehints/TooWidePropertyTypeRule.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/RandomIntParametersRule.php";i:1759225815;s:114:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ArrayFilterRule.php";i:1759225815;s:114:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ArrayValuesRule.php";i:1759225815;s:115:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/CallUserFuncRule.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ImplodeFunctionRule.php";i:1759225815;s:128:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ParameterCastableToStringRule.php";i:1759225815;s:135:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/ImplodeParameterCastableToStringRule.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/SortParameterCastableToStringRule.php";i:1759225815;s:135:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Functions/MissingFunctionParameterTypehintRule.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MissingMethodParameterTypehintRule.php";i:1759225815;s:125:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Rules/Methods/MissingMethodSelfOutTypeRule.php";i:1759225815;s:90:"/home/jordan/projects/knowledge/vendor/nesbot/carbon/src/Carbon/PHPStan/MacroExtension.php";i:1764709468;s:121:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/DeprecatedClassHelper.php";i:1726069955;s:136:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/DependencyInjection/LazyDeprecatedScopeResolverProvider.php";i:1726069955;s:130:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/DefaultDeprecatedScopeResolver.php";i:1726069955;s:123:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/DeprecatedScopeResolver.php";i:1726069955;s:120:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/BooleansInConditions/BooleanRuleHelper.php";i:1737291744;s:110:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/Operators/OperatorRuleHelper.php";i:1737291744;s:125:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/VariableVariables/VariablePropertyFetchRule.php";i:1737291744;s:132:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/DisallowedConstructs/DisallowedLooseComparisonRule.php";i:1737291744;s:126:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/BooleansInConditions/BooleanInBooleanAndRule.php";i:1737291744;s:126:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/BooleansInConditions/BooleanInBooleanNotRule.php";i:1737291744;s:125:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/BooleansInConditions/BooleanInBooleanOrRule.php";i:1737291744;s:131:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/BooleansInConditions/BooleanInElseIfConditionRule.php";i:1737291744;s:127:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/BooleansInConditions/BooleanInIfConditionRule.php";i:1737291744;s:131:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/BooleansInConditions/BooleanInTernaryOperatorRule.php";i:1737291744;s:102:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/Cast/UselessCastRule.php";i:1737291744;s:120:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/Classes/RequireParentConstructCallRule.php";i:1737291744;s:125:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/DisallowedConstructs/DisallowedBacktickRule.php";i:1737291744;s:122:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/DisallowedConstructs/DisallowedEmptyRule.php";i:1737291744;s:138:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/DisallowedConstructs/DisallowedImplicitArrayCreationRule.php";i:1737291744;s:129:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/DisallowedConstructs/DisallowedShortTernaryRule.php";i:1737291744;s:127:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/ForeachLoop/OverwriteVariablesWithForeachRule.php";i:1737291744;s:127:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/ForLoop/OverwriteVariablesWithForLoopInitRule.php";i:1737291744;s:113:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/Functions/ArrayFilterStrictRule.php";i:1737291744;s:111:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/Functions/ClosureUsesThisRule.php";i:1737291744;s:120:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/Methods/WrongCaseOfInheritedMethodRule.php";i:1737291744;s:128:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/Operators/OperandInArithmeticPostDecrementRule.php";i:1737291744;s:135:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/Operators/OperandInArithmeticIncrementOrDecrementRule.php";i:1737291744;s:128:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/Operators/OperandInArithmeticPostIncrementRule.php";i:1737291744;s:127:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/Operators/OperandInArithmeticPreDecrementRule.php";i:1737291744;s:127:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/Operators/OperandInArithmeticPreIncrementRule.php";i:1737291744;s:124:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/Operators/OperandsInArithmeticAdditionRule.php";i:1737291744;s:124:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/Operators/OperandsInArithmeticDivisionRule.php";i:1737291744;s:130:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/Operators/OperandsInArithmeticExponentiationRule.php";i:1737291744;s:122:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/Operators/OperandsInArithmeticModuloRule.php";i:1737291744;s:130:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/Operators/OperandsInArithmeticMultiplicationRule.php";i:1737291744;s:127:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/Operators/OperandsInArithmeticSubtractionRule.php";i:1737291744;s:124:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/StrictCalls/DynamicCallOnStaticMethodsRule.php";i:1737291744;s:132:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/StrictCalls/DynamicCallOnStaticMethodsCallableRule.php";i:1737291744;s:117:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/StrictCalls/StrictFunctionCallsRule.php";i:1737291744;s:136:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/SwitchConditions/MatchingTypeInSwitchCaseConditionRule.php";i:1737291744;s:122:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/VariableVariables/VariableMethodCallRule.php";i:1737291744;s:126:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/VariableVariables/VariableMethodCallableRule.php";i:1737291744;s:128:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/VariableVariables/VariableStaticMethodCallRule.php";i:1737291744;s:132:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/VariableVariables/VariableStaticMethodCallableRule.php";i:1737291744;s:131:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/VariableVariables/VariableStaticPropertyFetchRule.php";i:1737291744;s:121:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-strict-rules/src/Rules/VariableVariables/VariableVariablesRule.php";i:1737291744;s:111:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/nette/di/src/DI/Container.php";i:1759225815;s:113:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/nette/utils/src/SmartObject.php";i:1759225815;s:104:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Php/PhpVersionFactory.php";i:1759225815;s:97:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Php/PhpVersion.php";i:1759225815;s:134:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/phpstan/phpdoc-parser/src/Parser/ConstExprParser.php";i:1759225815;s:135:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/LazyTypeNodeResolverExtensionRegistryProvider.php";i:1759225815;s:131:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/PhpDoc/TypeNodeResolverExtensionRegistryProvider.php";i:1759225815;s:108:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/ConstantResolver.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/ResultCache/ResultCacheManager.php";i:1759225815;s:129:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/ResultCache/ResultCacheManagerFactory.php";i:1759225815;s:102:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Collectors/Registry.php";i:1759225815;s:121:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/MemoizingContainer.php";i:1759225815;s:158:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Reflection/LazyClassReflectionExtensionRegistryProvider.php";i:1759225815;s:154:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Reflection/ClassReflectionExtensionRegistryProvider.php";i:1759225815;s:154:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/LazyDynamicReturnTypeExtensionRegistryProvider.php";i:1759225815;s:150:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/DynamicReturnTypeExtensionRegistryProvider.php";i:1759225815;s:145:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/LazyParameterOutTypeExtensionProvider.php";i:1759225815;s:141:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/ParameterOutTypeExtensionProvider.php";i:1759225815;s:159:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/LazyExpressionTypeResolverExtensionRegistryProvider.php";i:1759225815;s:155:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/ExpressionTypeResolverExtensionRegistryProvider.php";i:1759225815;s:159:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/LazyOperatorTypeSpecifyingExtensionRegistryProvider.php";i:1759225815;s:155:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/OperatorTypeSpecifyingExtensionRegistryProvider.php";i:1759225815;s:145:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/LazyDynamicThrowTypeExtensionProvider.php";i:1759225815;s:141:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/DynamicThrowTypeExtensionProvider.php";i:1759225815;s:149:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/LazyParameterClosureTypeExtensionProvider.php";i:1759225815;s:145:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/DependencyInjection/Type/ParameterClosureTypeExtensionProvider.php";i:1759225815;s:100:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/File/FileExcluder.php";i:1759225815;s:110:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/File/FileExcluderRawFactory.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/PhpFunctionReflection.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/FunctionReflection.php";i:1759225815;s:119:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/FunctionReflectionFactory.php";i:1759225815;s:154:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedPsrAutoloaderLocator.php";i:1759225815;s:153:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/ondrejmirtes/better-reflection/src/SourceLocator/Type/SourceLocator.php";i:1759225815;s:161:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedPsrAutoloaderLocatorFactory.php";i:1759225815;s:157:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocator.php";i:1759225815;s:164:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/SourceLocator/OptimizedSingleFileSourceLocatorFactory.php";i:1759225815;s:117:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/PhpMethodReflection.php";i:1759225815;s:118:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ExtendedMethodReflection.php";i:1759225815;s:115:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ClassMemberReflection.php";i:1759225815;s:110:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/MethodReflection.php";i:1759225815;s:124:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/Php/PhpMethodReflectionFactory.php";i:1759225815;s:143:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ReflectionProvider/LazyReflectionProviderProvider.php";i:1759225815;s:139:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/ReflectionProvider/ReflectionProviderProvider.php";i:1759225815;s:111:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/UsefulTypeAliasResolver.php";i:1759225815;s:105:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/TypeAliasResolver.php";i:1759225815;s:117:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/LazyTypeAliasResolverProvider.php";i:1759225815;s:113:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Type/TypeAliasResolverProvider.php";i:1759225815;s:105:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Analyser/TypeSpecifier.php";i:1759225815;s:111:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/File/FuzzyRelativePathHelper.php";i:1759225815;s:112:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/File/SimpleRelativePathHelper.php";i:1759225815;s:96:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Broker/Broker.php";i:1759225815;s:122:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/Lexer.php";i:1759225815;s:142:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/src/Reflection/BetterReflection/BetterReflectionProviderFactory.php";i:1759225815;s:132:"phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/vendor/nikic/php-parser/lib/PhpParser/Lexer/Emulative.php";i:1759225815;s:121:"/home/jordan/projects/knowledge/vendor/phpstan/phpstan-deprecation-rules/src/Rules/Deprecations/DeprecatedScopeHelper.php";i:1726069955;}i:3;a:797:{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:38:"PHPStan\Rules\Api\ApiInstantiationRule";i:6;s:37:"PHPStan\Rules\Api\ApiClassExtendsRule";i:7;s:40:"PHPStan\Rules\Api\ApiClassImplementsRule";i:8;s:41:"PHPStan\Rules\Api\ApiInterfaceExtendsRule";i:9;s:35:"PHPStan\Rules\Api\ApiMethodCallRule";i:10;s:35:"PHPStan\Rules\Api\ApiStaticCallRule";i:11;s:33:"PHPStan\Rules\Api\ApiTraitUseRule";i:12;s:37:"PHPStan\Rules\Api\GetTemplateTypeRule";i:13;s:55:"PHPStan\Rules\Api\PhpStanNamespaceIn3rdPartyPackageRule";i:14;s:53:"PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule";i:15;s:39:"PHPStan\Rules\Arrays\EmptyArrayItemRule";i:16;s:57:"PHPStan\Rules\Arrays\OffsetAccessWithoutDimForReadingRule";i:17;s:32:"PHPStan\Rules\Cast\UnsetCastRule";i:18;s:41:"PHPStan\Rules\Classes\AllowedSubTypesRule";i:19;s:41:"PHPStan\Rules\Classes\ClassAttributesRule";i:20;s:49:"PHPStan\Rules\Classes\ClassConstantAttributesRule";i:21;s:39:"PHPStan\Rules\Classes\ClassConstantRule";i:22;s:46:"PHPStan\Rules\Classes\DuplicateDeclarationRule";i:23;s:36:"PHPStan\Rules\Classes\EnumSanityRule";i:24;s:58:"PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule";i:25;s:57:"PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule";i:26;s:59:"PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule";i:27;s:49:"PHPStan\Rules\Classes\ExistingClassInTraitUseRule";i:28;s:39:"PHPStan\Rules\Classes\InstantiationRule";i:29;s:47:"PHPStan\Rules\Classes\InstantiationCallableRule";i:30;s:51:"PHPStan\Rules\Classes\InvalidPromotedPropertiesRule";i:31;s:42:"PHPStan\Rules\Classes\LocalTypeAliasesRule";i:32;s:47:"PHPStan\Rules\Classes\LocalTypeTraitAliasesRule";i:33;s:35:"PHPStan\Rules\Classes\NewStaticRule";i:34;s:48:"PHPStan\Rules\Classes\NonClassAttributeClassRule";i:35;s:39:"PHPStan\Rules\Classes\ReadOnlyClassRule";i:36;s:45:"PHPStan\Rules\Classes\TraitAttributeClassRule";i:37;s:48:"PHPStan\Rules\Constants\ClassAsClassConstantRule";i:38;s:53:"PHPStan\Rules\Constants\DynamicClassConstantFetchRule";i:39;s:41:"PHPStan\Rules\Constants\FinalConstantRule";i:40;s:52:"PHPStan\Rules\Constants\NativeTypedClassConstantRule";i:41;s:46:"PHPStan\Rules\EnumCases\EnumCaseAttributesRule";i:42;s:46:"PHPStan\Rules\Exceptions\NoncapturingCatchRule";i:43;s:44:"PHPStan\Rules\Exceptions\ThrowExpressionRule";i:44;s:51:"PHPStan\Rules\Functions\ArrowFunctionAttributesRule";i:45;s:60:"PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule";i:46;s:45:"PHPStan\Rules\Functions\ClosureAttributesRule";i:47;s:44:"PHPStan\Rules\Functions\DefineParametersRule";i:48;s:67:"PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule";i:49;s:52:"PHPStan\Rules\Functions\CallToFunctionParametersRule";i:50;s:61:"PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule";i:51;s:54:"PHPStan\Rules\Functions\ExistingClassesInTypehintsRule";i:52;s:46:"PHPStan\Rules\Functions\FunctionAttributesRule";i:53;s:41:"PHPStan\Rules\Functions\InnerFunctionRule";i:54;s:63:"PHPStan\Rules\Functions\InvalidLexicalVariablesInClosureUseRule";i:55;s:43:"PHPStan\Rules\Functions\ParamAttributesRule";i:56;s:44:"PHPStan\Rules\Functions\PrintfParametersRule";i:57;s:47:"PHPStan\Rules\Functions\RedefinedParametersRule";i:58;s:47:"PHPStan\Rules\Functions\ReturnNullsafeByRefRule";i:59;s:41:"PHPStan\Rules\Ignore\IgnoreParseErrorRule";i:60;s:57:"PHPStan\Rules\Functions\VariadicParametersDeclarationRule";i:61;s:46:"PHPStan\Rules\Keywords\ContinueBreakInLoopRule";i:62;s:45:"PHPStan\Rules\Keywords\DeclareStrictTypesRule";i:63;s:58:"PHPStan\Rules\Methods\AbstractMethodInNonAbstractClassRule";i:64;s:47:"PHPStan\Rules\Methods\AbstractPrivateMethodRule";i:65;s:37:"PHPStan\Rules\Methods\CallMethodsRule";i:66;s:43:"PHPStan\Rules\Methods\CallStaticMethodsRule";i:67;s:47:"PHPStan\Rules\Methods\ConstructorReturnTypeRule";i:68;s:52:"PHPStan\Rules\Methods\ExistingClassesInTypehintsRule";i:69;s:44:"PHPStan\Rules\Methods\FinalPrivateMethodRule";i:70;s:40:"PHPStan\Rules\Methods\MethodCallableRule";i:71;s:53:"PHPStan\Rules\Methods\MethodVisibilityInInterfaceRule";i:72;s:53:"PHPStan\Rules\Methods\MissingMethodImplementationRule";i:73;s:42:"PHPStan\Rules\Methods\MethodAttributesRule";i:74;s:46:"PHPStan\Rules\Methods\StaticMethodCallableRule";i:75;s:33:"PHPStan\Rules\Names\UsedNamesRule";i:76;s:44:"PHPStan\Rules\Operators\InvalidAssignVarRule";i:77;s:53:"PHPStan\Rules\Properties\AccessPropertiesInAssignRule";i:78;s:59:"PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule";i:79;s:56:"PHPStan\Rules\Properties\InvalidCallablePropertyTypeRule";i:80;s:58:"PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule";i:81;s:50:"PHPStan\Rules\Properties\PropertiesInInterfaceRule";i:82;s:47:"PHPStan\Rules\Properties\PropertyAttributesRule";i:83;s:45:"PHPStan\Rules\Properties\ReadOnlyPropertyRule";i:84;s:50:"PHPStan\Rules\Traits\ConflictingTraitConstantsRule";i:85;s:42:"PHPStan\Rules\Traits\ConstantsInTraitsRule";i:86;s:43:"PHPStan\Rules\Types\InvalidTypesInUnionRule";i:87;s:33:"PHPStan\Rules\Variables\UnsetRule";i:88;s:43:"PHPStan\Rules\Whitespace\FileWhitespaceRule";i:89;s:53:"PHPStan\Rules\Classes\UnusedConstructorParametersRule";i:90;s:36:"PHPStan\Rules\Constants\ConstantRule";i:91;s:45:"PHPStan\Rules\Functions\UnusedClosureUsesRule";i:92;s:33:"PHPStan\Rules\Variables\EmptyRule";i:93;s:33:"PHPStan\Rules\Variables\IssetRule";i:94;s:40:"PHPStan\Rules\Variables\NullCoalesceRule";i:95;s:27:"PHPStan\Rules\Cast\EchoRule";i:96;s:34:"PHPStan\Rules\Cast\InvalidCastRule";i:97;s:50:"PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule";i:98;s:28:"PHPStan\Rules\Cast\PrintRule";i:99;s:60:"PHPStan\Rules\Classes\AccessPrivateConstantThroughStaticRule";i:100;s:55:"PHPStan\Rules\Comparison\UsageOfVoidMatchExpressionRule";i:101;s:56:"PHPStan\Rules\Constants\ValueAssignedToClassConstantRule";i:102;s:60:"PHPStan\Rules\Functions\IncompatibleDefaultParameterTypeRule";i:103;s:41:"PHPStan\Rules\Generics\ClassAncestorsRule";i:104;s:44:"PHPStan\Rules\Generics\ClassTemplateTypeRule";i:105;s:40:"PHPStan\Rules\Generics\EnumAncestorsRule";i:106;s:43:"PHPStan\Rules\Generics\EnumTemplateTypeRule";i:107;s:47:"PHPStan\Rules\Generics\FunctionTemplateTypeRule";i:108;s:52:"PHPStan\Rules\Generics\FunctionSignatureVarianceRule";i:109;s:45:"PHPStan\Rules\Generics\InterfaceAncestorsRule";i:110;s:48:"PHPStan\Rules\Generics\InterfaceTemplateTypeRule";i:111;s:45:"PHPStan\Rules\Generics\MethodTemplateTypeRule";i:112;s:48:"PHPStan\Rules\Generics\MethodTagTemplateTypeRule";i:113;s:50:"PHPStan\Rules\Generics\MethodSignatureVarianceRule";i:114;s:44:"PHPStan\Rules\Generics\TraitTemplateTypeRule";i:115;s:37:"PHPStan\Rules\Generics\UsedTraitsRule";i:116;s:56:"PHPStan\Rules\Methods\CallPrivateMethodThroughStaticRule";i:117;s:58:"PHPStan\Rules\Methods\IncompatibleDefaultParameterTypeRule";i:118;s:54:"PHPStan\Rules\Operators\InvalidComparisonOperationRule";i:119;s:54:"PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule";i:120;s:52:"PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule";i:121;s:39:"PHPStan\Rules\PhpDoc\FunctionAssertRule";i:122;s:37:"PHPStan\Rules\PhpDoc\MethodAssertRule";i:123;s:48:"PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule";i:124;s:60:"PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule";i:125;s:47:"PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule";i:126;s:55:"PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule";i:127;s:49:"PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule";i:128;s:68:"PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule";i:129;s:63:"PHPStan\Rules\Properties\AccessPrivatePropertyThroughStaticRule";i:130;s:43:"PHPStan\Rules\Classes\RequireImplementsRule";i:131;s:40:"PHPStan\Rules\Classes\RequireExtendsRule";i:132;s:57:"PHPStan\Rules\PhpDoc\RequireImplementsDefinitionClassRule";i:133;s:54:"PHPStan\Rules\PhpDoc\RequireExtendsDefinitionClassRule";i:134;s:54:"PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule";i:135;s:43:"PHPStan\Rules\Arrays\ArrayDestructuringRule";i:136;s:42:"PHPStan\Rules\Arrays\IterableInForeachRule";i:137;s:47:"PHPStan\Rules\Arrays\OffsetAccessAssignmentRule";i:138;s:45:"PHPStan\Rules\Arrays\OffsetAccessAssignOpRule";i:139;s:52:"PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule";i:140;s:46:"PHPStan\Rules\Arrays\UnpackIterableInArrayRule";i:141;s:42:"PHPStan\Rules\Exceptions\ThrowExprTypeRule";i:142;s:51:"PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule";i:143;s:45:"PHPStan\Rules\Functions\ClosureReturnTypeRule";i:144;s:38:"PHPStan\Rules\Functions\ReturnTypeRule";i:145;s:38:"PHPStan\Rules\Generators\YieldTypeRule";i:146;s:36:"PHPStan\Rules\Methods\ReturnTypeRule";i:147;s:66:"PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule";i:148;s:51:"PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule";i:149;s:54:"PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule";i:150;s:54:"PHPStan\Rules\Properties\TypesAssignedToPropertiesRule";i:151;s:37:"PHPStan\Rules\Variables\ThrowTypeRule";i:152;s:43:"PHPStan\Rules\Variables\VariableCloningRule";i:153;s:36:"PHPStan\Rules\Arrays\DeadForeachRule";i:154;s:47:"PHPStan\Rules\DeadCode\UnreachableStatementRule";i:155;s:48:"PHPStan\Rules\DeadCode\UnusedPrivateConstantRule";i:156;s:46:"PHPStan\Rules\DeadCode\UnusedPrivateMethodRule";i:157;s:58:"PHPStan\Rules\Exceptions\OverwrittenExitPointByFinallyRule";i:158;s:69:"PHPStan\Rules\Functions\CallToFunctionStatementWithoutSideEffectsRule";i:159;s:65:"PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule";i:160;s:71:"PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule";i:161;s:44:"PHPStan\Rules\Methods\NullsafeMethodCallRule";i:162;s:69:"PHPStan\Rules\TooWideTypehints\TooWideArrowFunctionReturnTypehintRule";i:163;s:63:"PHPStan\Rules\TooWideTypehints\TooWideClosureReturnTypehintRule";i:164;s:64:"PHPStan\Rules\TooWideTypehints\TooWideFunctionReturnTypehintRule";i:165;s:39:"PHPStan\Rules\DateTimeInstantiationRule";i:166;s:56:"PHPStan\Rules\Constants\MissingClassConstantTypehintRule";i:167;s:57:"PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule";i:168;s:53:"PHPStan\Rules\Methods\MissingMethodReturnTypehintRule";i:169;s:52:"PHPStan\Rules\Properties\MissingPropertyTypehintRule";i:170;s:55:"PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule";i:171;s:61:"PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule";i:172;s:55:"PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule";i:173;s:53:"PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule";i:174;s:59:"PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule";i:175;s:66:"PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule";i:176;s:54:"PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule";i:177;s:66:"PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule";i:178;s:59:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule";i:179;s:63:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule";i:180;s:61:"PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule";i:181;s:71:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule";i:182;s:67:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule";i:183;s:68:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule";i:184;s:52:"PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule";i:185;s:53:"PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule";i:186;s:24:"PhpParser\BuilderFactory";i:187;s:27:"PHPStan\Parser\LexerFactory";i:188;s:34:"PhpParser\NodeVisitor\NameResolver";i:189;s:29:"PhpParser\NodeVisitorAbstract";i:190;s:21:"PhpParser\NodeVisitor";i:191;s:36:"PHPStan\Parser\AnonymousClassVisitor";i:192;s:36:"PHPStan\Parser\ArrayFilterArgVisitor";i:193;s:34:"PHPStan\Parser\ArrayFindArgVisitor";i:194;s:33:"PHPStan\Parser\ArrayMapArgVisitor";i:195;s:34:"PHPStan\Parser\ArrayWalkArgVisitor";i:196;s:32:"PHPStan\Parser\ClosureArgVisitor";i:197;s:38:"PHPStan\Parser\ClosureBindToVarVisitor";i:198;s:36:"PHPStan\Parser\ClosureBindArgVisitor";i:199;s:35:"PHPStan\Parser\CurlSetOptArgVisitor";i:200;s:45:"PHPStan\Parser\TypeTraverserInstanceofVisitor";i:201;s:38:"PHPStan\Parser\ArrowFunctionArgVisitor";i:202;s:47:"PHPStan\Parser\MagicConstantParamDefaultVisitor";i:203;s:43:"PHPStan\Parser\NewAssignedToPropertyVisitor";i:204;s:37:"PHPStan\Parser\ParentStmtTypesVisitor";i:205;s:34:"PHPStan\Parser\TryCatchTypeVisitor";i:206;s:35:"PHPStan\Parser\LastConditionVisitor";i:207;s:43:"PhpParser\NodeVisitor\NodeConnectingVisitor";i:208;s:32:"PHPStan\Node\Printer\ExprPrinter";i:209;s:28:"PHPStan\Node\Printer\Printer";i:210;s:32:"PhpParser\PrettyPrinter\Standard";i:211;s:31:"PhpParser\PrettyPrinterAbstract";i:212;s:39:"PHPStan\Broker\AnonymousClassNameHelper";i:213;s:36:"PHPStan\Php\PhpVersionFactoryFactory";i:214;s:32:"PHPStan\PhpDocParser\Lexer\Lexer";i:215;s:38:"PHPStan\PhpDocParser\Parser\TypeParser";i:216;s:40:"PHPStan\PhpDocParser\Parser\PhpDocParser";i:217;s:36:"PHPStan\PhpDocParser\Printer\Printer";i:218;s:37:"PHPStan\PhpDoc\ConstExprParserFactory";i:219;s:40:"PHPStan\PhpDoc\PhpDocInheritanceResolver";i:220;s:33:"PHPStan\PhpDoc\PhpDocNodeResolver";i:221;s:35:"PHPStan\PhpDoc\PhpDocStringResolver";i:222;s:36:"PHPStan\PhpDoc\ConstExprNodeResolver";i:223;s:31:"PHPStan\PhpDoc\TypeNodeResolver";i:224;s:33:"PHPStan\PhpDoc\TypeStringResolver";i:225;s:28:"PHPStan\PhpDoc\StubValidator";i:226;s:42:"PHPStan\PhpDoc\CountableStubFilesExtension";i:227;s:33:"PHPStan\PhpDoc\StubFilesExtension";i:228;s:45:"PHPStan\PhpDoc\SocketSelectStubFilesExtension";i:229;s:39:"PHPStan\PhpDoc\DefaultStubFilesProvider";i:230;s:32:"PHPStan\PhpDoc\StubFilesProvider";i:231;s:45:"PHPStan\PhpDoc\JsonValidateStubFilesExtension";i:232;s:47:"PHPStan\PhpDoc\ReflectionEnumStubFilesExtension";i:233;s:25:"PHPStan\Analyser\Analyser";i:234;s:40:"PHPStan\Analyser\AnalyserResultFinalizer";i:235;s:29:"PHPStan\Analyser\FileAnalyser";i:236;s:38:"PHPStan\Analyser\LocalIgnoresProcessor";i:237;s:37:"PHPStan\Analyser\RuleErrorTransformer";i:238;s:42:"PHPStan\Analyser\Ignore\IgnoredErrorHelper";i:239;s:35:"PHPStan\Analyser\Ignore\IgnoreLexer";i:240;s:41:"PHPStan\Analyser\LazyInternalScopeFactory";i:241;s:37:"PHPStan\Analyser\InternalScopeFactory";i:242;s:29:"PHPStan\Analyser\ScopeFactory";i:243;s:34:"PHPStan\Analyser\NodeScopeResolver";i:244;s:40:"PHPStan\Analyser\ConstantResolverFactory";i:245;s:47:"PHPStan\Analyser\ResultCache\ResultCacheClearer";i:246;s:41:"PHPStan\Analyser\RicherScopeGetTypeHelper";i:247;s:19:"PHPStan\Cache\Cache";i:248;s:34:"PHPStan\Collectors\RegistryFactory";i:249;s:34:"PHPStan\Command\AnalyseApplication";i:250;s:30:"PHPStan\Command\AnalyserRunner";i:251;s:32:"PHPStan\Command\FixerApplication";i:252;s:37:"PHPStan\Dependency\DependencyResolver";i:253;s:38:"PHPStan\Dependency\ExportedNodeFetcher";i:254;s:39:"PHPStan\Dependency\ExportedNodeResolver";i:255;s:38:"PHPStan\Dependency\ExportedNodeVisitor";i:256;s:48:"PHPStan\DependencyInjection\Nette\NetteContainer";i:257;s:37:"PHPStan\DependencyInjection\Container";i:258;s:54:"PHPStan\DependencyInjection\DerivativeContainerFactory";i:259;s:23:"PHPStan\File\FileHelper";i:260;s:32:"PHPStan\File\FileExcluderFactory";i:261;s:23:"PHPStan\File\FileFinder";i:262;s:24:"PHPStan\File\FileMonitor";i:263;s:37:"PHPStan\Parser\DeclarePositionVisitor";i:264;s:47:"PHPStan\Parser\ImmediatelyInvokedClosureVisitor";i:265;s:33:"PHPStan\Parallel\ParallelAnalyser";i:266;s:26:"PHPStan\Parallel\Scheduler";i:267;s:34:"PHPStan\Diagnose\DiagnoseExtension";i:268;s:42:"PHPStan\Parser\FunctionCallStatementFinder";i:269;s:30:"PHPStan\Process\CpuCoreCounter";i:270;s:46:"PHPStan\Reflection\InitializerExprTypeResolver";i:271;s:73:"PHPStan\Reflection\Annotations\AnnotationsMethodsClassReflectionExtension";i:272;s:50:"PHPStan\Reflection\MethodsClassReflectionExtension";i:273;s:76:"PHPStan\Reflection\Annotations\AnnotationsPropertiesClassReflectionExtension";i:274;s:53:"PHPStan\Reflection\PropertiesClassReflectionExtension";i:275;s:64:"PHPStan\Reflection\BetterReflection\SourceLocator\CachingVisitor";i:276;s:66:"PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher";i:277;s:96:"PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker";i:278;s:88:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory";i:279;s:91:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository";i:280;s:92:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository";i:281;s:81:"PHPStan\Reflection\RequireExtension\RequireExtendsMethodsClassReflectionExtension";i:282;s:84:"PHPStan\Reflection\RequireExtension\RequireExtendsPropertiesClassReflectionExtension";i:283;s:61:"PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension";i:284;s:64:"PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension";i:285;s:50:"PHPStan\Reflection\Php\PhpClassReflectionExtension";i:286;s:69:"PHPStan\Reflection\Php\Soap\SoapClientMethodsClassReflectionExtension";i:287;s:66:"PHPStan\Reflection\Php\EnumAllowedSubTypesClassReflectionExtension";i:288;s:58:"PHPStan\Reflection\AllowedSubTypesClassReflectionExtension";i:289;s:68:"PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension";i:290;s:79:"PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension";i:291;s:45:"PHPStan\Type\DynamicMethodReturnTypeExtension";i:292;s:64:"PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider";i:293;s:50:"PHPStan\Reflection\SignatureMap\SignatureMapParser";i:294;s:60:"PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider";i:295;s:52:"PHPStan\Reflection\SignatureMap\SignatureMapProvider";i:296;s:56:"PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider";i:297;s:59:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory";i:298;s:31:"PHPStan\Rules\Api\ApiRuleHelper";i:299;s:29:"PHPStan\Rules\AttributesCheck";i:300;s:58:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck";i:301;s:28:"PHPStan\Rules\ClassNameCheck";i:302;s:39:"PHPStan\Rules\ClassCaseSensitivityCheck";i:303;s:37:"PHPStan\Rules\ClassForbiddenNameCheck";i:304;s:43:"PHPStan\Rules\Classes\LocalTypeAliasesCheck";i:305;s:36:"PHPStan\Rules\Classes\MethodTagCheck";i:306;s:32:"PHPStan\Rules\Classes\MixinCheck";i:307;s:38:"PHPStan\Rules\Classes\PropertyTagCheck";i:308;s:52:"PHPStan\Rules\Comparison\ConstantConditionRuleHelper";i:309;s:50:"PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper";i:310;s:53:"PHPStan\Rules\Exceptions\DefaultExceptionTypeResolver";i:311;s:46:"PHPStan\Rules\Exceptions\ExceptionTypeResolver";i:312;s:68:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule";i:313;s:66:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule";i:314;s:61:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck";i:315;s:53:"PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule";i:316;s:51:"PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule";i:317;s:46:"PHPStan\Rules\Exceptions\TooWideThrowTypeCheck";i:318;s:41:"PHPStan\Rules\FunctionCallParametersCheck";i:319;s:37:"PHPStan\Rules\FunctionDefinitionCheck";i:320;s:37:"PHPStan\Rules\FunctionReturnTypeCheck";i:321;s:44:"PHPStan\Rules\ParameterCastableToStringCheck";i:322;s:49:"PHPStan\Rules\Generics\CrossCheckInterfacesHelper";i:323;s:44:"PHPStan\Rules\Generics\GenericAncestorsCheck";i:324;s:45:"PHPStan\Rules\Generics\GenericObjectTypeCheck";i:325;s:49:"PHPStan\Rules\Generics\MethodTagTemplateTypeCheck";i:326;s:40:"PHPStan\Rules\Generics\TemplateTypeCheck";i:327;s:36:"PHPStan\Rules\Generics\VarianceCheck";i:328;s:24:"PHPStan\Rules\IssetCheck";i:329;s:37:"PHPStan\Rules\Methods\MethodCallCheck";i:330;s:43:"PHPStan\Rules\Methods\StaticMethodCallCheck";i:331;s:41:"PHPStan\Rules\Methods\MethodSignatureRule";i:332;s:53:"PHPStan\Rules\Methods\MethodParameterComparisonHelper";i:333;s:34:"PHPStan\Rules\MissingTypehintCheck";i:334;s:27:"PHPStan\Rules\NullsafeCheck";i:335;s:69:"PHPStan\Rules\Constants\LazyAlwaysUsedClassConstantsExtensionProvider";i:336;s:65:"PHPStan\Rules\Constants\AlwaysUsedClassConstantsExtensionProvider";i:337;s:59:"PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider";i:338;s:55:"PHPStan\Rules\Methods\AlwaysUsedMethodExtensionProvider";i:339;s:52:"PHPStan\Rules\PhpDoc\ConditionalReturnTypeRuleHelper";i:340;s:37:"PHPStan\Rules\PhpDoc\AssertRuleHelper";i:341;s:43:"PHPStan\Rules\PhpDoc\UnresolvableTypeHelper";i:342;s:46:"PHPStan\Rules\PhpDoc\GenericCallableRuleHelper";i:343;s:41:"PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper";i:344;s:40:"PHPStan\Rules\Playground\NeverRuleHelper";i:345;s:65:"PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider";i:346;s:61:"PHPStan\Rules\Properties\ReadWritePropertiesExtensionProvider";i:347;s:43:"PHPStan\Rules\Properties\PropertyDescriptor";i:348;s:49:"PHPStan\Rules\Properties\PropertyReflectionFinder";i:349;s:38:"PHPStan\Rules\Pure\FunctionPurityCheck";i:350;s:29:"PHPStan\Rules\RuleLevelHelper";i:351;s:43:"PHPStan\Rules\UnusedFunctionParametersCheck";i:352;s:59:"PHPStan\Rules\TooWideTypehints\TooWideParameterOutTypeCheck";i:353;s:27:"PHPStan\Type\FileTypeMapper";i:354;s:30:"PHPStan\Type\BitwiseFlagHelper";i:355;s:54:"PHPStan\Type\Php\AbsFunctionDynamicReturnTypeExtension";i:356;s:47:"PHPStan\Type\DynamicFunctionReturnTypeExtension";i:357;s:57:"PHPStan\Type\Php\ArgumentBasedFunctionReturnTypeExtension";i:358;s:62:"PHPStan\Type\Php\ArrayChangeKeyCaseFunctionReturnTypeExtension";i:359;s:61:"PHPStan\Type\Php\ArrayIntersectKeyFunctionReturnTypeExtension";i:360;s:54:"PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension";i:361;s:55:"PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension";i:362;s:56:"PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension";i:363;s:55:"PHPStan\Type\Php\ArrayCurrentDynamicReturnTypeExtension";i:364;s:53:"PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension";i:365;s:57:"PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension";i:366;s:52:"PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper";i:367;s:55:"PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension";i:368;s:53:"PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension";i:369;s:53:"PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension";i:370;s:56:"PHPStan\Type\Php\ArrayFindKeyFunctionReturnTypeExtension";i:371;s:51:"PHPStan\Type\Php\ArrayKeyDynamicReturnTypeExtension";i:372;s:62:"PHPStan\Type\Php\ArrayKeyExistsFunctionTypeSpecifyingExtension";i:373;s:44:"PHPStan\Type\FunctionTypeSpecifyingExtension";i:374;s:44:"PHPStan\Analyser\TypeSpecifierAwareExtension";i:375;s:56:"PHPStan\Type\Php\ArrayKeyFirstDynamicReturnTypeExtension";i:376;s:55:"PHPStan\Type\Php\ArrayKeyLastDynamicReturnTypeExtension";i:377;s:60:"PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension";i:378;s:52:"PHPStan\Type\Php\ArrayMapFunctionReturnTypeExtension";i:379;s:61:"PHPStan\Type\Php\ArrayMergeFunctionDynamicReturnTypeExtension";i:380;s:52:"PHPStan\Type\Php\ArrayNextDynamicReturnTypeExtension";i:381;s:52:"PHPStan\Type\Php\ArrayPopFunctionReturnTypeExtension";i:382;s:53:"PHPStan\Type\Php\ArrayRandFunctionReturnTypeExtension";i:383;s:55:"PHPStan\Type\Php\ArrayReduceFunctionReturnTypeExtension";i:384;s:56:"PHPStan\Type\Php\ArrayReplaceFunctionReturnTypeExtension";i:385;s:56:"PHPStan\Type\Php\ArrayReverseFunctionReturnTypeExtension";i:386;s:54:"PHPStan\Type\Php\ArrayShiftFunctionReturnTypeExtension";i:387;s:54:"PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension";i:388;s:55:"PHPStan\Type\Php\ArraySpliceFunctionReturnTypeExtension";i:389;s:62:"PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension";i:390;s:59:"PHPStan\Type\Php\ArraySearchFunctionTypeSpecifyingExtension";i:391;s:62:"PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension";i:392;s:59:"PHPStan\Type\Php\ArraySumFunctionDynamicReturnTypeExtension";i:393;s:41:"PHPStan\Type\Php\AssertThrowTypeExtension";i:394;s:46:"PHPStan\Type\DynamicFunctionThrowTypeExtension";i:395;s:63:"PHPStan\Type\Php\BackedEnumFromMethodDynamicReturnTypeExtension";i:396;s:51:"PHPStan\Type\DynamicStaticMethodReturnTypeExtension";i:397;s:63:"PHPStan\Type\Php\Base64DecodeDynamicFunctionReturnTypeExtension";i:398;s:54:"PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension";i:399;s:54:"PHPStan\Type\Php\ClosureBindDynamicReturnTypeExtension";i:400;s:56:"PHPStan\Type\Php\ClosureBindToDynamicReturnTypeExtension";i:401;s:62:"PHPStan\Type\Php\ClosureFromCallableDynamicReturnTypeExtension";i:402;s:51:"PHPStan\Type\Php\CompactFunctionReturnTypeExtension";i:403;s:52:"PHPStan\Type\Php\ConstantFunctionReturnTypeExtension";i:404;s:31:"PHPStan\Type\Php\ConstantHelper";i:405;s:49:"PHPStan\Type\Php\CountFunctionReturnTypeExtension";i:406;s:53:"PHPStan\Type\Php\CountFunctionTypeSpecifyingExtension";i:407;s:62:"PHPStan\Type\Php\CurlGetinfoFunctionDynamicReturnTypeExtension";i:408;s:45:"PHPStan\Type\Php\DateFunctionReturnTypeHelper";i:409;s:54:"PHPStan\Type\Php\DateFormatFunctionReturnTypeExtension";i:410;s:52:"PHPStan\Type\Php\DateFormatMethodReturnTypeExtension";i:411;s:48:"PHPStan\Type\Php\DateFunctionReturnTypeExtension";i:412;s:58:"PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension";i:413;s:50:"PHPStan\Type\DynamicStaticMethodThrowTypeExtension";i:414;s:55:"PHPStan\Type\Php\DateIntervalDynamicReturnTypeExtension";i:415;s:57:"PHPStan\Type\Php\DateTimeCreateDynamicReturnTypeExtension";i:416;s:51:"PHPStan\Type\Php\DateTimeDynamicReturnTypeExtension";i:417;s:50:"PHPStan\Type\Php\DateTimeModifyReturnTypeExtension";i:418;s:54:"PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension";i:419;s:55:"PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension";i:420;s:44:"PHPStan\Type\DynamicMethodThrowTypeExtension";i:421;s:52:"PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension";i:422;s:58:"PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension";i:423;s:48:"PHPStan\Type\Php\DsMapDynamicReturnTypeExtension";i:424;s:53:"PHPStan\Type\Php\DsMapDynamicMethodThrowTypeExtension";i:425;s:58:"PHPStan\Type\Php\DioStatDynamicFunctionReturnTypeExtension";i:426;s:58:"PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension";i:427;s:47:"PHPStan\Type\Php\FilterFunctionReturnTypeHelper";i:428;s:54:"PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension";i:429;s:52:"PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension";i:430;s:57:"PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension";i:431;s:57:"PHPStan\Type\Php\GetCalledClassDynamicReturnTypeExtension";i:432;s:51:"PHPStan\Type\Php\GetClassDynamicReturnTypeExtension";i:433;s:56:"PHPStan\Type\Php\GetDebugTypeFunctionReturnTypeExtension";i:434;s:58:"PHPStan\Type\Php\GetDefinedVarsFunctionReturnTypeExtension";i:435;s:65:"PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension";i:436;s:51:"PHPStan\Type\Php\GettypeFunctionReturnTypeExtension";i:437;s:63:"PHPStan\Type\Php\GettimeofdayDynamicFunctionReturnTypeExtension";i:438;s:49:"PHPStan\Type\Php\HashFunctionsReturnTypeExtension";i:439;s:58:"PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension";i:440;s:41:"PHPStan\Type\Php\IntdivThrowTypeExtension";i:441;s:42:"PHPStan\Type\Php\IniGetReturnTypeExtension";i:442;s:39:"PHPStan\Type\Php\JsonThrowTypeExtension";i:443;s:56:"PHPStan\Type\Php\OpenSslEncryptParameterOutTypeExtension";i:444;s:46:"PHPStan\Type\FunctionParameterOutTypeExtension";i:445;s:50:"PHPStan\Type\Php\ParseStrParameterOutTypeExtension";i:446;s:49:"PHPStan\Type\Php\PregMatchTypeSpecifyingExtension";i:447;s:51:"PHPStan\Type\Php\PregMatchParameterOutTypeExtension";i:448;s:56:"PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension";i:449;s:50:"PHPStan\Type\FunctionParameterClosureTypeExtension";i:450;s:39:"PHPStan\Type\Php\RegexArrayShapeMatcher";i:451;s:35:"PHPStan\Type\Regex\RegexGroupParser";i:452;s:40:"PHPStan\Type\Regex\RegexExpressionHelper";i:453;s:61:"PHPStan\Type\Php\ReflectionClassConstructorThrowTypeExtension";i:454;s:64:"PHPStan\Type\Php\ReflectionFunctionConstructorThrowTypeExtension";i:455;s:62:"PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension";i:456;s:64:"PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension";i:457;s:53:"PHPStan\Type\Php\StrContainingTypeSpecifyingExtension";i:458;s:65:"PHPStan\Type\Php\SimpleXMLElementClassPropertyReflectionExtension";i:459;s:62:"PHPStan\Type\Php\SimpleXMLElementConstructorThrowTypeExtension";i:460;s:47:"PHPStan\Type\Php\StatDynamicReturnTypeExtension";i:461;s:52:"PHPStan\Type\Php\MethodExistsTypeSpecifyingExtension";i:462;s:54:"PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension";i:463;s:50:"PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension";i:464;s:63:"PHPStan\Type\Php\NumberFormatFunctionDynamicReturnTypeExtension";i:465;s:59:"PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension";i:466;s:54:"PHPStan\Type\Php\PregFilterFunctionReturnTypeExtension";i:467;s:52:"PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension";i:468;s:67:"PHPStan\Type\Php\ReflectionClassIsSubclassOfTypeSpecifyingExtension";i:469;s:42:"PHPStan\Type\MethodTypeSpecifyingExtension";i:470;s:59:"PHPStan\Type\Php\ReplaceFunctionsDynamicReturnTypeExtension";i:471;s:64:"PHPStan\Type\Php\ArrayPointerFunctionsDynamicReturnTypeExtension";i:472;s:49:"PHPStan\Type\Php\LtrimFunctionReturnTypeExtension";i:473;s:47:"PHPStan\Type\Php\MbFunctionsReturnTypeExtension";i:474;s:52:"PHPStan\Type\Php\MbFunctionsReturnTypeExtensionTrait";i:475;s:61:"PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension";i:476;s:64:"PHPStan\Type\Php\MbSubstituteCharacterDynamicReturnTypeExtension";i:477;s:52:"PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension";i:478;s:53:"PHPStan\Type\Php\MicrotimeFunctionReturnTypeExtension";i:479;s:50:"PHPStan\Type\Php\HrtimeFunctionReturnTypeExtension";i:480;s:51:"PHPStan\Type\Php\ImplodeFunctionReturnTypeExtension";i:481;s:59:"PHPStan\Type\Php\NonEmptyStringFunctionsReturnTypeExtension";i:482;s:55:"PHPStan\Type\Php\SetTypeFunctionTypeSpecifyingExtension";i:483;s:52:"PHPStan\Type\Php\StrCaseFunctionsReturnTypeExtension";i:484;s:50:"PHPStan\Type\Php\StrlenFunctionReturnTypeExtension";i:485;s:65:"PHPStan\Type\Php\StrIncrementDecrementFunctionReturnTypeExtension";i:486;s:50:"PHPStan\Type\Php\StrPadFunctionReturnTypeExtension";i:487;s:53:"PHPStan\Type\Php\StrRepeatFunctionReturnTypeExtension";i:488;s:50:"PHPStan\Type\Php\StrrevFunctionReturnTypeExtension";i:489;s:49:"PHPStan\Type\Php\SubstrDynamicReturnTypeExtension";i:490;s:45:"PHPStan\Type\Php\ThrowableReturnTypeExtension";i:491;s:59:"PHPStan\Type\Php\ParseUrlFunctionDynamicReturnTypeExtension";i:492;s:55:"PHPStan\Type\Php\TriggerErrorDynamicReturnTypeExtension";i:493;s:55:"PHPStan\Type\Php\TrimFunctionDynamicReturnTypeExtension";i:494;s:65:"PHPStan\Type\Php\VersionCompareFunctionDynamicReturnTypeExtension";i:495;s:47:"PHPStan\Type\Php\PowFunctionReturnTypeExtension";i:496;s:49:"PHPStan\Type\Php\RoundFunctionReturnTypeExtension";i:497;s:53:"PHPStan\Type\Php\StrtotimeFunctionReturnTypeExtension";i:498;s:53:"PHPStan\Type\Php\RandomIntFunctionReturnTypeExtension";i:499;s:49:"PHPStan\Type\Php\RangeFunctionReturnTypeExtension";i:500;s:54:"PHPStan\Type\Php\AssertFunctionTypeSpecifyingExtension";i:501;s:59:"PHPStan\Type\Php\ClassExistsFunctionTypeSpecifyingExtension";i:502;s:59:"PHPStan\Type\Php\ClassImplementsFunctionReturnTypeExtension";i:503;s:54:"PHPStan\Type\Php\DefineConstantTypeSpecifyingExtension";i:504;s:55:"PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension";i:505;s:62:"PHPStan\Type\Php\FunctionExistsFunctionTypeSpecifyingExtension";i:506;s:55:"PHPStan\Type\Php\InArrayFunctionTypeSpecifyingExtension";i:507;s:55:"PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension";i:508;s:58:"PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension";i:509;s:58:"PHPStan\Type\Php\IsIterableFunctionTypeSpecifyingExtension";i:510;s:60:"PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension";i:511;s:59:"PHPStan\Type\Php\IteratorToArrayFunctionReturnTypeExtension";i:512;s:51:"PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension";i:513;s:48:"PHPStan\Type\Php\IsAFunctionTypeSpecifyingHelper";i:514;s:58:"PHPStan\Type\Php\CtypeDigitFunctionTypeSpecifyingExtension";i:515;s:59:"PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension";i:516;s:66:"PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension";i:517;s:63:"PHPStan\Type\Php\SimpleXMLElementAsXMLMethodReturnTypeExtension";i:518;s:63:"PHPStan\Type\Php\SimpleXMLElementXpathMethodReturnTypeExtension";i:519;s:52:"PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension";i:520;s:50:"PHPStan\Type\Php\StrTokFunctionReturnTypeExtension";i:521;s:58:"PHPStan\Type\Php\SprintfFunctionDynamicReturnTypeExtension";i:522;s:57:"PHPStan\Type\Php\SscanfFunctionDynamicReturnTypeExtension";i:523;s:56:"PHPStan\Type\Php\StrvalFamilyFunctionReturnTypeExtension";i:524;s:63:"PHPStan\Type\Php\StrWordCountFunctionDynamicReturnTypeExtension";i:525;s:49:"PHPStan\Type\Php\XMLReaderOpenReturnTypeExtension";i:526;s:65:"PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension";i:527;s:57:"PHPStan\Type\Php\DatePeriodConstructorReturnTypeExtension";i:528;s:31:"PHPStan\Type\ClosureTypeFactory";i:529;s:43:"PHPStan\Type\Constant\OversizedArrayBuilder";i:530;s:36:"PHPStan\Rules\Functions\PrintfHelper";i:531;s:37:"PHPStan\Analyser\TypeSpecifierFactory";i:532;s:46:"PHPStan\File\ParentDirectoryRelativePathHelper";i:533;s:31:"PHPStan\File\RelativePathHelper";i:534;s:28:"PHPStan\Broker\BrokerFactory";i:535;s:30:"PHPStan\Cache\FileCacheStorage";i:536;s:26:"PHPStan\Cache\CacheStorage";i:537;s:25:"PHPStan\Parser\RichParser";i:538;s:21:"PHPStan\Parser\Parser";i:539;s:29:"PHPStan\Parser\CleaningParser";i:540;s:27:"PHPStan\Parser\SimpleParser";i:541;s:27:"PHPStan\Parser\CachedParser";i:542;s:33:"PHPStan\Parser\PhpParserDecorator";i:543;s:16:"PhpParser\Parser";i:544;s:21:"PhpParser\Parser\Php7";i:545;s:24:"PhpParser\ParserAbstract";i:546;s:26:"PHPStan\Rules\LazyRegistry";i:547;s:22:"PHPStan\Rules\Registry";i:548;s:33:"PHPStan\PhpDoc\StubPhpDocProvider";i:549;s:63:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory";i:550;s:37:"PHPStan\Reflection\ReflectionProvider";i:551;s:51:"PHPStan\BetterReflection\Reflector\DefaultReflector";i:552;s:44:"PHPStan\BetterReflection\Reflector\Reflector";i:553;s:64:"PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector";i:554;s:49:"PHPStan\BetterReflection\Reflector\ClassReflector";i:555;s:52:"PHPStan\BetterReflection\Reflector\FunctionReflector";i:556;s:52:"PHPStan\BetterReflection\Reflector\ConstantReflector";i:557;s:60:"PHPStan\Reflection\BetterReflection\BetterReflectionProvider";i:558;s:72:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory";i:559;s:83:"PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory";i:560;s:79:"PHPStan\BetterReflection\SourceLocator\SourceStubber\PhpStormStubsSourceStubber";i:561;s:66:"PHPStan\BetterReflection\SourceLocator\SourceStubber\SourceStubber";i:562;s:76:"PHPStan\BetterReflection\SourceLocator\SourceStubber\ReflectionSourceStubber";i:563;s:80:"PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory";i:564;s:32:"PHPStan\Parser\PathRoutingParser";i:565;s:41:"PHPStan\Diagnose\PHPStanDiagnoseExtension";i:566;s:55:"PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter";i:567;s:45:"PHPStan\Command\ErrorFormatter\ErrorFormatter";i:568;s:48:"PHPStan\Command\ErrorFormatter\RawErrorFormatter";i:569;s:50:"PHPStan\Command\ErrorFormatter\TableErrorFormatter";i:570;s:55:"PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter";i:571;s:49:"PHPStan\Command\ErrorFormatter\JsonErrorFormatter";i:572;s:50:"PHPStan\Command\ErrorFormatter\JunitErrorFormatter";i:573;s:51:"PHPStan\Command\ErrorFormatter\GitlabErrorFormatter";i:574;s:51:"PHPStan\Command\ErrorFormatter\GithubErrorFormatter";i:575;s:53:"PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter";i:576;s:40:"PHPStan\Rules\Api\ApiClassConstFetchRule";i:577;s:35:"PHPStan\Rules\Api\ApiInstanceofRule";i:578;s:39:"PHPStan\Rules\Api\ApiInstanceofTypeRule";i:579;s:53:"PHPStan\Rules\Api\NodeConnectingVisitorAttributesRule";i:580;s:47:"PHPStan\Rules\Api\RuntimeReflectionFunctionRule";i:581;s:52:"PHPStan\Rules\Api\RuntimeReflectionInstantiationRule";i:582;s:53:"PHPStan\Rules\Classes\ExistingClassInClassExtendsRule";i:583;s:51:"PHPStan\Rules\Classes\ExistingClassInInstanceOfRule";i:584;s:50:"PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule";i:585;s:53:"PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule";i:586;s:53:"PHPStan\Rules\Functions\CallToNonExistentFunctionRule";i:587;s:46:"PHPStan\Rules\Constants\OverridingConstantRule";i:588;s:42:"PHPStan\Rules\Methods\OverridingMethodRule";i:589;s:47:"PHPStan\Rules\Methods\ConsistentConstructorRule";i:590;s:39:"PHPStan\Rules\Missing\MissingReturnRule";i:591;s:52:"PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule";i:592;s:47:"PHPStan\Rules\Namespaces\ExistingNamesInUseRule";i:593;s:50:"PHPStan\Rules\Operators\InvalidIncDecOperationRule";i:594;s:45:"PHPStan\Rules\Properties\AccessPropertiesRule";i:595;s:51:"PHPStan\Rules\Properties\AccessStaticPropertiesRule";i:596;s:56:"PHPStan\Rules\Properties\ExistingClassesInPropertiesRule";i:597;s:44:"PHPStan\Rules\Functions\FunctionCallableRule";i:598;s:66:"PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule";i:599;s:47:"PHPStan\Rules\Properties\OverridingPropertyRule";i:600;s:53:"PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyRule";i:601;s:50:"PHPStan\Rules\Properties\UninitializedPropertyRule";i:602;s:56:"PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule";i:603;s:55:"PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule";i:604;s:44:"PHPStan\Rules\Variables\CompactVariablesRule";i:605;s:43:"PHPStan\Rules\Variables\DefinedVariableRule";i:606;s:49:"PHPStan\Rules\Regexp\RegularExpressionPatternRule";i:607;s:37:"PHPStan\Reflection\ConstructorsHelper";i:608;s:58:"PHPStan\Rules\Methods\MissingMagicSerializationMethodsRule";i:609;s:48:"PHPStan\Rules\Constants\MagicConstantContextRule";i:610;s:54:"PHPStan\Rules\Functions\UselessFunctionReturnValueRule";i:611;s:49:"PHPStan\Rules\Functions\PrintfArrayParametersRule";i:612;s:49:"PHPStan\Rules\Regexp\RegularExpressionQuotingRule";i:613;s:44:"PHPStan\Rules\Keywords\RequireFileExistsRule";i:614;s:31:"PHPStan\Rules\Classes\MixinRule";i:615;s:36:"PHPStan\Rules\Classes\MixinTraitRule";i:616;s:39:"PHPStan\Rules\Classes\MixinTraitUseRule";i:617;s:35:"PHPStan\Rules\Classes\MethodTagRule";i:618;s:40:"PHPStan\Rules\Classes\MethodTagTraitRule";i:619;s:43:"PHPStan\Rules\Classes\MethodTagTraitUseRule";i:620;s:37:"PHPStan\Rules\Classes\PropertyTagRule";i:621;s:42:"PHPStan\Rules\Classes\PropertyTagTraitRule";i:622;s:45:"PHPStan\Rules\Classes\PropertyTagTraitUseRule";i:623;s:40:"PHPStan\Rules\PhpDoc\RequireExtendsCheck";i:624;s:57:"PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule";i:625;s:73:"PHPStan\Rules\Functions\IncompatibleArrowFunctionDefaultParameterTypeRule";i:626;s:67:"PHPStan\Rules\Functions\IncompatibleClosureDefaultParameterTypeRule";i:627;s:41:"PHPStan\Rules\Functions\CallCallablesRule";i:628;s:53:"PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule";i:629;s:54:"PHPStan\Rules\Methods\IllegalConstructorMethodCallRule";i:630;s:54:"PHPStan\Rules\Methods\IllegalConstructorStaticCallRule";i:631;s:46:"PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule";i:632;s:48:"PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule";i:633;s:45:"PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule";i:634;s:52:"PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule";i:635;s:50:"PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule";i:636;s:43:"PHPStan\Rules\Generics\PropertyVarianceRule";i:637;s:35:"PHPStan\Rules\Pure\PureFunctionRule";i:638;s:33:"PHPStan\Rules\Pure\PureMethodRule";i:639;s:50:"PHPStan\Rules\Operators\InvalidBinaryOperationRule";i:640;s:49:"PHPStan\Rules\Operators\InvalidUnaryOperationRule";i:641;s:50:"PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule";i:642;s:46:"PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule";i:643;s:57:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule";i:644;s:69:"PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule";i:645;s:67:"PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule";i:646;s:42:"PHPStan\Rules\Generators\YieldFromTypeRule";i:647;s:45:"PHPStan\Rules\Generators\YieldInGeneratorRule";i:648;s:39:"PHPStan\Rules\Arrays\ArrayUnpackingRule";i:649;s:62:"PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule";i:650;s:59:"PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule";i:651;s:52:"PHPStan\Rules\Variables\ParameterOutAssignedTypeRule";i:652;s:56:"PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule";i:653;s:46:"PHPStan\Rules\Classes\ImpossibleInstanceOfRule";i:654;s:56:"PHPStan\Rules\Comparison\BooleanAndConstantConditionRule";i:655;s:55:"PHPStan\Rules\Comparison\BooleanOrConstantConditionRule";i:656;s:56:"PHPStan\Rules\Comparison\BooleanNotConstantConditionRule";i:657;s:31:"PHPStan\Rules\DeadCode\NoopRule";i:658;s:72:"PHPStan\Rules\DeadCode\CallToConstructorStatementWithoutImpurePointsRule";i:659;s:62:"PHPStan\Rules\DeadCode\ConstructorWithoutImpurePointsCollector";i:660;s:28:"PHPStan\Collectors\Collector";i:661;s:47:"PHPStan\Rules\DeadCode\PossiblyPureNewCollector";i:662;s:69:"PHPStan\Rules\DeadCode\CallToFunctionStatementWithoutImpurePointsRule";i:663;s:59:"PHPStan\Rules\DeadCode\FunctionWithoutImpurePointsCollector";i:664;s:52:"PHPStan\Rules\DeadCode\PossiblyPureFuncCallCollector";i:665;s:67:"PHPStan\Rules\DeadCode\CallToMethodStatementWithoutImpurePointsRule";i:666;s:57:"PHPStan\Rules\DeadCode\MethodWithoutImpurePointsCollector";i:667;s:54:"PHPStan\Rules\DeadCode\PossiblyPureMethodCallCollector";i:668;s:73:"PHPStan\Rules\DeadCode\CallToStaticMethodStatementWithoutImpurePointsRule";i:669;s:54:"PHPStan\Rules\DeadCode\PossiblyPureStaticCallCollector";i:670;s:48:"PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule";i:671;s:57:"PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule";i:672;s:52:"PHPStan\Rules\Comparison\ElseIfConstantConditionRule";i:673;s:48:"PHPStan\Rules\Comparison\IfConstantConditionRule";i:674;s:60:"PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule";i:675;s:58:"PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule";i:676;s:64:"PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule";i:677;s:56:"PHPStan\Rules\Comparison\LogicalXorConstantConditionRule";i:678;s:37:"PHPStan\Rules\DeadCode\BetterNoopRule";i:679;s:44:"PHPStan\Rules\Comparison\MatchExpressionRule";i:680;s:71:"PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule";i:681;s:61:"PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule";i:682;s:52:"PHPStan\Rules\Comparison\ConstantLooseComparisonRule";i:683;s:61:"PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule";i:684;s:50:"PHPStan\Rules\Comparison\UnreachableIfBranchesRule";i:685;s:57:"PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule";i:686;s:58:"PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule";i:687;s:57:"PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule";i:688;s:70:"PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule";i:689;s:62:"PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule";i:690;s:50:"PHPStan\Rules\Properties\NullsafePropertyFetchRule";i:691;s:46:"PHPStan\Rules\Traits\TraitDeclarationCollector";i:692;s:38:"PHPStan\Rules\Traits\TraitUseCollector";i:693;s:41:"PHPStan\Rules\Traits\NotAnalysedTraitRule";i:694;s:55:"PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule";i:695;s:66:"PHPStan\Rules\TooWideTypehints\TooWideFunctionParameterOutTypeRule";i:696;s:64:"PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule";i:697;s:54:"PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule";i:698;s:47:"PHPStan\Rules\Functions\RandomIntParametersRule";i:699;s:39:"PHPStan\Rules\Functions\ArrayFilterRule";i:700;s:39:"PHPStan\Rules\Functions\ArrayValuesRule";i:701;s:40:"PHPStan\Rules\Functions\CallUserFuncRule";i:702;s:43:"PHPStan\Rules\Functions\ImplodeFunctionRule";i:703;s:53:"PHPStan\Rules\Functions\ParameterCastableToStringRule";i:704;s:60:"PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule";i:705;s:57:"PHPStan\Rules\Functions\SortParameterCastableToStringRule";i:706;s:60:"PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule";i:707;s:56:"PHPStan\Rules\Methods\MissingMethodParameterTypehintRule";i:708;s:50:"PHPStan\Rules\Methods\MissingMethodSelfOutTypeRule";i:709;s:29:"Carbon\PHPStan\MacroExtension";i:710;s:48:"PHPStan\Rules\Deprecations\DeprecatedClassHelper";i:711;s:63:"PHPStan\DependencyInjection\LazyDeprecatedScopeResolverProvider";i:712;s:57:"PHPStan\Rules\Deprecations\DefaultDeprecatedScopeResolver";i:713;s:50:"PHPStan\Rules\Deprecations\DeprecatedScopeResolver";i:714;s:52:"PHPStan\Rules\BooleansInConditions\BooleanRuleHelper";i:715;s:42:"PHPStan\Rules\Operators\OperatorRuleHelper";i:716;s:57:"PHPStan\Rules\VariableVariables\VariablePropertyFetchRule";i:717;s:64:"PHPStan\Rules\DisallowedConstructs\DisallowedLooseComparisonRule";i:718;s:58:"PHPStan\Rules\BooleansInConditions\BooleanInBooleanAndRule";i:719;s:58:"PHPStan\Rules\BooleansInConditions\BooleanInBooleanNotRule";i:720;s:57:"PHPStan\Rules\BooleansInConditions\BooleanInBooleanOrRule";i:721;s:63:"PHPStan\Rules\BooleansInConditions\BooleanInElseIfConditionRule";i:722;s:59:"PHPStan\Rules\BooleansInConditions\BooleanInIfConditionRule";i:723;s:63:"PHPStan\Rules\BooleansInConditions\BooleanInTernaryOperatorRule";i:724;s:34:"PHPStan\Rules\Cast\UselessCastRule";i:725;s:52:"PHPStan\Rules\Classes\RequireParentConstructCallRule";i:726;s:57:"PHPStan\Rules\DisallowedConstructs\DisallowedBacktickRule";i:727;s:54:"PHPStan\Rules\DisallowedConstructs\DisallowedEmptyRule";i:728;s:70:"PHPStan\Rules\DisallowedConstructs\DisallowedImplicitArrayCreationRule";i:729;s:61:"PHPStan\Rules\DisallowedConstructs\DisallowedShortTernaryRule";i:730;s:59:"PHPStan\Rules\ForeachLoop\OverwriteVariablesWithForeachRule";i:731;s:59:"PHPStan\Rules\ForLoop\OverwriteVariablesWithForLoopInitRule";i:732;s:45:"PHPStan\Rules\Functions\ArrayFilterStrictRule";i:733;s:43:"PHPStan\Rules\Functions\ClosureUsesThisRule";i:734;s:52:"PHPStan\Rules\Methods\WrongCaseOfInheritedMethodRule";i:735;s:60:"PHPStan\Rules\Operators\OperandInArithmeticPostDecrementRule";i:736;s:67:"PHPStan\Rules\Operators\OperandInArithmeticIncrementOrDecrementRule";i:737;s:60:"PHPStan\Rules\Operators\OperandInArithmeticPostIncrementRule";i:738;s:59:"PHPStan\Rules\Operators\OperandInArithmeticPreDecrementRule";i:739;s:59:"PHPStan\Rules\Operators\OperandInArithmeticPreIncrementRule";i:740;s:56:"PHPStan\Rules\Operators\OperandsInArithmeticAdditionRule";i:741;s:56:"PHPStan\Rules\Operators\OperandsInArithmeticDivisionRule";i:742;s:62:"PHPStan\Rules\Operators\OperandsInArithmeticExponentiationRule";i:743;s:54:"PHPStan\Rules\Operators\OperandsInArithmeticModuloRule";i:744;s:62:"PHPStan\Rules\Operators\OperandsInArithmeticMultiplicationRule";i:745;s:59:"PHPStan\Rules\Operators\OperandsInArithmeticSubtractionRule";i:746;s:56:"PHPStan\Rules\StrictCalls\DynamicCallOnStaticMethodsRule";i:747;s:64:"PHPStan\Rules\StrictCalls\DynamicCallOnStaticMethodsCallableRule";i:748;s:49:"PHPStan\Rules\StrictCalls\StrictFunctionCallsRule";i:749;s:68:"PHPStan\Rules\SwitchConditions\MatchingTypeInSwitchCaseConditionRule";i:750;s:54:"PHPStan\Rules\VariableVariables\VariableMethodCallRule";i:751;s:58:"PHPStan\Rules\VariableVariables\VariableMethodCallableRule";i:752;s:60:"PHPStan\Rules\VariableVariables\VariableStaticMethodCallRule";i:753;s:64:"PHPStan\Rules\VariableVariables\VariableStaticMethodCallableRule";i:754;s:63:"PHPStan\Rules\VariableVariables\VariableStaticPropertyFetchRule";i:755;s:53:"PHPStan\Rules\VariableVariables\VariableVariablesRule";i:756;s:37:"_PHPStan_b22655c3f\Nette\DI\Container";i:757;s:36:"_PHPStan_b22655c3f\Nette\SmartObject";i:758;s:22:"PHPStan\Php\PhpVersion";i:759;s:29:"PHPStan\Php\PhpVersionFactory";i:760;s:43:"PHPStan\PhpDocParser\Parser\ConstExprParser";i:761;s:56:"PHPStan\PhpDoc\TypeNodeResolverExtensionRegistryProvider";i:762;s:33:"PHPStan\Analyser\ConstantResolver";i:763;s:47:"PHPStan\Analyser\ResultCache\ResultCacheManager";i:764;s:54:"PHPStan\Analyser\ResultCache\ResultCacheManagerFactory";i:765;s:27:"PHPStan\Collectors\Registry";i:766;s:79:"PHPStan\DependencyInjection\Reflection\ClassReflectionExtensionRegistryProvider";i:767;s:75:"PHPStan\DependencyInjection\Type\DynamicReturnTypeExtensionRegistryProvider";i:768;s:66:"PHPStan\DependencyInjection\Type\ParameterOutTypeExtensionProvider";i:769;s:80:"PHPStan\DependencyInjection\Type\ExpressionTypeResolverExtensionRegistryProvider";i:770;s:80:"PHPStan\DependencyInjection\Type\OperatorTypeSpecifyingExtensionRegistryProvider";i:771;s:66:"PHPStan\DependencyInjection\Type\DynamicThrowTypeExtensionProvider";i:772;s:70:"PHPStan\DependencyInjection\Type\ParameterClosureTypeExtensionProvider";i:773;s:25:"PHPStan\File\FileExcluder";i:774;s:35:"PHPStan\File\FileExcluderRawFactory";i:775;s:44:"PHPStan\Reflection\Php\PhpFunctionReflection";i:776;s:37:"PHPStan\Reflection\FunctionReflection";i:777;s:44:"PHPStan\Reflection\FunctionReflectionFactory";i:778;s:79:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator";i:779;s:57:"PHPStan\BetterReflection\SourceLocator\Type\SourceLocator";i:780;s:86:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocatorFactory";i:781;s:82:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator";i:782;s:89:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorFactory";i:783;s:42:"PHPStan\Reflection\Php\PhpMethodReflection";i:784;s:43:"PHPStan\Reflection\ExtendedMethodReflection";i:785;s:40:"PHPStan\Reflection\ClassMemberReflection";i:786;s:35:"PHPStan\Reflection\MethodReflection";i:787;s:49:"PHPStan\Reflection\Php\PhpMethodReflectionFactory";i:788;s:64:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderProvider";i:789;s:30:"PHPStan\Type\TypeAliasResolver";i:790;s:38:"PHPStan\Type\TypeAliasResolverProvider";i:791;s:30:"PHPStan\Analyser\TypeSpecifier";i:792;s:21:"PHPStan\Broker\Broker";i:793;s:15:"PhpParser\Lexer";i:794;s:67:"PHPStan\Reflection\BetterReflection\BetterReflectionProviderFactory";i:795;s:25:"PhpParser\Lexer\Emulative";i:796;s:48:"PHPStan\Rules\Deprecations\DeprecatedScopeHelper";}i:4;a:523:{i:0;s:71:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory::create";i:1;s:91:"PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory::create";i:2;s:88:"PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory::create";i:3;s:47:"PHPStan\Rules\Debug\DebugScopeRule::__construct";i:4;s:51:"PHPStan\Rules\Debug\DumpPhpDocTypeRule::__construct";i:5;s:45:"PHPStan\Rules\Debug\DumpTypeRule::__construct";i:6;s:47:"PHPStan\Rules\Debug\FileAssertRule::__construct";i:7;s:51:"PHPStan\Rules\Api\ApiInstantiationRule::__construct";i:8;s:50:"PHPStan\Rules\Api\ApiClassExtendsRule::__construct";i:9;s:53:"PHPStan\Rules\Api\ApiClassImplementsRule::__construct";i:10;s:54:"PHPStan\Rules\Api\ApiInterfaceExtendsRule::__construct";i:11;s:48:"PHPStan\Rules\Api\ApiMethodCallRule::__construct";i:12;s:48:"PHPStan\Rules\Api\ApiStaticCallRule::__construct";i:13;s:46:"PHPStan\Rules\Api\ApiTraitUseRule::__construct";i:14;s:50:"PHPStan\Rules\Api\GetTemplateTypeRule::__construct";i:15;s:68:"PHPStan\Rules\Api\PhpStanNamespaceIn3rdPartyPackageRule::__construct";i:16;s:66:"PHPStan\Rules\Arrays\DuplicateKeysInLiteralArraysRule::__construct";i:17;s:45:"PHPStan\Rules\Cast\UnsetCastRule::__construct";i:18;s:54:"PHPStan\Rules\Classes\ClassAttributesRule::__construct";i:19;s:62:"PHPStan\Rules\Classes\ClassConstantAttributesRule::__construct";i:20;s:52:"PHPStan\Rules\Classes\ClassConstantRule::__construct";i:21;s:71:"PHPStan\Rules\Classes\ExistingClassesInClassImplementsRule::__construct";i:22;s:70:"PHPStan\Rules\Classes\ExistingClassesInEnumImplementsRule::__construct";i:23;s:72:"PHPStan\Rules\Classes\ExistingClassesInInterfaceExtendsRule::__construct";i:24;s:62:"PHPStan\Rules\Classes\ExistingClassInTraitUseRule::__construct";i:25;s:52:"PHPStan\Rules\Classes\InstantiationRule::__construct";i:26;s:64:"PHPStan\Rules\Classes\InvalidPromotedPropertiesRule::__construct";i:27;s:55:"PHPStan\Rules\Classes\LocalTypeAliasesRule::__construct";i:28;s:60:"PHPStan\Rules\Classes\LocalTypeTraitAliasesRule::__construct";i:29;s:52:"PHPStan\Rules\Classes\ReadOnlyClassRule::__construct";i:30;s:66:"PHPStan\Rules\Constants\DynamicClassConstantFetchRule::__construct";i:31;s:54:"PHPStan\Rules\Constants\FinalConstantRule::__construct";i:32;s:65:"PHPStan\Rules\Constants\NativeTypedClassConstantRule::__construct";i:33;s:59:"PHPStan\Rules\EnumCases\EnumCaseAttributesRule::__construct";i:34;s:59:"PHPStan\Rules\Exceptions\NoncapturingCatchRule::__construct";i:35;s:57:"PHPStan\Rules\Exceptions\ThrowExpressionRule::__construct";i:36;s:64:"PHPStan\Rules\Functions\ArrowFunctionAttributesRule::__construct";i:37;s:73:"PHPStan\Rules\Functions\ArrowFunctionReturnNullsafeByRefRule::__construct";i:38;s:58:"PHPStan\Rules\Functions\ClosureAttributesRule::__construct";i:39;s:57:"PHPStan\Rules\Functions\DefineParametersRule::__construct";i:40;s:80:"PHPStan\Rules\Functions\ExistingClassesInArrowFunctionTypehintsRule::__construct";i:41;s:65:"PHPStan\Rules\Functions\CallToFunctionParametersRule::__construct";i:42;s:74:"PHPStan\Rules\Functions\ExistingClassesInClosureTypehintsRule::__construct";i:43;s:67:"PHPStan\Rules\Functions\ExistingClassesInTypehintsRule::__construct";i:44;s:59:"PHPStan\Rules\Functions\FunctionAttributesRule::__construct";i:45;s:56:"PHPStan\Rules\Functions\ParamAttributesRule::__construct";i:46;s:57:"PHPStan\Rules\Functions\PrintfParametersRule::__construct";i:47;s:60:"PHPStan\Rules\Functions\ReturnNullsafeByRefRule::__construct";i:48;s:58:"PHPStan\Rules\Keywords\DeclareStrictTypesRule::__construct";i:49;s:50:"PHPStan\Rules\Methods\CallMethodsRule::__construct";i:50;s:56:"PHPStan\Rules\Methods\CallStaticMethodsRule::__construct";i:51;s:65:"PHPStan\Rules\Methods\ExistingClassesInTypehintsRule::__construct";i:52;s:57:"PHPStan\Rules\Methods\FinalPrivateMethodRule::__construct";i:53;s:53:"PHPStan\Rules\Methods\MethodCallableRule::__construct";i:54;s:55:"PHPStan\Rules\Methods\MethodAttributesRule::__construct";i:55;s:59:"PHPStan\Rules\Methods\StaticMethodCallableRule::__construct";i:56;s:57:"PHPStan\Rules\Operators\InvalidAssignVarRule::__construct";i:57;s:66:"PHPStan\Rules\Properties\AccessPropertiesInAssignRule::__construct";i:58;s:72:"PHPStan\Rules\Properties\AccessStaticPropertiesInAssignRule::__construct";i:59;s:71:"PHPStan\Rules\Properties\MissingReadOnlyPropertyAssignRule::__construct";i:60;s:60:"PHPStan\Rules\Properties\PropertyAttributesRule::__construct";i:61;s:58:"PHPStan\Rules\Properties\ReadOnlyPropertyRule::__construct";i:62;s:63:"PHPStan\Rules\Traits\ConflictingTraitConstantsRule::__construct";i:63;s:55:"PHPStan\Rules\Traits\ConstantsInTraitsRule::__construct";i:64;s:66:"PHPStan\Rules\Classes\UnusedConstructorParametersRule::__construct";i:65;s:58:"PHPStan\Rules\Functions\UnusedClosureUsesRule::__construct";i:66;s:46:"PHPStan\Rules\Variables\EmptyRule::__construct";i:67;s:46:"PHPStan\Rules\Variables\IssetRule::__construct";i:68;s:53:"PHPStan\Rules\Variables\NullCoalesceRule::__construct";i:69;s:40:"PHPStan\Rules\Cast\EchoRule::__construct";i:70;s:47:"PHPStan\Rules\Cast\InvalidCastRule::__construct";i:71;s:63:"PHPStan\Rules\Cast\InvalidPartOfEncapsedStringRule::__construct";i:72;s:41:"PHPStan\Rules\Cast\PrintRule::__construct";i:73;s:54:"PHPStan\Rules\Generics\ClassAncestorsRule::__construct";i:74;s:57:"PHPStan\Rules\Generics\ClassTemplateTypeRule::__construct";i:75;s:53:"PHPStan\Rules\Generics\EnumAncestorsRule::__construct";i:76;s:60:"PHPStan\Rules\Generics\FunctionTemplateTypeRule::__construct";i:77;s:65:"PHPStan\Rules\Generics\FunctionSignatureVarianceRule::__construct";i:78;s:58:"PHPStan\Rules\Generics\InterfaceAncestorsRule::__construct";i:79;s:61:"PHPStan\Rules\Generics\InterfaceTemplateTypeRule::__construct";i:80;s:58:"PHPStan\Rules\Generics\MethodTemplateTypeRule::__construct";i:81;s:61:"PHPStan\Rules\Generics\MethodTagTemplateTypeRule::__construct";i:82;s:63:"PHPStan\Rules\Generics\MethodSignatureVarianceRule::__construct";i:83;s:57:"PHPStan\Rules\Generics\TraitTemplateTypeRule::__construct";i:84;s:50:"PHPStan\Rules\Generics\UsedTraitsRule::__construct";i:85;s:67:"PHPStan\Rules\Operators\InvalidComparisonOperationRule::__construct";i:86;s:67:"PHPStan\Rules\PhpDoc\FunctionConditionalReturnTypeRule::__construct";i:87;s:65:"PHPStan\Rules\PhpDoc\MethodConditionalReturnTypeRule::__construct";i:88;s:52:"PHPStan\Rules\PhpDoc\FunctionAssertRule::__construct";i:89;s:50:"PHPStan\Rules\PhpDoc\MethodAssertRule::__construct";i:90;s:61:"PHPStan\Rules\PhpDoc\IncompatibleSelfOutTypeRule::__construct";i:91;s:73:"PHPStan\Rules\PhpDoc\IncompatibleClassConstantPhpDocTypeRule::__construct";i:92;s:60:"PHPStan\Rules\PhpDoc\IncompatiblePhpDocTypeRule::__construct";i:93;s:68:"PHPStan\Rules\PhpDoc\IncompatiblePropertyPhpDocTypeRule::__construct";i:94;s:62:"PHPStan\Rules\PhpDoc\InvalidThrowsPhpDocValueRule::__construct";i:95;s:81:"PHPStan\Rules\PhpDoc\IncompatibleParamImmediatelyInvokedCallableRule::__construct";i:96;s:67:"PHPStan\Rules\PhpDoc\RequireExtendsDefinitionClassRule::__construct";i:97;s:67:"PHPStan\Rules\PhpDoc\RequireExtendsDefinitionTraitRule::__construct";i:98;s:56:"PHPStan\Rules\Arrays\ArrayDestructuringRule::__construct";i:99;s:55:"PHPStan\Rules\Arrays\IterableInForeachRule::__construct";i:100;s:60:"PHPStan\Rules\Arrays\OffsetAccessAssignmentRule::__construct";i:101;s:58:"PHPStan\Rules\Arrays\OffsetAccessAssignOpRule::__construct";i:102;s:65:"PHPStan\Rules\Arrays\OffsetAccessValueAssignmentRule::__construct";i:103;s:59:"PHPStan\Rules\Arrays\UnpackIterableInArrayRule::__construct";i:104;s:55:"PHPStan\Rules\Exceptions\ThrowExprTypeRule::__construct";i:105;s:64:"PHPStan\Rules\Functions\ArrowFunctionReturnTypeRule::__construct";i:106;s:58:"PHPStan\Rules\Functions\ClosureReturnTypeRule::__construct";i:107;s:51:"PHPStan\Rules\Functions\ReturnTypeRule::__construct";i:108;s:51:"PHPStan\Rules\Generators\YieldTypeRule::__construct";i:109;s:49:"PHPStan\Rules\Methods\ReturnTypeRule::__construct";i:110;s:79:"PHPStan\Rules\Properties\DefaultValueTypesAssignedToPropertiesRule::__construct";i:111;s:64:"PHPStan\Rules\Properties\ReadOnlyPropertyAssignRule::__construct";i:112;s:67:"PHPStan\Rules\Properties\ReadOnlyPropertyAssignRefRule::__construct";i:113;s:67:"PHPStan\Rules\Properties\TypesAssignedToPropertiesRule::__construct";i:114;s:50:"PHPStan\Rules\Variables\ThrowTypeRule::__construct";i:115;s:56:"PHPStan\Rules\Variables\VariableCloningRule::__construct";i:116;s:61:"PHPStan\Rules\DeadCode\UnusedPrivateConstantRule::__construct";i:117;s:59:"PHPStan\Rules\DeadCode\UnusedPrivateMethodRule::__construct";i:118;s:82:"PHPStan\Rules\Functions\CallToFunctionStatementWithoutSideEffectsRule::__construct";i:119;s:78:"PHPStan\Rules\Methods\CallToMethodStatementWithoutSideEffectsRule::__construct";i:120;s:84:"PHPStan\Rules\Methods\CallToStaticMethodStatementWithoutSideEffectsRule::__construct";i:121;s:69:"PHPStan\Rules\Constants\MissingClassConstantTypehintRule::__construct";i:122;s:70:"PHPStan\Rules\Functions\MissingFunctionReturnTypehintRule::__construct";i:123;s:66:"PHPStan\Rules\Methods\MissingMethodReturnTypehintRule::__construct";i:124;s:65:"PHPStan\Rules\Properties\MissingPropertyTypehintRule::__construct";i:125;s:68:"PHPStan\Rules\Deprecations\AccessDeprecatedPropertyRule::__construct";i:126;s:74:"PHPStan\Rules\Deprecations\AccessDeprecatedStaticPropertyRule::__construct";i:127;s:68:"PHPStan\Rules\Deprecations\CallToDeprecatedFunctionRule::__construct";i:128;s:66:"PHPStan\Rules\Deprecations\CallToDeprecatedMethodRule::__construct";i:129;s:72:"PHPStan\Rules\Deprecations\CallToDeprecatedStaticMethodRule::__construct";i:130;s:79:"PHPStan\Rules\Deprecations\FetchingClassConstOfDeprecatedClassRule::__construct";i:131;s:67:"PHPStan\Rules\Deprecations\FetchingDeprecatedConstRule::__construct";i:132;s:79:"PHPStan\Rules\Deprecations\ImplementationOfDeprecatedInterfaceRule::__construct";i:133;s:72:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedClassRule::__construct";i:134;s:76:"PHPStan\Rules\Deprecations\InheritanceOfDeprecatedInterfaceRule::__construct";i:135;s:74:"PHPStan\Rules\Deprecations\InstantiationOfDeprecatedClassRule::__construct";i:136;s:84:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClassMethodSignatureRule::__construct";i:137;s:80:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInClosureSignatureRule::__construct";i:138;s:81:"PHPStan\Rules\Deprecations\TypeHintDeprecatedInFunctionSignatureRule::__construct";i:139;s:65:"PHPStan\Rules\Deprecations\UsageOfDeprecatedCastRule::__construct";i:140;s:66:"PHPStan\Rules\Deprecations\UsageOfDeprecatedTraitRule::__construct";i:141;s:40:"PHPStan\Parser\LexerFactory::__construct";i:142;s:47:"PhpParser\NodeVisitor\NameResolver::__construct";i:143;s:45:"PHPStan\Node\Printer\ExprPrinter::__construct";i:144;s:41:"PHPStan\Node\Printer\Printer::__construct";i:145;s:52:"PHPStan\Broker\AnonymousClassNameHelper::__construct";i:146;s:37:"PHPStan\Php\PhpVersionFactory::create";i:147;s:44:"PHPStan\Php\PhpVersionFactoryFactory::create";i:148;s:49:"PHPStan\Php\PhpVersionFactoryFactory::__construct";i:149;s:45:"PHPStan\PhpDocParser\Lexer\Lexer::__construct";i:150;s:51:"PHPStan\PhpDocParser\Parser\TypeParser::__construct";i:151;s:45:"PHPStan\PhpDoc\ConstExprParserFactory::create";i:152;s:53:"PHPStan\PhpDocParser\Parser\PhpDocParser::__construct";i:153;s:50:"PHPStan\PhpDoc\ConstExprParserFactory::__construct";i:154;s:53:"PHPStan\PhpDoc\PhpDocInheritanceResolver::__construct";i:155;s:46:"PHPStan\PhpDoc\PhpDocNodeResolver::__construct";i:156;s:48:"PHPStan\PhpDoc\PhpDocStringResolver::__construct";i:157;s:49:"PHPStan\PhpDoc\ConstExprNodeResolver::__construct";i:158;s:44:"PHPStan\PhpDoc\TypeNodeResolver::__construct";i:159;s:73:"PHPStan\PhpDoc\LazyTypeNodeResolverExtensionRegistryProvider::__construct";i:160;s:46:"PHPStan\PhpDoc\TypeStringResolver::__construct";i:161;s:41:"PHPStan\PhpDoc\StubValidator::__construct";i:162;s:55:"PHPStan\PhpDoc\CountableStubFilesExtension::__construct";i:163;s:58:"PHPStan\PhpDoc\SocketSelectStubFilesExtension::__construct";i:164;s:52:"PHPStan\PhpDoc\DefaultStubFilesProvider::__construct";i:165;s:58:"PHPStan\PhpDoc\JsonValidateStubFilesExtension::__construct";i:166;s:60:"PHPStan\PhpDoc\ReflectionEnumStubFilesExtension::__construct";i:167;s:38:"PHPStan\Analyser\Analyser::__construct";i:168;s:53:"PHPStan\Analyser\AnalyserResultFinalizer::__construct";i:169;s:42:"PHPStan\Analyser\FileAnalyser::__construct";i:170;s:55:"PHPStan\Analyser\Ignore\IgnoredErrorHelper::__construct";i:171;s:54:"PHPStan\Analyser\LazyInternalScopeFactory::__construct";i:172;s:42:"PHPStan\Analyser\ScopeFactory::__construct";i:173;s:47:"PHPStan\Analyser\NodeScopeResolver::__construct";i:174;s:48:"PHPStan\Analyser\ConstantResolverFactory::create";i:175;s:53:"PHPStan\Analyser\ConstantResolverFactory::__construct";i:176;s:60:"PHPStan\Analyser\ResultCache\ResultCacheManager::__construct";i:177;s:60:"PHPStan\Analyser\ResultCache\ResultCacheClearer::__construct";i:178;s:54:"PHPStan\Analyser\RicherScopeGetTypeHelper::__construct";i:179;s:32:"PHPStan\Cache\Cache::__construct";i:180;s:42:"PHPStan\Collectors\RegistryFactory::create";i:181;s:47:"PHPStan\Collectors\RegistryFactory::__construct";i:182;s:47:"PHPStan\Command\AnalyseApplication::__construct";i:183;s:43:"PHPStan\Command\AnalyserRunner::__construct";i:184;s:45:"PHPStan\Command\FixerApplication::__construct";i:185;s:50:"PHPStan\Dependency\DependencyResolver::__construct";i:186;s:51:"PHPStan\Dependency\ExportedNodeFetcher::__construct";i:187;s:52:"PHPStan\Dependency\ExportedNodeResolver::__construct";i:188;s:51:"PHPStan\Dependency\ExportedNodeVisitor::__construct";i:189;s:59:"PHPStan\DependencyInjection\MemoizingContainer::__construct";i:190;s:61:"PHPStan\DependencyInjection\Nette\NetteContainer::__construct";i:191;s:67:"PHPStan\DependencyInjection\DerivativeContainerFactory::__construct";i:192;s:96:"PHPStan\DependencyInjection\Reflection\LazyClassReflectionExtensionRegistryProvider::__construct";i:193;s:92:"PHPStan\DependencyInjection\Type\LazyDynamicReturnTypeExtensionRegistryProvider::__construct";i:194;s:83:"PHPStan\DependencyInjection\Type\LazyParameterOutTypeExtensionProvider::__construct";i:195;s:97:"PHPStan\DependencyInjection\Type\LazyExpressionTypeResolverExtensionRegistryProvider::__construct";i:196;s:97:"PHPStan\DependencyInjection\Type\LazyOperatorTypeSpecifyingExtensionRegistryProvider::__construct";i:197;s:83:"PHPStan\DependencyInjection\Type\LazyDynamicThrowTypeExtensionProvider::__construct";i:198;s:87:"PHPStan\DependencyInjection\Type\LazyParameterClosureTypeExtensionProvider::__construct";i:199;s:36:"PHPStan\File\FileHelper::__construct";i:200;s:45:"PHPStan\File\FileExcluderFactory::__construct";i:201;s:38:"PHPStan\File\FileExcluder::__construct";i:202;s:59:"PHPStan\File\FileExcluderFactory::createAnalyseFileExcluder";i:203;s:56:"PHPStan\File\FileExcluderFactory::createScanFileExcluder";i:204;s:36:"PHPStan\File\FileFinder::__construct";i:206;s:37:"PHPStan\File\FileMonitor::__construct";i:207;s:46:"PHPStan\Parallel\ParallelAnalyser::__construct";i:208;s:39:"PHPStan\Parallel\Scheduler::__construct";i:209;s:57:"PHPStan\Reflection\Php\PhpFunctionReflection::__construct";i:210;s:59:"PHPStan\Reflection\InitializerExprTypeResolver::__construct";i:211;s:79:"PHPStan\Reflection\BetterReflection\SourceLocator\FileNodesFetcher::__construct";i:212;s:109:"PHPStan\Reflection\BetterReflection\SourceLocator\ComposerJsonAndInstalledJsonSourceLocatorMaker::__construct";i:213;s:101:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorFactory::__construct";i:214;s:104:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedDirectorySourceLocatorRepository::__construct";i:215;s:92:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedPsrAutoloaderLocator::__construct";i:216;s:95:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocator::__construct";i:217;s:105:"PHPStan\Reflection\BetterReflection\SourceLocator\OptimizedSingleFileSourceLocatorRepository::__construct";i:218;s:74:"PHPStan\Reflection\Mixin\MixinMethodsClassReflectionExtension::__construct";i:219;s:77:"PHPStan\Reflection\Mixin\MixinPropertiesClassReflectionExtension::__construct";i:220;s:63:"PHPStan\Reflection\Php\PhpClassReflectionExtension::__construct";i:221;s:55:"PHPStan\Reflection\Php\PhpMethodReflection::__construct";i:222;s:81:"PHPStan\Reflection\Php\UniversalObjectCratesClassReflectionExtension::__construct";i:223;s:92:"PHPStan\Reflection\PHPStan\NativeReflectionEnumReturnDynamicReturnTypeExtension::__construct";i:225;s:81:"PHPStan\Reflection\ReflectionProvider\LazyReflectionProviderProvider::__construct";i:226;s:77:"PHPStan\Reflection\SignatureMap\NativeFunctionReflectionProvider::__construct";i:227;s:63:"PHPStan\Reflection\SignatureMap\SignatureMapParser::__construct";i:228;s:73:"PHPStan\Reflection\SignatureMap\FunctionSignatureMapProvider::__construct";i:229;s:69:"PHPStan\Reflection\SignatureMap\Php8SignatureMapProvider::__construct";i:230;s:72:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory::__construct";i:231;s:67:"PHPStan\Reflection\SignatureMap\SignatureMapProviderFactory::create";i:232;s:42:"PHPStan\Rules\AttributesCheck::__construct";i:233;s:71:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchCheck::__construct";i:234;s:41:"PHPStan\Rules\ClassNameCheck::__construct";i:235;s:52:"PHPStan\Rules\ClassCaseSensitivityCheck::__construct";i:236;s:50:"PHPStan\Rules\ClassForbiddenNameCheck::__construct";i:237;s:56:"PHPStan\Rules\Classes\LocalTypeAliasesCheck::__construct";i:238;s:49:"PHPStan\Rules\Classes\MethodTagCheck::__construct";i:239;s:45:"PHPStan\Rules\Classes\MixinCheck::__construct";i:240;s:51:"PHPStan\Rules\Classes\PropertyTagCheck::__construct";i:241;s:65:"PHPStan\Rules\Comparison\ConstantConditionRuleHelper::__construct";i:242;s:63:"PHPStan\Rules\Comparison\ImpossibleCheckTypeHelper::__construct";i:243;s:66:"PHPStan\Rules\Exceptions\DefaultExceptionTypeResolver::__construct";i:244;s:81:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInFunctionThrowsRule::__construct";i:245;s:79:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInMethodThrowsRule::__construct";i:246;s:74:"PHPStan\Rules\Exceptions\MissingCheckedExceptionInThrowsCheck::__construct";i:247;s:66:"PHPStan\Rules\Exceptions\TooWideFunctionThrowTypeRule::__construct";i:248;s:64:"PHPStan\Rules\Exceptions\TooWideMethodThrowTypeRule::__construct";i:249;s:54:"PHPStan\Rules\FunctionCallParametersCheck::__construct";i:250;s:50:"PHPStan\Rules\FunctionDefinitionCheck::__construct";i:251;s:50:"PHPStan\Rules\FunctionReturnTypeCheck::__construct";i:252;s:57:"PHPStan\Rules\ParameterCastableToStringCheck::__construct";i:253;s:57:"PHPStan\Rules\Generics\GenericAncestorsCheck::__construct";i:254;s:62:"PHPStan\Rules\Generics\MethodTagTemplateTypeCheck::__construct";i:255;s:53:"PHPStan\Rules\Generics\TemplateTypeCheck::__construct";i:256;s:49:"PHPStan\Rules\Generics\VarianceCheck::__construct";i:257;s:37:"PHPStan\Rules\IssetCheck::__construct";i:258;s:50:"PHPStan\Rules\Methods\MethodCallCheck::__construct";i:259;s:56:"PHPStan\Rules\Methods\StaticMethodCallCheck::__construct";i:260;s:54:"PHPStan\Rules\Methods\MethodSignatureRule::__construct";i:261;s:66:"PHPStan\Rules\Methods\MethodParameterComparisonHelper::__construct";i:262;s:47:"PHPStan\Rules\MissingTypehintCheck::__construct";i:263;s:82:"PHPStan\Rules\Constants\LazyAlwaysUsedClassConstantsExtensionProvider::__construct";i:264;s:72:"PHPStan\Rules\Methods\LazyAlwaysUsedMethodExtensionProvider::__construct";i:265;s:50:"PHPStan\Rules\PhpDoc\AssertRuleHelper::__construct";i:266;s:59:"PHPStan\Rules\PhpDoc\GenericCallableRuleHelper::__construct";i:267;s:54:"PHPStan\Rules\PhpDoc\VarTagTypeRuleHelper::__construct";i:268;s:78:"PHPStan\Rules\Properties\LazyReadWritePropertiesExtensionProvider::__construct";i:269;s:42:"PHPStan\Rules\RuleLevelHelper::__construct";i:270;s:56:"PHPStan\Rules\UnusedFunctionParametersCheck::__construct";i:271;s:40:"PHPStan\Type\FileTypeMapper::__construct";i:272;s:49:"PHPStan\Type\UsefulTypeAliasResolver::__construct";i:273;s:55:"PHPStan\Type\LazyTypeAliasResolverProvider::__construct";i:274;s:43:"PHPStan\Type\BitwiseFlagHelper::__construct";i:275;s:74:"PHPStan\Type\Php\ArrayIntersectKeyFunctionReturnTypeExtension::__construct";i:276;s:67:"PHPStan\Type\Php\ArrayChunkFunctionReturnTypeExtension::__construct";i:277;s:68:"PHPStan\Type\Php\ArrayColumnFunctionReturnTypeExtension::__construct";i:278;s:69:"PHPStan\Type\Php\ArrayCombineFunctionReturnTypeExtension::__construct";i:279;s:66:"PHPStan\Type\Php\ArrayFillFunctionReturnTypeExtension::__construct";i:280;s:70:"PHPStan\Type\Php\ArrayFillKeysFunctionReturnTypeExtension::__construct";i:281;s:65:"PHPStan\Type\Php\ArrayFilterFunctionReturnTypeHelper::__construct";i:282;s:68:"PHPStan\Type\Php\ArrayFilterFunctionReturnTypeExtension::__construct";i:283;s:66:"PHPStan\Type\Php\ArrayFlipFunctionReturnTypeExtension::__construct";i:284;s:66:"PHPStan\Type\Php\ArrayFindFunctionReturnTypeExtension::__construct";i:285;s:73:"PHPStan\Type\Php\ArrayKeysFunctionDynamicReturnTypeExtension::__construct";i:286;s:69:"PHPStan\Type\Php\ArrayReverseFunctionReturnTypeExtension::__construct";i:287;s:67:"PHPStan\Type\Php\ArraySliceFunctionReturnTypeExtension::__construct";i:288;s:75:"PHPStan\Type\Php\ArraySearchFunctionDynamicReturnTypeExtension::__construct";i:289;s:75:"PHPStan\Type\Php\ArrayValuesFunctionDynamicReturnTypeExtension::__construct";i:290;s:67:"PHPStan\Type\Php\BcMathStringOrNullReturnTypeExtension::__construct";i:291;s:64:"PHPStan\Type\Php\CompactFunctionReturnTypeExtension::__construct";i:292;s:65:"PHPStan\Type\Php\ConstantFunctionReturnTypeExtension::__construct";i:293;s:75:"PHPStan\Type\Php\CurlGetinfoFunctionDynamicReturnTypeExtension::__construct";i:294;s:67:"PHPStan\Type\Php\DateFormatFunctionReturnTypeExtension::__construct";i:295;s:65:"PHPStan\Type\Php\DateFormatMethodReturnTypeExtension::__construct";i:296;s:61:"PHPStan\Type\Php\DateFunctionReturnTypeExtension::__construct";i:297;s:71:"PHPStan\Type\Php\DateIntervalConstructorThrowTypeExtension::__construct";i:298;s:63:"PHPStan\Type\Php\DateTimeModifyReturnTypeExtension::__construct";i:300;s:67:"PHPStan\Type\Php\DateTimeConstructorThrowTypeExtension::__construct";i:301;s:68:"PHPStan\Type\Php\DateTimeModifyMethodThrowTypeExtension::__construct";i:302;s:65:"PHPStan\Type\Php\DateTimeSubMethodThrowTypeExtension::__construct";i:303;s:71:"PHPStan\Type\Php\DateTimeZoneConstructorThrowTypeExtension::__construct";i:304;s:71:"PHPStan\Type\Php\ExplodeFunctionDynamicReturnTypeExtension::__construct";i:305;s:60:"PHPStan\Type\Php\FilterFunctionReturnTypeHelper::__construct";i:306;s:67:"PHPStan\Type\Php\FilterInputDynamicReturnTypeExtension::__construct";i:307;s:65:"PHPStan\Type\Php\FilterVarDynamicReturnTypeExtension::__construct";i:308;s:70:"PHPStan\Type\Php\FilterVarArrayDynamicReturnTypeExtension::__construct";i:309;s:78:"PHPStan\Type\Php\GetParentClassDynamicFunctionReturnTypeExtension::__construct";i:310;s:62:"PHPStan\Type\Php\HashFunctionsReturnTypeExtension::__construct";i:311;s:71:"PHPStan\Type\Php\HighlightStringDynamicReturnTypeExtension::__construct";i:312;s:52:"PHPStan\Type\Php\JsonThrowTypeExtension::__construct";i:313;s:62:"PHPStan\Type\Php\PregMatchTypeSpecifyingExtension::__construct";i:314;s:64:"PHPStan\Type\Php\PregMatchParameterOutTypeExtension::__construct";i:315;s:69:"PHPStan\Type\Php\PregReplaceCallbackClosureTypeExtension::__construct";i:316;s:52:"PHPStan\Type\Php\RegexArrayShapeMatcher::__construct";i:317;s:48:"PHPStan\Type\Regex\RegexGroupParser::__construct";i:318;s:53:"PHPStan\Type\Regex\RegexExpressionHelper::__construct";i:319;s:77:"PHPStan\Type\Php\ReflectionFunctionConstructorThrowTypeExtension::__construct";i:320;s:75:"PHPStan\Type\Php\ReflectionMethodConstructorThrowTypeExtension::__construct";i:321;s:77:"PHPStan\Type\Php\ReflectionPropertyConstructorThrowTypeExtension::__construct";i:322;s:67:"PHPStan\Type\Php\PropertyExistsTypeSpecifyingExtension::__construct";i:323;s:63:"PHPStan\Type\Php\MinMaxFunctionReturnTypeExtension::__construct";i:324;s:72:"PHPStan\Type\Php\PathinfoFunctionDynamicReturnTypeExtension::__construct";i:325;s:65:"PHPStan\Type\Php\PregSplitDynamicReturnTypeExtension::__construct";i:326;s:60:"PHPStan\Type\Php\MbFunctionsReturnTypeExtension::__construct";i:327;s:74:"PHPStan\Type\Php\MbConvertEncodingFunctionReturnTypeExtension::__construct";i:328;s:77:"PHPStan\Type\Php\MbSubstituteCharacterDynamicReturnTypeExtension::__construct";i:329;s:65:"PHPStan\Type\Php\MbStrlenFunctionReturnTypeExtension::__construct";i:330;s:62:"PHPStan\Type\Php\SubstrDynamicReturnTypeExtension::__construct";i:331;s:68:"PHPStan\Type\Php\TriggerErrorDynamicReturnTypeExtension::__construct";i:332;s:62:"PHPStan\Type\Php\RoundFunctionReturnTypeExtension::__construct";i:333;s:68:"PHPStan\Type\Php\DefinedConstantTypeSpecifyingExtension::__construct";i:334;s:68:"PHPStan\Type\Php\IsArrayFunctionTypeSpecifyingExtension::__construct";i:335;s:71:"PHPStan\Type\Php\IsCallableFunctionTypeSpecifyingExtension::__construct";i:336;s:73:"PHPStan\Type\Php\IsSubclassOfFunctionTypeSpecifyingExtension::__construct";i:337;s:64:"PHPStan\Type\Php\IsAFunctionTypeSpecifyingExtension::__construct";i:338;s:72:"PHPStan\Type\Php\JsonThrowOnErrorDynamicReturnTypeExtension::__construct";i:339;s:79:"PHPStan\Type\Php\TypeSpecifyingFunctionsDynamicReturnTypeExtension::__construct";i:340;s:65:"PHPStan\Type\Php\StrSplitFunctionReturnTypeExtension::__construct";i:341;s:78:"PHPStan\Type\Php\ReflectionGetAttributesMethodReturnTypeExtension::__construct";i:346;s:44:"PHPStan\Type\ClosureTypeFactory::__construct";i:347;s:49:"PHPStan\Rules\Functions\PrintfHelper::__construct";i:348;s:49:"_PHPStan_b22655c3f\Nette\DI\Container::getService";i:349;s:45:"PHPStan\Analyser\TypeSpecifierFactory::create";i:350;s:50:"PHPStan\Analyser\TypeSpecifierFactory::__construct";i:351;s:49:"PHPStan\File\FuzzyRelativePathHelper::__construct";i:352;s:50:"PHPStan\File\SimpleRelativePathHelper::__construct";i:353;s:59:"PHPStan\File\ParentDirectoryRelativePathHelper::__construct";i:354;s:36:"PHPStan\Broker\BrokerFactory::create";i:355;s:41:"PHPStan\Broker\BrokerFactory::__construct";i:356;s:43:"PHPStan\Cache\FileCacheStorage::__construct";i:357;s:38:"PHPStan\Parser\RichParser::__construct";i:358;s:42:"PHPStan\Parser\CleaningParser::__construct";i:359;s:40:"PHPStan\Parser\SimpleParser::__construct";i:360;s:40:"PHPStan\Parser\CachedParser::__construct";i:361;s:46:"PHPStan\Parser\PhpParserDecorator::__construct";i:362;s:35:"PHPStan\Parser\LexerFactory::create";i:363;s:37:"PhpParser\ParserAbstract::__construct";i:364;s:39:"PHPStan\Rules\LazyRegistry::__construct";i:365;s:46:"PHPStan\PhpDoc\StubPhpDocProvider::__construct";i:366;s:76:"PHPStan\Reflection\ReflectionProvider\ReflectionProviderFactory::__construct";i:368;s:80:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory::create";i:369;s:64:"PHPStan\BetterReflection\Reflector\DefaultReflector::__construct";i:370;s:77:"PHPStan\Reflection\BetterReflection\Reflector\MemoizingReflector::__construct";i:371;s:62:"PHPStan\BetterReflection\Reflector\ClassReflector::__construct";i:372;s:65:"PHPStan\BetterReflection\Reflector\FunctionReflector::__construct";i:373;s:65:"PHPStan\BetterReflection\Reflector\ConstantReflector::__construct";i:375;s:73:"PHPStan\Reflection\BetterReflection\BetterReflectionProvider::__construct";i:376;s:85:"PHPStan\Reflection\BetterReflection\BetterReflectionSourceLocatorFactory::__construct";i:378;s:96:"PHPStan\Reflection\BetterReflection\SourceStubber\PhpStormStubsSourceStubberFactory::__construct";i:381;s:93:"PHPStan\Reflection\BetterReflection\SourceStubber\ReflectionSourceStubberFactory::__construct";i:382;s:44:"PHPStan\Parser\LexerFactory::createEmulative";i:385;s:45:"PHPStan\Parser\PathRoutingParser::__construct";i:386;s:54:"PHPStan\Diagnose\PHPStanDiagnoseExtension::__construct";i:387;s:68:"PHPStan\Command\ErrorFormatter\CiDetectedErrorFormatter::__construct";i:388;s:63:"PHPStan\Command\ErrorFormatter\TableErrorFormatter::__construct";i:389;s:68:"PHPStan\Command\ErrorFormatter\CheckstyleErrorFormatter::__construct";i:390;s:62:"PHPStan\Command\ErrorFormatter\JsonErrorFormatter::__construct";i:391;s:63:"PHPStan\Command\ErrorFormatter\JunitErrorFormatter::__construct";i:393;s:64:"PHPStan\Command\ErrorFormatter\GitlabErrorFormatter::__construct";i:394;s:64:"PHPStan\Command\ErrorFormatter\GithubErrorFormatter::__construct";i:395;s:66:"PHPStan\Command\ErrorFormatter\TeamcityErrorFormatter::__construct";i:396;s:53:"PHPStan\Rules\Api\ApiClassConstFetchRule::__construct";i:397;s:48:"PHPStan\Rules\Api\ApiInstanceofRule::__construct";i:398;s:52:"PHPStan\Rules\Api\ApiInstanceofTypeRule::__construct";i:399;s:66:"PHPStan\Rules\Api\NodeConnectingVisitorAttributesRule::__construct";i:400;s:60:"PHPStan\Rules\Api\RuntimeReflectionFunctionRule::__construct";i:401;s:65:"PHPStan\Rules\Api\RuntimeReflectionInstantiationRule::__construct";i:402;s:66:"PHPStan\Rules\Classes\ExistingClassInClassExtendsRule::__construct";i:403;s:64:"PHPStan\Rules\Classes\ExistingClassInInstanceOfRule::__construct";i:404;s:63:"PHPStan\Rules\Classes\LocalTypeTraitUseAliasesRule::__construct";i:405;s:66:"PHPStan\Rules\Exceptions\CaughtExceptionExistenceRule::__construct";i:406;s:66:"PHPStan\Rules\Functions\CallToNonExistentFunctionRule::__construct";i:407;s:59:"PHPStan\Rules\Constants\OverridingConstantRule::__construct";i:408;s:55:"PHPStan\Rules\Methods\OverridingMethodRule::__construct";i:409;s:60:"PHPStan\Rules\Methods\ConsistentConstructorRule::__construct";i:410;s:52:"PHPStan\Rules\Missing\MissingReturnRule::__construct";i:411;s:65:"PHPStan\Rules\Namespaces\ExistingNamesInGroupUseRule::__construct";i:412;s:60:"PHPStan\Rules\Namespaces\ExistingNamesInUseRule::__construct";i:413;s:63:"PHPStan\Rules\Operators\InvalidIncDecOperationRule::__construct";i:414;s:58:"PHPStan\Rules\Properties\AccessPropertiesRule::__construct";i:415;s:64:"PHPStan\Rules\Properties\AccessStaticPropertiesRule::__construct";i:416;s:69:"PHPStan\Rules\Properties\ExistingClassesInPropertiesRule::__construct";i:417;s:57:"PHPStan\Rules\Functions\FunctionCallableRule::__construct";i:418;s:79:"PHPStan\Rules\Properties\MissingReadOnlyByPhpDocPropertyAssignRule::__construct";i:419;s:60:"PHPStan\Rules\Properties\OverridingPropertyRule::__construct";i:420;s:63:"PHPStan\Rules\Properties\UninitializedPropertyRule::__construct";i:421;s:69:"PHPStan\Rules\Properties\WritingToReadOnlyPropertiesRule::__construct";i:422;s:68:"PHPStan\Rules\Properties\ReadingWriteOnlyPropertiesRule::__construct";i:423;s:57:"PHPStan\Rules\Variables\CompactVariablesRule::__construct";i:424;s:56:"PHPStan\Rules\Variables\DefinedVariableRule::__construct";i:425;s:62:"PHPStan\Rules\Regexp\RegularExpressionPatternRule::__construct";i:426;s:50:"PHPStan\Reflection\ConstructorsHelper::__construct";i:427;s:71:"PHPStan\Rules\Methods\MissingMagicSerializationMethodsRule::__construct";i:428;s:67:"PHPStan\Rules\Functions\UselessFunctionReturnValueRule::__construct";i:429;s:62:"PHPStan\Rules\Functions\PrintfArrayParametersRule::__construct";i:430;s:62:"PHPStan\Rules\Regexp\RegularExpressionQuotingRule::__construct";i:431;s:57:"PHPStan\Rules\Keywords\RequireFileExistsRule::__construct";i:432;s:44:"PHPStan\Rules\Classes\MixinRule::__construct";i:433;s:49:"PHPStan\Rules\Classes\MixinTraitRule::__construct";i:434;s:52:"PHPStan\Rules\Classes\MixinTraitUseRule::__construct";i:435;s:48:"PHPStan\Rules\Classes\MethodTagRule::__construct";i:436;s:53:"PHPStan\Rules\Classes\MethodTagTraitRule::__construct";i:437;s:56:"PHPStan\Rules\Classes\MethodTagTraitUseRule::__construct";i:438;s:50:"PHPStan\Rules\Classes\PropertyTagRule::__construct";i:439;s:55:"PHPStan\Rules\Classes\PropertyTagTraitRule::__construct";i:440;s:58:"PHPStan\Rules\Classes\PropertyTagTraitUseRule::__construct";i:441;s:53:"PHPStan\Rules\PhpDoc\RequireExtendsCheck::__construct";i:442;s:70:"PHPStan\Rules\PhpDoc\RequireImplementsDefinitionTraitRule::__construct";i:443;s:54:"PHPStan\Rules\Functions\CallCallablesRule::__construct";i:444;s:66:"PHPStan\Rules\Generics\MethodTagTemplateTypeTraitRule::__construct";i:445;s:59:"PHPStan\Rules\PhpDoc\InvalidPhpDocTagValueRule::__construct";i:446;s:61:"PHPStan\Rules\PhpDoc\InvalidPhpDocVarTagTypeRule::__construct";i:447;s:58:"PHPStan\Rules\PhpDoc\InvalidPHPStanDocTagRule::__construct";i:448;s:65:"PHPStan\Rules\PhpDoc\VarTagChangedExpressionTypeRule::__construct";i:449;s:63:"PHPStan\Rules\PhpDoc\WrongVariableNameInVarTagRule::__construct";i:450;s:56:"PHPStan\Rules\Generics\PropertyVarianceRule::__construct";i:451;s:48:"PHPStan\Rules\Pure\PureFunctionRule::__construct";i:452;s:46:"PHPStan\Rules\Pure\PureMethodRule::__construct";i:453;s:63:"PHPStan\Rules\Operators\InvalidBinaryOperationRule::__construct";i:454;s:62:"PHPStan\Rules\Operators\InvalidUnaryOperationRule::__construct";i:455;s:63:"PHPStan\Rules\Arrays\InvalidKeyInArrayDimFetchRule::__construct";i:456;s:59:"PHPStan\Rules\Arrays\InvalidKeyInArrayItemRule::__construct";i:457;s:70:"PHPStan\Rules\Arrays\NonexistentOffsetInArrayDimFetchRule::__construct";i:458;s:82:"PHPStan\Rules\Exceptions\ThrowsVoidFunctionWithExplicitThrowPointRule::__construct";i:459;s:80:"PHPStan\Rules\Exceptions\ThrowsVoidMethodWithExplicitThrowPointRule::__construct";i:460;s:55:"PHPStan\Rules\Generators\YieldFromTypeRule::__construct";i:461;s:58:"PHPStan\Rules\Generators\YieldInGeneratorRule::__construct";i:462;s:52:"PHPStan\Rules\Arrays\ArrayUnpackingRule::__construct";i:463;s:75:"PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRefRule::__construct";i:464;s:72:"PHPStan\Rules\Properties\ReadOnlyByPhpDocPropertyAssignRule::__construct";i:465;s:65:"PHPStan\Rules\Variables\ParameterOutAssignedTypeRule::__construct";i:466;s:69:"PHPStan\Rules\Variables\ParameterOutExecutionEndTypeRule::__construct";i:467;s:59:"PHPStan\Rules\Classes\ImpossibleInstanceOfRule::__construct";i:468;s:69:"PHPStan\Rules\Comparison\BooleanAndConstantConditionRule::__construct";i:469;s:68:"PHPStan\Rules\Comparison\BooleanOrConstantConditionRule::__construct";i:470;s:69:"PHPStan\Rules\Comparison\BooleanNotConstantConditionRule::__construct";i:471;s:44:"PHPStan\Rules\DeadCode\NoopRule::__construct";i:472;s:60:"PHPStan\Rules\DeadCode\PossiblyPureNewCollector::__construct";i:473;s:65:"PHPStan\Rules\DeadCode\PossiblyPureFuncCallCollector::__construct";i:474;s:67:"PHPStan\Rules\DeadCode\PossiblyPureMethodCallCollector::__construct";i:475;s:67:"PHPStan\Rules\DeadCode\PossiblyPureStaticCallCollector::__construct";i:476;s:61:"PHPStan\Rules\DeadCode\UnusedPrivatePropertyRule::__construct";i:477;s:70:"PHPStan\Rules\Comparison\DoWhileLoopConstantConditionRule::__construct";i:478;s:65:"PHPStan\Rules\Comparison\ElseIfConstantConditionRule::__construct";i:479;s:61:"PHPStan\Rules\Comparison\IfConstantConditionRule::__construct";i:480;s:73:"PHPStan\Rules\Comparison\ImpossibleCheckTypeFunctionCallRule::__construct";i:481;s:71:"PHPStan\Rules\Comparison\ImpossibleCheckTypeMethodCallRule::__construct";i:482;s:77:"PHPStan\Rules\Comparison\ImpossibleCheckTypeStaticMethodCallRule::__construct";i:483;s:69:"PHPStan\Rules\Comparison\LogicalXorConstantConditionRule::__construct";i:484;s:50:"PHPStan\Rules\DeadCode\BetterNoopRule::__construct";i:485;s:57:"PHPStan\Rules\Comparison\MatchExpressionRule::__construct";i:486;s:84:"PHPStan\Rules\Comparison\NumberComparisonOperatorsConstantConditionRule::__construct";i:487;s:74:"PHPStan\Rules\Comparison\StrictComparisonOfDifferentTypesRule::__construct";i:488;s:65:"PHPStan\Rules\Comparison\ConstantLooseComparisonRule::__construct";i:489;s:74:"PHPStan\Rules\Comparison\TernaryOperatorConstantConditionRule::__construct";i:490;s:63:"PHPStan\Rules\Comparison\UnreachableIfBranchesRule::__construct";i:491;s:70:"PHPStan\Rules\Comparison\UnreachableTernaryElseBranchRule::__construct";i:492;s:71:"PHPStan\Rules\Comparison\WhileLoopAlwaysFalseConditionRule::__construct";i:493;s:70:"PHPStan\Rules\Comparison\WhileLoopAlwaysTrueConditionRule::__construct";i:494;s:83:"PHPStan\Rules\Methods\CallToConstructorStatementWithoutSideEffectsRule::__construct";i:495;s:75:"PHPStan\Rules\TooWideTypehints\TooWideMethodReturnTypehintRule::__construct";i:496;s:63:"PHPStan\Rules\Properties\NullsafePropertyFetchRule::__construct";i:497;s:68:"PHPStan\Rules\Exceptions\CatchWithUnthrownExceptionRule::__construct";i:498;s:79:"PHPStan\Rules\TooWideTypehints\TooWideFunctionParameterOutTypeRule::__construct";i:499;s:77:"PHPStan\Rules\TooWideTypehints\TooWideMethodParameterOutTypeRule::__construct";i:500;s:67:"PHPStan\Rules\TooWideTypehints\TooWidePropertyTypeRule::__construct";i:501;s:60:"PHPStan\Rules\Functions\RandomIntParametersRule::__construct";i:502;s:52:"PHPStan\Rules\Functions\ArrayFilterRule::__construct";i:503;s:52:"PHPStan\Rules\Functions\ArrayValuesRule::__construct";i:504;s:53:"PHPStan\Rules\Functions\CallUserFuncRule::__construct";i:505;s:56:"PHPStan\Rules\Functions\ImplodeFunctionRule::__construct";i:506;s:66:"PHPStan\Rules\Functions\ParameterCastableToStringRule::__construct";i:507;s:73:"PHPStan\Rules\Functions\ImplodeParameterCastableToStringRule::__construct";i:508;s:70:"PHPStan\Rules\Functions\SortParameterCastableToStringRule::__construct";i:509;s:73:"PHPStan\Rules\Functions\MissingFunctionParameterTypehintRule::__construct";i:510;s:69:"PHPStan\Rules\Methods\MissingMethodParameterTypehintRule::__construct";i:511;s:63:"PHPStan\Rules\Methods\MissingMethodSelfOutTypeRule::__construct";i:512;s:42:"Carbon\PHPStan\MacroExtension::__construct";i:513;s:61:"PHPStan\Rules\Deprecations\DeprecatedClassHelper::__construct";i:514;s:76:"PHPStan\DependencyInjection\LazyDeprecatedScopeResolverProvider::__construct";i:515;s:68:"PHPStan\DependencyInjection\LazyDeprecatedScopeResolverProvider::get";i:516;s:65:"PHPStan\Rules\BooleansInConditions\BooleanRuleHelper::__construct";i:517;s:55:"PHPStan\Rules\Operators\OperatorRuleHelper::__construct";i:518;s:70:"PHPStan\Rules\VariableVariables\VariablePropertyFetchRule::__construct";i:519;s:71:"PHPStan\Rules\BooleansInConditions\BooleanInBooleanAndRule::__construct";i:520;s:71:"PHPStan\Rules\BooleansInConditions\BooleanInBooleanNotRule::__construct";i:521;s:70:"PHPStan\Rules\BooleansInConditions\BooleanInBooleanOrRule::__construct";i:522;s:76:"PHPStan\Rules\BooleansInConditions\BooleanInElseIfConditionRule::__construct";i:523;s:72:"PHPStan\Rules\BooleansInConditions\BooleanInIfConditionRule::__construct";i:524;s:76:"PHPStan\Rules\BooleansInConditions\BooleanInTernaryOperatorRule::__construct";i:525;s:47:"PHPStan\Rules\Cast\UselessCastRule::__construct";i:526;s:58:"PHPStan\Rules\Functions\ArrayFilterStrictRule::__construct";i:527;s:80:"PHPStan\Rules\Operators\OperandInArithmeticIncrementOrDecrementRule::__construct";i:531;s:69:"PHPStan\Rules\Operators\OperandsInArithmeticAdditionRule::__construct";i:532;s:69:"PHPStan\Rules\Operators\OperandsInArithmeticDivisionRule::__construct";i:533;s:75:"PHPStan\Rules\Operators\OperandsInArithmeticExponentiationRule::__construct";i:534;s:67:"PHPStan\Rules\Operators\OperandsInArithmeticModuloRule::__construct";i:535;s:75:"PHPStan\Rules\Operators\OperandsInArithmeticMultiplicationRule::__construct";i:536;s:72:"PHPStan\Rules\Operators\OperandsInArithmeticSubtractionRule::__construct";i:537;s:69:"PHPStan\Rules\StrictCalls\DynamicCallOnStaticMethodsRule::__construct";i:538;s:77:"PHPStan\Rules\StrictCalls\DynamicCallOnStaticMethodsCallableRule::__construct";i:539;s:62:"PHPStan\Rules\StrictCalls\StrictFunctionCallsRule::__construct";i:540;s:81:"PHPStan\Rules\SwitchConditions\MatchingTypeInSwitchCaseConditionRule::__construct";}i:5;s:32:"d9de8ab129cd393ebd0c0145e09bb355";} \ No newline at end of file diff --git a/var/cache/phpstan/resultCache.php b/var/cache/phpstan/resultCache.php deleted file mode 100644 index d3cc06f..0000000 --- a/var/cache/phpstan/resultCache.php +++ /dev/null @@ -1,10451 +0,0 @@ - 1770180115, - 'meta' => array ( - 'cacheVersion' => 'v12-linesToIgnore', - 'phpstanVersion' => '1.12.32', - 'phpVersion' => 80416, - 'projectConfig' => '{parameters: {level: 8, paths: [/home/jordan/projects/knowledge/app, /home/jordan/projects/knowledge/config], treatPhpDocTypesAsCertain: false, tmpDir: /home/jordan/projects/knowledge/var/cache/phpstan}}', - 'analysedPaths' => - array ( - 0 => '/home/jordan/projects/knowledge/app', - 1 => '/home/jordan/projects/knowledge/config', - ), - 'scannedFiles' => - array ( - ), - 'composerLocks' => - array ( - '/home/jordan/projects/knowledge/composer.lock' => 'cdb5745d2767fc9f008faed865bcc03894b1535c', - ), - 'composerInstalled' => - array ( - '/home/jordan/projects/knowledge/vendor/composer/installed.php' => - array ( - 'versions' => - array ( - 'brianium/paratest' => - array ( - 'pretty_version' => 'v7.16.0', - 'version' => '7.16.0.0', - 'reference' => 'a10878ed0fe0bbc2f57c980f7a08065338b970b6', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../brianium/paratest', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'brick/math' => - array ( - 'pretty_version' => '0.14.1', - 'version' => '0.14.1.0', - 'reference' => 'f05858549e5f9d7bb45875a75583240a38a281d0', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/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' => '/home/jordan/projects/knowledge/vendor/composer/../carbonphp/carbon-doctrine-types', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'cordoval/hamcrest-php' => - array ( - 'dev_requirement' => true, - 'replaced' => - array ( - 0 => '*', - ), - ), - 'davedevelopment/hamcrest-php' => - array ( - 'dev_requirement' => true, - 'replaced' => - array ( - 0 => '*', - ), - ), - 'doctrine/deprecations' => - array ( - 'pretty_version' => '1.1.5', - 'version' => '1.1.5.0', - 'reference' => '459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../doctrine/deprecations', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'doctrine/inflector' => - array ( - 'pretty_version' => '2.1.0', - 'version' => '2.1.0.0', - 'reference' => '6d6c96277ea252fc1304627204c3d5e6e15faa3b', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../doctrine/inflector', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'dragonmantank/cron-expression' => - array ( - 'pretty_version' => 'v3.6.0', - 'version' => '3.6.0.0', - 'reference' => 'd61a8a9604ec1f8c3d150d09db6ce98b32675013', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../dragonmantank/cron-expression', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'fakerphp/faker' => - array ( - 'pretty_version' => 'v1.24.1', - 'version' => '1.24.1.0', - 'reference' => 'e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../fakerphp/faker', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'fidry/cpu-core-counter' => - array ( - 'pretty_version' => '1.3.0', - 'version' => '1.3.0.0', - 'reference' => 'db9508f7b1474469d9d3c53b86f817e344732678', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../fidry/cpu-core-counter', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'filp/whoops' => - array ( - 'pretty_version' => '2.18.4', - 'version' => '2.18.4.0', - 'reference' => 'd2102955e48b9fd9ab24280a7ad12ed552752c4d', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../filp/whoops', - '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' => '/home/jordan/projects/knowledge/vendor/composer/../graham-campbell/result-type', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'guzzlehttp/guzzle' => - array ( - 'pretty_version' => '7.10.0', - 'version' => '7.10.0.0', - 'reference' => 'b51ac707cfa420b7bfd4e4d5e510ba8008e822b4', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../guzzlehttp/guzzle', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'guzzlehttp/promises' => - array ( - 'pretty_version' => '2.3.0', - 'version' => '2.3.0.0', - 'reference' => '481557b130ef3790cf82b713667b43030dc9c957', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../guzzlehttp/promises', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'guzzlehttp/psr7' => - array ( - 'pretty_version' => '2.8.0', - 'version' => '2.8.0.0', - 'reference' => '21dc724a0583619cd1652f673303492272778051', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../guzzlehttp/psr7', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'hamcrest/hamcrest-php' => - array ( - 'pretty_version' => 'v2.1.1', - 'version' => '2.1.1.0', - 'reference' => 'f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../hamcrest/hamcrest-php', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'illuminate/bus' => - array ( - 'pretty_version' => 'v12.42.0', - 'version' => '12.42.0.0', - 'reference' => 'fdb568a20ad96461caa83b98ffc36d9e95894491', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../illuminate/bus', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'illuminate/cache' => - array ( - 'pretty_version' => 'v12.42.0', - 'version' => '12.42.0.0', - 'reference' => '31b365fe6cc1a22f4670599b101c50f0f85a5440', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../illuminate/cache', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'illuminate/collections' => - array ( - 'pretty_version' => 'v12.42.0', - 'version' => '12.42.0.0', - 'reference' => '16657effa6a5a4e728f9aeb3e38fb4fa9ba70e7d', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../illuminate/collections', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'illuminate/conditionable' => - array ( - 'pretty_version' => 'v12.42.0', - 'version' => '12.42.0.0', - 'reference' => 'ec677967c1f2faf90b8428919124d2184a4c9b49', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../illuminate/conditionable', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'illuminate/config' => - array ( - 'pretty_version' => 'v12.42.0', - 'version' => '12.42.0.0', - 'reference' => '7adbf5cc27081d4613e1fa2f4f53e2a4fc91ad53', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../illuminate/config', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'illuminate/console' => - array ( - 'pretty_version' => 'v12.42.0', - 'version' => '12.42.0.0', - 'reference' => 'f7746a0b2e47d886238ac6527a39b254e5bd2f9c', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../illuminate/console', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'illuminate/container' => - array ( - 'pretty_version' => 'v12.42.0', - 'version' => '12.42.0.0', - 'reference' => '326667a4c813e3ad5a645969a7e3f5c10d159de2', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../illuminate/container', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'illuminate/contracts' => - array ( - 'pretty_version' => 'v12.42.0', - 'version' => '12.42.0.0', - 'reference' => '19e8938edb73047017cfbd443b96844b86da4a59', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../illuminate/contracts', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'illuminate/database' => - array ( - 'pretty_version' => 'v12.42.0', - 'version' => '12.42.0.0', - 'reference' => 'b44f021fee7b48289312e22fd6e4d580374a86ac', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../illuminate/database', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'illuminate/events' => - array ( - 'pretty_version' => 'v12.42.0', - 'version' => '12.42.0.0', - 'reference' => '5fbf9a127cb649699071c2fe98ac1d39e4991da3', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../illuminate/events', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'illuminate/filesystem' => - array ( - 'pretty_version' => 'v12.42.0', - 'version' => '12.42.0.0', - 'reference' => 'b1fbb20010e868f838feac86aeac8ba439fca10d', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../illuminate/filesystem', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'illuminate/macroable' => - array ( - 'pretty_version' => 'v12.42.0', - 'version' => '12.42.0.0', - 'reference' => 'e862e5648ee34004fa56046b746f490dfa86c613', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../illuminate/macroable', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'illuminate/pipeline' => - array ( - 'pretty_version' => 'v12.42.0', - 'version' => '12.42.0.0', - 'reference' => 'b6a14c20d69a44bf0a6fba664a00d23ca71770ee', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../illuminate/pipeline', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'illuminate/process' => - array ( - 'pretty_version' => 'v12.42.0', - 'version' => '12.42.0.0', - 'reference' => '5d321a370be11d254944bff1039904455328540c', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../illuminate/process', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'illuminate/reflection' => - array ( - 'pretty_version' => 'v12.42.0', - 'version' => '12.42.0.0', - 'reference' => '7b86bc570d5b75e4a3ad79f8cca1491ba24b7c75', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../illuminate/reflection', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'illuminate/support' => - array ( - 'pretty_version' => 'v12.42.0', - 'version' => '12.42.0.0', - 'reference' => 'd35411be5657e0b5560a5885f3c9140e4cbe0be5', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../illuminate/support', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'illuminate/testing' => - array ( - 'pretty_version' => 'v12.42.0', - 'version' => '12.42.0.0', - 'reference' => 'bc3bba3df88649166dfdec3881638dd9bf81f584', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../illuminate/testing', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'illuminate/view' => - array ( - 'pretty_version' => 'v12.42.0', - 'version' => '12.42.0.0', - 'reference' => 'f065c5fc1ad29aaf5734c5f99f69fc4cde9a255f', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../illuminate/view', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'jean85/pretty-package-versions' => - array ( - 'pretty_version' => '2.1.1', - 'version' => '2.1.1.0', - 'reference' => '4d7aa5dab42e2a76d99559706022885de0e18e1a', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../jean85/pretty-package-versions', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'jolicode/jolinotif' => - array ( - 'pretty_version' => 'v2.7.3', - 'version' => '2.7.3.0', - 'reference' => '3c3e1c410b107dd2603b732508fd95830f0e0196', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../jolicode/jolinotif', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'jolicode/php-os-helper' => - array ( - 'pretty_version' => 'v0.1.0', - 'version' => '0.1.0.0', - 'reference' => '1622ad8bbcab98e62b5c041397e8519f10d90e29', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../jolicode/php-os-helper', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'kodova/hamcrest-php' => - array ( - 'dev_requirement' => true, - 'replaced' => - array ( - 0 => '*', - ), - ), - 'laravel-zero/foundation' => - array ( - 'pretty_version' => 'v12.40.0', - 'version' => '12.40.0.0', - 'reference' => 'e2530c77db6456d08bd7493e8107e57d7b93cfbf', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../laravel-zero/foundation', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'laravel-zero/framework' => - array ( - 'pretty_version' => 'v12.0.4', - 'version' => '12.0.4.0', - 'reference' => '375b89f8c24fe169d3042b06228e1f3dc50104ff', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../laravel-zero/framework', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'laravel/pint' => - array ( - 'pretty_version' => 'v1.26.0', - 'version' => '1.26.0.0', - 'reference' => '69dcca060ecb15e4b564af63d1f642c81a241d6f', - 'type' => 'project', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../laravel/pint', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'laravel/prompts' => - array ( - 'pretty_version' => 'v0.3.8', - 'version' => '0.3.8.0', - 'reference' => '096748cdfb81988f60090bbb839ce3205ace0d35', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../laravel/prompts', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'laravel/serializable-closure' => - array ( - 'pretty_version' => 'v2.0.7', - 'version' => '2.0.7.0', - 'reference' => 'cb291e4c998ac50637c7eeb58189c14f5de5b9dd', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../laravel/serializable-closure', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'league/flysystem' => - array ( - 'pretty_version' => '3.30.2', - 'version' => '3.30.2.0', - 'reference' => '5966a8ba23e62bdb518dd9e0e665c2dbd4b5b277', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../league/flysystem', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'league/flysystem-local' => - array ( - 'pretty_version' => '3.30.2', - 'version' => '3.30.2.0', - 'reference' => 'ab4f9d0d672f601b102936aa728801dd1a11968d', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/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' => '/home/jordan/projects/knowledge/vendor/composer/../league/mime-type-detection', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'mockery/mockery' => - array ( - 'pretty_version' => '1.6.12', - 'version' => '1.6.12.0', - 'reference' => '1f4efdd7d3beafe9807b08156dfcb176d18f1699', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../mockery/mockery', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'mtdowling/cron-expression' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => '^1.0', - ), - ), - 'myclabs/deep-copy' => - array ( - 'pretty_version' => '1.13.4', - 'version' => '1.13.4.0', - 'reference' => '07d290f0c47959fd5eed98c95ee5602db07e0b6a', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../myclabs/deep-copy', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'nesbot/carbon' => - array ( - 'pretty_version' => '3.11.0', - 'version' => '3.11.0.0', - 'reference' => 'bdb375400dcd162624531666db4799b36b64e4a1', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../nesbot/carbon', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'nikic/php-parser' => - array ( - 'pretty_version' => 'v5.7.0', - 'version' => '5.7.0.0', - 'reference' => 'dca41cd15c2ac9d055ad70dbfd011130757d1f82', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../nikic/php-parser', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'nunomaduro/collision' => - array ( - 'pretty_version' => 'v8.8.3', - 'version' => '8.8.3.0', - 'reference' => '1dc9e88d105699d0fee8bb18890f41b274f6b4c4', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../nunomaduro/collision', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'nunomaduro/laravel-console-summary' => - array ( - 'pretty_version' => 'v1.13.0', - 'version' => '1.13.0.0', - 'reference' => '8fe07f5ecbedca8544edc54f397538dc0b49d7f9', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../nunomaduro/laravel-console-summary', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'nunomaduro/laravel-console-task' => - array ( - 'pretty_version' => 'v1.10.0', - 'version' => '1.10.0.0', - 'reference' => '9d11073ad8b0215c63a962250e2bf071611f975d', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../nunomaduro/laravel-console-task', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'nunomaduro/laravel-desktop-notifier' => - array ( - 'pretty_version' => 'v2.9.0', - 'version' => '2.9.0.0', - 'reference' => '4871ee90fff38fbe25a2b8f81b5daeedf98a3ed7', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../nunomaduro/laravel-desktop-notifier', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'nunomaduro/termwind' => - array ( - 'pretty_version' => 'v2.3.3', - 'version' => '2.3.3.0', - 'reference' => '6fb2a640ff502caace8e05fd7be3b503a7e1c017', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../nunomaduro/termwind', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'pestphp/pest' => - array ( - 'pretty_version' => 'v4.2.0', - 'version' => '4.2.0.0', - 'reference' => '7c43c1c5834435ed9f4ad635e9cb1f0064f876bd', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../pestphp/pest', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'pestphp/pest-plugin' => - array ( - 'pretty_version' => 'v4.0.0', - 'version' => '4.0.0.0', - 'reference' => '9d4b93d7f73d3f9c3189bb22c220fef271cdf568', - 'type' => 'composer-plugin', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../pestphp/pest-plugin', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'pestphp/pest-plugin-arch' => - array ( - 'pretty_version' => 'v4.0.0', - 'version' => '4.0.0.0', - 'reference' => '25bb17e37920ccc35cbbcda3b00d596aadf3e58d', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../pestphp/pest-plugin-arch', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'pestphp/pest-plugin-mutate' => - array ( - 'pretty_version' => 'v4.0.1', - 'version' => '4.0.1.0', - 'reference' => 'd9b32b60b2385e1688a68cc227594738ec26d96c', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../pestphp/pest-plugin-mutate', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'pestphp/pest-plugin-profanity' => - array ( - 'pretty_version' => 'v4.2.1', - 'version' => '4.2.1.0', - 'reference' => '343cfa6f3564b7e35df0ebb77b7fa97039f72b27', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../pestphp/pest-plugin-profanity', - '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' => '/home/jordan/projects/knowledge/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' => '/home/jordan/projects/knowledge/vendor/composer/../phar-io/version', - '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' => '/home/jordan/projects/knowledge/vendor/composer/../phpdocumentor/reflection-common', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpdocumentor/reflection-docblock' => - array ( - 'pretty_version' => '5.6.5', - 'version' => '5.6.5.0', - 'reference' => '90614c73d3800e187615e2dd236ad0e2a01bf761', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../phpdocumentor/reflection-docblock', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpdocumentor/type-resolver' => - array ( - 'pretty_version' => '1.12.0', - 'version' => '1.12.0.0', - 'reference' => '92a98ada2b93d9b201a613cb5a33584dde25f195', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../phpdocumentor/type-resolver', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpoption/phpoption' => - array ( - 'pretty_version' => '1.9.4', - 'version' => '1.9.4.0', - 'reference' => '638a154f8d4ee6a5cfa96d6a34dfbe0cffa9566d', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/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' => '/home/jordan/projects/knowledge/vendor/composer/../phpstan/extension-installer', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpstan/phpdoc-parser' => - array ( - 'pretty_version' => '2.3.0', - 'version' => '2.3.0.0', - 'reference' => '1e0cd5370df5dd2e556a36b9c62f62e555870495', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../phpstan/phpdoc-parser', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpstan/phpstan' => - array ( - 'pretty_version' => '1.12.32', - 'version' => '1.12.32.0', - 'reference' => '2770dcdf5078d0b0d53f94317e06affe88419aa8', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../phpstan/phpstan', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpstan/phpstan-deprecation-rules' => - array ( - 'pretty_version' => '1.2.1', - 'version' => '1.2.1.0', - 'reference' => 'f94d246cc143ec5a23da868f8f7e1393b50eaa82', - 'type' => 'phpstan-extension', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../phpstan/phpstan-deprecation-rules', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpstan/phpstan-strict-rules' => - array ( - 'pretty_version' => '1.6.2', - 'version' => '1.6.2.0', - 'reference' => 'b564ca479e7e735f750aaac4935af965572a7845', - 'type' => 'phpstan-extension', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../phpstan/phpstan-strict-rules', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpunit/php-code-coverage' => - array ( - 'pretty_version' => '12.5.1', - 'version' => '12.5.1.0', - 'reference' => 'c467c59a4f6e04b942be422844e7a6352fa01b57', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../phpunit/php-code-coverage', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpunit/php-file-iterator' => - array ( - 'pretty_version' => '6.0.0', - 'version' => '6.0.0.0', - 'reference' => '961bc913d42fe24a257bfff826a5068079ac7782', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../phpunit/php-file-iterator', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpunit/php-invoker' => - array ( - 'pretty_version' => '6.0.0', - 'version' => '6.0.0.0', - 'reference' => '12b54e689b07a25a9b41e57736dfab6ec9ae5406', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../phpunit/php-invoker', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpunit/php-text-template' => - array ( - 'pretty_version' => '5.0.0', - 'version' => '5.0.0.0', - 'reference' => 'e1367a453f0eda562eedb4f659e13aa900d66c53', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../phpunit/php-text-template', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpunit/php-timer' => - array ( - 'pretty_version' => '8.0.0', - 'version' => '8.0.0.0', - 'reference' => 'f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../phpunit/php-timer', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'phpunit/phpunit' => - array ( - 'pretty_version' => '12.5.3', - 'version' => '12.5.3.0', - 'reference' => '6dc2e076d09960efbb0c1272aa9bc156fc80955e', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/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' => '/home/jordan/projects/knowledge/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' => '/home/jordan/projects/knowledge/vendor/composer/../psr/container', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'psr/container-implementation' => - array ( - 'dev_requirement' => false, - 'provided' => - array ( - 0 => '1.1|2.0', - ), - ), - 'psr/event-dispatcher' => - array ( - 'pretty_version' => '1.0.0', - 'version' => '1.0.0.0', - 'reference' => 'dbefd12671e8a14ec7f180cab83036ed26714bb0', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/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' => '/home/jordan/projects/knowledge/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' => '/home/jordan/projects/knowledge/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' => '/home/jordan/projects/knowledge/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' => '/home/jordan/projects/knowledge/vendor/composer/../psr/log', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'psr/log-implementation' => - array ( - 'dev_requirement' => false, - 'provided' => - array ( - 0 => '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' => '/home/jordan/projects/knowledge/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', - ), - ), - 'ralouphie/getallheaders' => - array ( - 'pretty_version' => '3.0.3', - 'version' => '3.0.3.0', - 'reference' => '120b605dfeb996808c31b6477290a714d356e822', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../ralouphie/getallheaders', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'ramsey/collection' => - array ( - 'pretty_version' => '2.1.1', - 'version' => '2.1.1.0', - 'reference' => '344572933ad0181accbf4ba763e85a0306a8c5e2', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../ramsey/collection', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'ramsey/uuid' => - array ( - 'pretty_version' => '4.9.2', - 'version' => '4.9.2.0', - 'reference' => '8429c78ca35a09f27565311b98101e2826affde0', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../ramsey/uuid', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'rector/rector' => - array ( - 'pretty_version' => '1.2.10', - 'version' => '1.2.10.0', - 'reference' => '40f9cf38c05296bd32f444121336a521a293fa61', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../rector/rector', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'rhumsaa/uuid' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => '4.9.2', - ), - ), - 'saloonphp/saloon' => - array ( - 'pretty_version' => 'v3.14.2', - 'version' => '3.14.2.0', - 'reference' => '634be16ca5eb0b71ab01533f58dc88d174a2e28b', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../saloonphp/saloon', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'sebastian/cli-parser' => - array ( - 'pretty_version' => '4.2.0', - 'version' => '4.2.0.0', - 'reference' => '90f41072d220e5c40df6e8635f5dafba2d9d4d04', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../sebastian/cli-parser', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/comparator' => - array ( - 'pretty_version' => '7.1.3', - 'version' => '7.1.3.0', - 'reference' => 'dc904b4bb3ab070865fa4068cd84f3da8b945148', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../sebastian/comparator', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/complexity' => - array ( - 'pretty_version' => '5.0.0', - 'version' => '5.0.0.0', - 'reference' => 'bad4316aba5303d0221f43f8cee37eb58d384bbb', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../sebastian/complexity', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/diff' => - array ( - 'pretty_version' => '7.0.0', - 'version' => '7.0.0.0', - 'reference' => '7ab1ea946c012266ca32390913653d844ecd085f', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../sebastian/diff', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/environment' => - array ( - 'pretty_version' => '8.0.3', - 'version' => '8.0.3.0', - 'reference' => '24a711b5c916efc6d6e62aa65aa2ec98fef77f68', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../sebastian/environment', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/exporter' => - array ( - 'pretty_version' => '7.0.2', - 'version' => '7.0.2.0', - 'reference' => '016951ae10980765e4e7aee491eb288c64e505b7', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../sebastian/exporter', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/global-state' => - array ( - 'pretty_version' => '8.0.2', - 'version' => '8.0.2.0', - 'reference' => 'ef1377171613d09edd25b7816f05be8313f9115d', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../sebastian/global-state', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/lines-of-code' => - array ( - 'pretty_version' => '4.0.0', - 'version' => '4.0.0.0', - 'reference' => '97ffee3bcfb5805568d6af7f0f893678fc076d2f', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../sebastian/lines-of-code', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/object-enumerator' => - array ( - 'pretty_version' => '7.0.0', - 'version' => '7.0.0.0', - 'reference' => '1effe8e9b8e068e9ae228e542d5d11b5d16db894', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../sebastian/object-enumerator', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/object-reflector' => - array ( - 'pretty_version' => '5.0.0', - 'version' => '5.0.0.0', - 'reference' => '4bfa827c969c98be1e527abd576533293c634f6a', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../sebastian/object-reflector', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/recursion-context' => - array ( - 'pretty_version' => '7.0.1', - 'version' => '7.0.1.0', - 'reference' => '0b01998a7d5b1f122911a66bebcb8d46f0c82d8c', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../sebastian/recursion-context', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/type' => - array ( - 'pretty_version' => '6.0.3', - 'version' => '6.0.3.0', - 'reference' => 'e549163b9760b8f71f191651d22acf32d56d6d4d', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../sebastian/type', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'sebastian/version' => - array ( - 'pretty_version' => '6.0.0', - 'version' => '6.0.0.0', - 'reference' => '3e6ccf7657d4f0a59200564b08cead899313b53c', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../sebastian/version', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'spatie/once' => - array ( - 'dev_requirement' => false, - 'replaced' => - array ( - 0 => '*', - ), - ), - 'staabm/side-effects-detector' => - array ( - 'pretty_version' => '1.0.5', - 'version' => '1.0.5.0', - 'reference' => 'd8334211a140ce329c13726d4a715adbddd0a163', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../staabm/side-effects-detector', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'symfony/clock' => - array ( - 'pretty_version' => 'v8.0.0', - 'version' => '8.0.0.0', - 'reference' => '832119f9b8dbc6c8e6f65f30c5969eca1e88764f', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/clock', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/console' => - array ( - 'pretty_version' => 'v7.4.1', - 'version' => '7.4.1.0', - 'reference' => '6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/console', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/deprecation-contracts' => - array ( - 'pretty_version' => 'v3.6.0', - 'version' => '3.6.0.0', - 'reference' => '63afe740e99a13ba87ec199bb07bbdee937a5b62', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/deprecation-contracts', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/error-handler' => - array ( - 'pretty_version' => 'v7.4.0', - 'version' => '7.4.0.0', - 'reference' => '48be2b0653594eea32dcef130cca1c811dcf25c2', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/error-handler', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/event-dispatcher' => - array ( - 'pretty_version' => 'v7.4.0', - 'version' => '7.4.0.0', - 'reference' => '9dddcddff1ef974ad87b3708e4b442dc38b2261d', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/event-dispatcher', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/event-dispatcher-contracts' => - array ( - 'pretty_version' => 'v3.6.0', - 'version' => '3.6.0.0', - 'reference' => '59eb412e93815df44f05f342958efa9f46b1e586', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/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.4.0', - 'version' => '7.4.0.0', - 'reference' => '340b9ed7320570f319028a2cbec46d40535e94bd', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/finder', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/polyfill-ctype' => - array ( - 'pretty_version' => 'v1.33.0', - 'version' => '1.33.0.0', - 'reference' => 'a3cc8b044a6ea513310cbd48ef7333b384945638', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/polyfill-ctype', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/polyfill-intl-grapheme' => - array ( - 'pretty_version' => 'v1.33.0', - 'version' => '1.33.0.0', - 'reference' => '380872130d3a5dd3ace2f4010d95125fde5d5c70', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/polyfill-intl-grapheme', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/polyfill-intl-normalizer' => - array ( - 'pretty_version' => 'v1.33.0', - 'version' => '1.33.0.0', - 'reference' => '3833d7255cc303546435cb650316bff708a1c75c', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/polyfill-intl-normalizer', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/polyfill-mbstring' => - array ( - 'pretty_version' => 'v1.33.0', - 'version' => '1.33.0.0', - 'reference' => '6d857f4d76bd4b343eac26d6b539585d2bc56493', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/polyfill-mbstring', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/polyfill-php80' => - array ( - 'pretty_version' => 'v1.33.0', - 'version' => '1.33.0.0', - 'reference' => '0cc9dd0f17f61d8131e7df6b84bd344899fe2608', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/polyfill-php80', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/polyfill-php83' => - array ( - 'pretty_version' => 'v1.33.0', - 'version' => '1.33.0.0', - 'reference' => '17f6f9a6b1735c0f163024d959f700cfbc5155e5', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/polyfill-php83', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/polyfill-php84' => - array ( - 'pretty_version' => 'v1.33.0', - 'version' => '1.33.0.0', - 'reference' => 'd8ced4d875142b6a7426000426b8abc631d6b191', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/polyfill-php84', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/polyfill-php85' => - array ( - 'pretty_version' => 'v1.33.0', - 'version' => '1.33.0.0', - 'reference' => 'd4e5fcd4ab3d998ab16c0db48e6cbb9a01993f91', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/polyfill-php85', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/polyfill-uuid' => - array ( - 'pretty_version' => 'v1.33.0', - 'version' => '1.33.0.0', - 'reference' => '21533be36c24be3f4b1669c4725c7d1d2bab4ae2', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/polyfill-uuid', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/process' => - array ( - 'pretty_version' => 'v7.4.0', - 'version' => '7.4.0.0', - 'reference' => '7ca8dc2d0dcf4882658313aba8be5d9fd01026c8', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/process', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/service-contracts' => - array ( - 'pretty_version' => 'v3.6.1', - 'version' => '3.6.1.0', - 'reference' => '45112560a3ba2d715666a509a0bc9521d10b6c43', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/service-contracts', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/string' => - array ( - 'pretty_version' => 'v8.0.1', - 'version' => '8.0.1.0', - 'reference' => 'ba65a969ac918ce0cc3edfac6cdde847eba231dc', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/string', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/translation' => - array ( - 'pretty_version' => 'v8.0.1', - 'version' => '8.0.1.0', - 'reference' => '770e3b8b0ba8360958abedcabacd4203467333ca', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/translation', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/translation-contracts' => - array ( - 'pretty_version' => 'v3.6.1', - 'version' => '3.6.1.0', - 'reference' => '65a8bc82080447fae78373aa10f8d13b38338977', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/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' => 'v8.0.0', - 'version' => '8.0.0.0', - 'reference' => '8395a2cc2ed49aa68f602c5c489f60ab853893df', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/uid', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'symfony/var-dumper' => - array ( - 'pretty_version' => 'v7.4.0', - 'version' => '7.4.0.0', - 'reference' => '41fd6c4ae28c38b294b42af6db61446594a0dece', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../symfony/var-dumper', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'ta-tikoma/phpunit-architecture-test' => - array ( - 'pretty_version' => '0.8.5', - 'version' => '0.8.5.0', - 'reference' => 'cf6fb197b676ba716837c886baca842e4db29005', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../ta-tikoma/phpunit-architecture-test', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'theseer/tokenizer' => - array ( - 'pretty_version' => '2.0.1', - 'version' => '2.0.1.0', - 'reference' => '7989e43bf381af0eac72e4f0ca5bcbfa81658be4', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../theseer/tokenizer', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - 'vlucas/phpdotenv' => - array ( - 'pretty_version' => 'v5.6.2', - 'version' => '5.6.2.0', - 'reference' => '24ac4c74f91ee2c193fa1aaa5c249cb0822809af', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/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' => '/home/jordan/projects/knowledge/vendor/composer/../voku/portable-ascii', - 'aliases' => - array ( - ), - 'dev_requirement' => false, - ), - 'webmozart/assert' => - array ( - 'pretty_version' => '1.12.1', - 'version' => '1.12.1.0', - 'reference' => '9be6926d8b485f55b9229203f962b51ed377ba68', - 'type' => 'library', - 'install_path' => '/home/jordan/projects/knowledge/vendor/composer/../webmozart/assert', - 'aliases' => - array ( - ), - 'dev_requirement' => true, - ), - ), - ), - ), - 'executedFilesHashes' => - array ( - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/Attribute.php' => 'eaf9127f074e9c7ebc65043ec4050f9fed60c2bb', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionAttribute.php' => '0b4b78277eb6545955d2ce5e09bff28f1f8052c8', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionIntersectionType.php' => 'a3e6299b87ee5d407dae7651758edfa11a74cb11', - 'phar:///home/jordan/projects/knowledge/vendor/phpstan/phpstan/phpstan.phar/stubs/runtime/ReflectionUnionType.php' => '1b349aa997a834faeafe05fa21bc31cae22bf2e2', - ), - 'phpExtensions' => - array ( - 0 => 'Core', - 1 => 'FFI', - 2 => 'PDO', - 3 => 'Phar', - 4 => 'Reflection', - 5 => 'SPL', - 6 => 'SimpleXML', - 7 => 'Zend OPcache', - 8 => 'calendar', - 9 => 'ctype', - 10 => 'curl', - 11 => 'date', - 12 => 'dom', - 13 => 'exif', - 14 => 'fileinfo', - 15 => 'filter', - 16 => 'ftp', - 17 => 'gettext', - 18 => 'hash', - 19 => 'iconv', - 20 => 'intl', - 21 => 'json', - 22 => 'libxml', - 23 => 'mbstring', - 24 => 'mysqli', - 25 => 'mysqlnd', - 26 => 'openssl', - 27 => 'pcntl', - 28 => 'pcov', - 29 => 'pcre', - 30 => 'pdo_mysql', - 31 => 'pdo_sqlite', - 32 => 'posix', - 33 => 'random', - 34 => 'readline', - 35 => 'session', - 36 => 'shmop', - 37 => 'sockets', - 38 => 'sodium', - 39 => 'sqlite3', - 40 => 'standard', - 41 => 'sysvmsg', - 42 => 'sysvsem', - 43 => 'sysvshm', - 44 => 'tokenizer', - 45 => 'xml', - 46 => 'xmlreader', - 47 => 'xmlwriter', - 48 => 'xsl', - 49 => 'zip', - 50 => 'zlib', - ), - 'stubFiles' => - array ( - ), - 'level' => '8', -), - 'projectExtensionFiles' => array ( -), - 'errorsCallback' => static function (): array { return array ( - '/home/jordan/projects/knowledge/app/Commands/InsightsCommand.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Construct empty() is not allowed. Use more strict comparison.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/InsightsCommand.php', - 'line' => 185, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/InsightsCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 185, - 'nodeType' => 'PhpParser\\Node\\Expr\\Empty_', - 'identifier' => 'empty.notAllowed', - 'metadata' => - array ( - ), - )), - 1 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Construct empty() is not allowed. Use more strict comparison.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/InsightsCommand.php', - 'line' => 197, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/InsightsCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 197, - 'nodeType' => 'PhpParser\\Node\\Expr\\Empty_', - 'identifier' => 'empty.notAllowed', - 'metadata' => - array ( - ), - )), - 2 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Construct empty() is not allowed. Use more strict comparison.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/InsightsCommand.php', - 'line' => 208, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/InsightsCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 208, - 'nodeType' => 'PhpParser\\Node\\Expr\\Empty_', - 'identifier' => 'empty.notAllowed', - 'metadata' => - array ( - ), - )), - 3 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Variable $cat on left side of ?? always exists and is not nullable.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/InsightsCommand.php', - 'line' => 224, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/InsightsCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 224, - 'nodeType' => 'PhpParser\\Node\\Expr\\BinaryOp\\Coalesce', - 'identifier' => 'nullCoalesce.variable', - 'metadata' => - array ( - ), - )), - 4 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Construct empty() is not allowed. Use more strict comparison.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/InsightsCommand.php', - 'line' => 230, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/InsightsCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 230, - 'nodeType' => 'PhpParser\\Node\\Expr\\Empty_', - 'identifier' => 'empty.notAllowed', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/InstallCommand.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Part $project (array|bool|string|null) of encapsed string cannot be cast to string.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/InstallCommand.php', - 'line' => 25, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/InstallCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 25, - 'nodeType' => 'PhpParser\\Node\\Scalar\\Encapsed', - 'identifier' => 'encapsedStringPart.nonString', - 'metadata' => - array ( - ), - )), - 1 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Parameter #1 $project of method App\\Services\\QdrantService::ensureCollection() expects string, array|bool|string|null given.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/InstallCommand.php', - 'line' => 29, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/InstallCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 29, - 'nodeType' => 'PhpParser\\Node\\Expr\\MethodCall', - 'identifier' => 'argument.type', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeAddCommand.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Cannot cast array|bool|string|null to string.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeAddCommand.php', - 'line' => 50, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeAddCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 50, - 'nodeType' => 'PhpParser\\Node\\Expr\\Cast\\String_', - 'identifier' => 'cast.string', - 'metadata' => - array ( - ), - )), - 1 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Parameter #1 $entry of method App\\Services\\QdrantService::upsert() expects array{id: int|string, title: string, content: string, tags?: array, category?: string, module?: string, priority?: string, status?: string, ...}, array{title: string, content: non-empty-string, category: \'architecture\'|\'debugging\'|\'deployment\'|\'security\'|\'testing\'|null, module: string|null, priority: \'critical\'|\'high\'|\'low\'|\'medium\', confidence: int, source: string|null, ticket: string|null, ...} given.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeAddCommand.php', - 'line' => 155, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeAddCommand.php', - 'traitFilePath' => NULL, - 'tip' => '• Offset \'category\' (string) does not accept type string|null. -• Offset \'module\' (string) does not accept type string|null.', - 'nodeLine' => 155, - 'nodeType' => 'PhpParser\\Node\\Expr\\MethodCall', - 'identifier' => 'argument.type', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeListCommand.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Offset \'tags\' on array{id: int|string, title: string, content: string, tags: array, category: string|null, module: string|null, priority: string|null, status: string|null, ...} in isset() always exists and is not nullable.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeListCommand.php', - 'line' => 68, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeListCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 68, - 'nodeType' => 'PhpParser\\Node\\Expr\\Isset_', - 'identifier' => 'isset.offset', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchCommand.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Variable $tags in isset() always exists and is not nullable.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchCommand.php', - 'line' => 88, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 88, - 'nodeType' => 'PhpParser\\Node\\Expr\\Isset_', - 'identifier' => 'isset.variable', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchStatusCommand.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Short ternary operator is not allowed. Use null coalesce operator if applicable or consider using long ternary.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchStatusCommand.php', - 'line' => 32, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchStatusCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 32, - 'nodeType' => 'PhpParser\\Node\\Expr\\Ternary', - 'identifier' => 'ternary.shortNotAllowed', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Parameter #1 $id of method App\\Services\\QdrantService::getById() expects int|string, array|bool|int|string|null given.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - 'line' => 29, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 29, - 'nodeType' => 'PhpParser\\Node\\Expr\\MethodCall', - 'identifier' => 'argument.type', - 'metadata' => - array ( - ), - )), - 1 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Only booleans are allowed in a negated boolean, array|int|string|null>|null given.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - 'line' => 33, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 33, - 'nodeType' => 'PhpParser\\Node\\Expr\\BooleanNot', - 'identifier' => 'booleanNot.exprNotBoolean', - 'metadata' => - array ( - ), - )), - 2 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Parameter #1 $id of method App\\Services\\QdrantService::incrementUsage() expects int|string, array|bool|int|string|null given.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - 'line' => 39, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 39, - 'nodeType' => 'PhpParser\\Node\\Expr\\MethodCall', - 'identifier' => 'argument.type', - 'metadata' => - array ( - ), - )), - 3 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Method App\\Commands\\KnowledgeShowCommand::renderEntry() has parameter $entry with no value type specified in iterable type array.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - 'line' => 46, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - 'traitFilePath' => NULL, - 'tip' => 'See: https://phpstan.org/blog/solving-phpstan-no-value-type-specified-in-iterable-type', - 'nodeLine' => 46, - 'nodeType' => 'PHPStan\\Node\\InClassMethodNode', - 'identifier' => 'missingType.iterableValue', - 'metadata' => - array ( - ), - )), - 4 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Construct empty() is not allowed. Use more strict comparison.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - 'line' => 69, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 69, - 'nodeType' => 'PhpParser\\Node\\Expr\\Empty_', - 'identifier' => 'empty.notAllowed', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeStatsCommand.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Method App\\Commands\\KnowledgeStatsCommand::renderDashboard() has parameter $entries with generic class Illuminate\\Support\\Collection but does not specify its types: TKey, TValue', - 'file' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeStatsCommand.php', - 'line' => 36, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeStatsCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 36, - 'nodeType' => 'PHPStan\\Node\\InClassMethodNode', - 'identifier' => 'missingType.generics', - 'metadata' => - array ( - ), - )), - 1 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Only booleans are allowed in &&, mixed given on the left side.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeStatsCommand.php', - 'line' => 92, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeStatsCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 92, - 'nodeType' => 'PHPStan\\Node\\BooleanAndNode', - 'identifier' => 'booleanAnd.leftNotBoolean', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Parameter #1 $id of method App\\Services\\QdrantService::getById() expects int|string, array|bool|string|null given.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php', - 'line' => 26, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 26, - 'nodeType' => 'PhpParser\\Node\\Expr\\MethodCall', - 'identifier' => 'argument.type', - 'metadata' => - array ( - ), - )), - 1 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Part $id (array|bool|string|null) of encapsed string cannot be cast to string.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php', - 'line' => 29, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 29, - 'nodeType' => 'PhpParser\\Node\\Scalar\\Encapsed', - 'identifier' => 'encapsedStringPart.nonString', - 'metadata' => - array ( - ), - )), - 2 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Parameter #1 $id of method App\\Services\\QdrantService::updateFields() expects int|string, array|bool|string|null given.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php', - 'line' => 41, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 41, - 'nodeType' => 'PhpParser\\Node\\Expr\\MethodCall', - 'identifier' => 'argument.type', - 'metadata' => - array ( - ), - )), - 3 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Part $id (array|bool|string|null) of encapsed string cannot be cast to string.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php', - 'line' => 46, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 46, - 'nodeType' => 'PhpParser\\Node\\Scalar\\Encapsed', - 'identifier' => 'encapsedStringPart.nonString', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Only booleans are allowed in a negated boolean, array|bool|string|null given.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - 'line' => 57, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 57, - 'nodeType' => 'PhpParser\\Node\\Expr\\BooleanNot', - 'identifier' => 'booleanNot.exprNotBoolean', - 'metadata' => - array ( - ), - )), - 1 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Only booleans are allowed in a negated boolean, array|bool|string|null given.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - 'line' => 57, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 57, - 'nodeType' => 'PhpParser\\Node\\Expr\\BooleanNot', - 'identifier' => 'booleanNot.exprNotBoolean', - 'metadata' => - array ( - ), - )), - 2 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Only booleans are allowed in an if condition, array|bool|string|null given.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - 'line' => 68, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 68, - 'nodeType' => 'PhpParser\\Node\\Stmt\\If_', - 'identifier' => 'if.condNotBoolean', - 'metadata' => - array ( - ), - )), - 3 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Only booleans are allowed in an if condition, array|string|true given.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - 'line' => 77, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 77, - 'nodeType' => 'PhpParser\\Node\\Stmt\\If_', - 'identifier' => 'if.condNotBoolean', - 'metadata' => - array ( - ), - )), - 4 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Only booleans are allowed in an if condition, array|float|int|string|null>|null given.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - 'line' => 194, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 194, - 'nodeType' => 'PhpParser\\Node\\Stmt\\If_', - 'identifier' => 'if.condNotBoolean', - 'metadata' => - array ( - ), - )), - 5 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Variable $allPayload on left side of ?? always exists and is not nullable.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - 'line' => 305, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 305, - 'nodeType' => 'PhpParser\\Node\\Expr\\BinaryOp\\Coalesce', - 'identifier' => 'nullCoalesce.variable', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/SynthesizeCommand.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Offset \'updated_at\' on array{id: int|string, title: string, content: string, tags: array, category: string|null, module: string|null, priority: string|null, status: string|null, ...} in isset() always exists and is not nullable.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/SynthesizeCommand.php', - 'line' => 249, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/SynthesizeCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 249, - 'nodeType' => 'PhpParser\\Node\\Expr\\Isset_', - 'identifier' => 'isset.offset', - 'metadata' => - array ( - ), - )), - 1 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Offset \'confidence\' on array{id: int|string, title: string, content: string, tags: array, category: string|null, module: string|null, priority: string|null, status: string|null, ...} on left side of ?? always exists and is not nullable.', - 'file' => '/home/jordan/projects/knowledge/app/Commands/SynthesizeCommand.php', - 'line' => 250, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/SynthesizeCommand.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 250, - 'nodeType' => 'PhpParser\\Node\\Expr\\BinaryOp\\Coalesce', - 'identifier' => 'nullCoalesce.offset', - 'metadata' => - array ( - ), - )), - 2 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Unable to resolve the template type TGroupKey in call to method Illuminate\\Support\\Collection>::groupBy()', - 'file' => '/home/jordan/projects/knowledge/app/Commands/SynthesizeCommand.php', - 'line' => 266, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Commands/SynthesizeCommand.php', - 'traitFilePath' => NULL, - 'tip' => 'See: https://phpstan.org/blog/solving-phpstan-error-unable-to-resolve-template-type', - 'nodeLine' => 266, - 'nodeType' => 'PhpParser\\Node\\Expr\\MethodCall', - 'identifier' => 'argument.templateType', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/QdrantConnector.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Only booleans are allowed in an if condition, string|null given.', - 'file' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/QdrantConnector.php', - 'line' => 34, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/QdrantConnector.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 34, - 'nodeType' => 'PhpParser\\Node\\Stmt\\If_', - 'identifier' => 'if.condNotBoolean', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/CreateCollection.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Method App\\Integrations\\Qdrant\\Requests\\CreateCollection::defaultBody() return type has no value type specified in iterable type array.', - 'file' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/CreateCollection.php', - 'line' => 30, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/CreateCollection.php', - 'traitFilePath' => NULL, - 'tip' => 'See: https://phpstan.org/blog/solving-phpstan-no-value-type-specified-in-iterable-type', - 'nodeLine' => 30, - 'nodeType' => 'PHPStan\\Node\\InClassMethodNode', - 'identifier' => 'missingType.iterableValue', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/DeletePoints.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Method App\\Integrations\\Qdrant\\Requests\\DeletePoints::defaultBody() return type has no value type specified in iterable type array.', - 'file' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/DeletePoints.php', - 'line' => 31, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/DeletePoints.php', - 'traitFilePath' => NULL, - 'tip' => 'See: https://phpstan.org/blog/solving-phpstan-no-value-type-specified-in-iterable-type', - 'nodeLine' => 31, - 'nodeType' => 'PHPStan\\Node\\InClassMethodNode', - 'identifier' => 'missingType.iterableValue', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/GetPoints.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Method App\\Integrations\\Qdrant\\Requests\\GetPoints::defaultBody() return type has no value type specified in iterable type array.', - 'file' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/GetPoints.php', - 'line' => 31, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/GetPoints.php', - 'traitFilePath' => NULL, - 'tip' => 'See: https://phpstan.org/blog/solving-phpstan-no-value-type-specified-in-iterable-type', - 'nodeLine' => 31, - 'nodeType' => 'PHPStan\\Node\\InClassMethodNode', - 'identifier' => 'missingType.iterableValue', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/HybridSearchPoints.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Method App\\Integrations\\Qdrant\\Requests\\HybridSearchPoints::defaultBody() return type has no value type specified in iterable type array.', - 'file' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/HybridSearchPoints.php', - 'line' => 43, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/HybridSearchPoints.php', - 'traitFilePath' => NULL, - 'tip' => 'See: https://phpstan.org/blog/solving-phpstan-no-value-type-specified-in-iterable-type', - 'nodeLine' => 43, - 'nodeType' => 'PHPStan\\Node\\InClassMethodNode', - 'identifier' => 'missingType.iterableValue', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/SearchPoints.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Method App\\Integrations\\Qdrant\\Requests\\SearchPoints::defaultBody() return type has no value type specified in iterable type array.', - 'file' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/SearchPoints.php', - 'line' => 35, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/SearchPoints.php', - 'traitFilePath' => NULL, - 'tip' => 'See: https://phpstan.org/blog/solving-phpstan-no-value-type-specified-in-iterable-type', - 'nodeLine' => 35, - 'nodeType' => 'PHPStan\\Node\\InClassMethodNode', - 'identifier' => 'missingType.iterableValue', - 'metadata' => - array ( - ), - )), - 1 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Only booleans are allowed in an if condition, array|null given.', - 'file' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/SearchPoints.php', - 'line' => 45, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/SearchPoints.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 45, - 'nodeType' => 'PhpParser\\Node\\Stmt\\If_', - 'identifier' => 'if.condNotBoolean', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/UpsertPoints.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Method App\\Integrations\\Qdrant\\Requests\\UpsertPoints::defaultBody() return type has no value type specified in iterable type array.', - 'file' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/UpsertPoints.php', - 'line' => 31, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/UpsertPoints.php', - 'traitFilePath' => NULL, - 'tip' => 'See: https://phpstan.org/blog/solving-phpstan-no-value-type-specified-in-iterable-type', - 'nodeLine' => 31, - 'nodeType' => 'PHPStan\\Node\\InClassMethodNode', - 'identifier' => 'missingType.iterableValue', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Services/MarkdownExporter.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Construct empty() is not allowed. Use more strict comparison.', - 'file' => '/home/jordan/projects/knowledge/app/Services/MarkdownExporter.php', - 'line' => 33, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/MarkdownExporter.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 33, - 'nodeType' => 'PhpParser\\Node\\Expr\\Empty_', - 'identifier' => 'empty.notAllowed', - 'metadata' => - array ( - ), - )), - 1 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Construct empty() is not allowed. Use more strict comparison.', - 'file' => '/home/jordan/projects/knowledge/app/Services/MarkdownExporter.php', - 'line' => 37, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/MarkdownExporter.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 37, - 'nodeType' => 'PhpParser\\Node\\Expr\\Empty_', - 'identifier' => 'empty.notAllowed', - 'metadata' => - array ( - ), - )), - 2 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Construct empty() is not allowed. Use more strict comparison.', - 'file' => '/home/jordan/projects/knowledge/app/Services/MarkdownExporter.php', - 'line' => 45, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/MarkdownExporter.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 45, - 'nodeType' => 'PhpParser\\Node\\Expr\\Empty_', - 'identifier' => 'empty.notAllowed', - 'metadata' => - array ( - ), - )), - 3 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Strict comparison using !== between non-empty-array and array{} will always evaluate to true.', - 'file' => '/home/jordan/projects/knowledge/app/Services/MarkdownExporter.php', - 'line' => 45, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/MarkdownExporter.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 45, - 'nodeType' => 'PhpParser\\Node\\Expr\\BinaryOp\\NotIdentical', - 'identifier' => 'notIdentical.alwaysTrue', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Services/PatternDetectorService.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Offset \'content\' on array{id: int|string, title: string, content: string} on left side of ?? always exists and is not nullable.', - 'file' => '/home/jordan/projects/knowledge/app/Services/PatternDetectorService.php', - 'line' => 123, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/PatternDetectorService.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 123, - 'nodeType' => 'PhpParser\\Node\\Expr\\BinaryOp\\Coalesce', - 'identifier' => 'nullCoalesce.offset', - 'metadata' => - array ( - ), - )), - 1 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Offset \'title\' on array{id: int|string, title: string, content: string} on left side of ?? always exists and is not nullable.', - 'file' => '/home/jordan/projects/knowledge/app/Services/PatternDetectorService.php', - 'line' => 123, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/PatternDetectorService.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 123, - 'nodeType' => 'PhpParser\\Node\\Expr\\BinaryOp\\Coalesce', - 'identifier' => 'nullCoalesce.offset', - 'metadata' => - array ( - ), - )), - 2 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Short ternary operator is not allowed. Use null coalesce operator if applicable or consider using long ternary.', - 'file' => '/home/jordan/projects/knowledge/app/Services/PatternDetectorService.php', - 'line' => 141, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/PatternDetectorService.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 141, - 'nodeType' => 'PhpParser\\Node\\Expr\\Ternary', - 'identifier' => 'ternary.shortNotAllowed', - 'metadata' => - array ( - ), - )), - 3 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Only booleans are allowed in an if condition, int<0, max>|false given.', - 'file' => '/home/jordan/projects/knowledge/app/Services/PatternDetectorService.php', - 'line' => 172, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/PatternDetectorService.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 172, - 'nodeType' => 'PhpParser\\Node\\Stmt\\If_', - 'identifier' => 'if.condNotBoolean', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Services/QdrantService.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Parameter #2 $points of class App\\Integrations\\Qdrant\\Requests\\UpsertPoints constructor expects array, payload: array}>, array{array{id: int|string, payload: array{title: string, content: string, tags: array, category: string|null, module: string|null, priority: string|null, status: string|null, confidence: int, ...}, vector: non-empty-array|float>|float>}} given.', - 'file' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'line' => 158, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'traitFilePath' => NULL, - 'tip' => 'Offset \'vector\' (array) does not accept type array|float>|float>.', - 'nodeLine' => 156, - 'nodeType' => 'PhpParser\\Node\\Expr\\New_', - 'identifier' => 'argument.type', - 'metadata' => - array ( - ), - )), - 1 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Method App\\Services\\QdrantService::search() should return Illuminate\\Support\\Collection, category: string|null, module: string|null, priority: string|null, ...}> but returns Illuminate\\Support\\Collection<(int|string), array{id: mixed, score: mixed, title: mixed, content: mixed, tags: mixed, category: mixed, module: mixed, priority: mixed, ...}>.', - 'file' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'line' => 231, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 231, - 'nodeType' => 'PhpParser\\Node\\Stmt\\Return_', - 'identifier' => 'return.type', - 'metadata' => - array ( - ), - )), - 2 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Unable to resolve the template type TKey in call to function collect', - 'file' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'line' => 231, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'traitFilePath' => NULL, - 'tip' => 'See: https://phpstan.org/blog/solving-phpstan-error-unable-to-resolve-template-type', - 'nodeLine' => 231, - 'nodeType' => 'PhpParser\\Node\\Expr\\FuncCall', - 'identifier' => 'argument.templateType', - 'metadata' => - array ( - ), - )), - 3 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Unable to resolve the template type TValue in call to function collect', - 'file' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'line' => 231, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'traitFilePath' => NULL, - 'tip' => 'See: https://phpstan.org/blog/solving-phpstan-error-unable-to-resolve-template-type', - 'nodeLine' => 231, - 'nodeType' => 'PhpParser\\Node\\Expr\\FuncCall', - 'identifier' => 'argument.templateType', - 'metadata' => - array ( - ), - )), - 4 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Method App\\Services\\QdrantService::hybridSearch() should return Illuminate\\Support\\Collection, category: string|null, module: string|null, priority: string|null, ...}> but returns Illuminate\\Support\\Collection<(int|string), array{id: mixed, score: mixed, title: mixed, content: mixed, tags: mixed, category: mixed, module: mixed, priority: mixed, ...}>.', - 'file' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'line' => 330, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 330, - 'nodeType' => 'PhpParser\\Node\\Stmt\\Return_', - 'identifier' => 'return.type', - 'metadata' => - array ( - ), - )), - 5 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Unable to resolve the template type TKey in call to function collect', - 'file' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'line' => 330, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'traitFilePath' => NULL, - 'tip' => 'See: https://phpstan.org/blog/solving-phpstan-error-unable-to-resolve-template-type', - 'nodeLine' => 330, - 'nodeType' => 'PhpParser\\Node\\Expr\\FuncCall', - 'identifier' => 'argument.templateType', - 'metadata' => - array ( - ), - )), - 6 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Unable to resolve the template type TValue in call to function collect', - 'file' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'line' => 330, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'traitFilePath' => NULL, - 'tip' => 'See: https://phpstan.org/blog/solving-phpstan-error-unable-to-resolve-template-type', - 'nodeLine' => 330, - 'nodeType' => 'PhpParser\\Node\\Expr\\FuncCall', - 'identifier' => 'argument.templateType', - 'metadata' => - array ( - ), - )), - 7 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Method App\\Services\\QdrantService::scroll() should return Illuminate\\Support\\Collection, category: string|null, module: string|null, priority: string|null, status: string|null, ...}> but returns Illuminate\\Support\\Collection<(int|string), array{id: mixed, title: mixed, content: mixed, tags: mixed, category: mixed, module: mixed, priority: mixed, status: mixed, ...}>.', - 'file' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'line' => 398, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 398, - 'nodeType' => 'PhpParser\\Node\\Stmt\\Return_', - 'identifier' => 'return.type', - 'metadata' => - array ( - ), - )), - 8 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Unable to resolve the template type TKey in call to function collect', - 'file' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'line' => 398, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'traitFilePath' => NULL, - 'tip' => 'See: https://phpstan.org/blog/solving-phpstan-error-unable-to-resolve-template-type', - 'nodeLine' => 398, - 'nodeType' => 'PhpParser\\Node\\Expr\\FuncCall', - 'identifier' => 'argument.templateType', - 'metadata' => - array ( - ), - )), - 9 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Unable to resolve the template type TValue in call to function collect', - 'file' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'line' => 398, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'traitFilePath' => NULL, - 'tip' => 'See: https://phpstan.org/blog/solving-phpstan-error-unable-to-resolve-template-type', - 'nodeLine' => 398, - 'nodeType' => 'PhpParser\\Node\\Expr\\FuncCall', - 'identifier' => 'argument.templateType', - 'metadata' => - array ( - ), - )), - 10 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Construct empty() is not allowed. Use more strict comparison.', - 'file' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'line' => 467, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 467, - 'nodeType' => 'PhpParser\\Node\\Expr\\Empty_', - 'identifier' => 'empty.notAllowed', - 'metadata' => - array ( - ), - )), - 11 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Parameter #1 $entry of method App\\Services\\QdrantService::upsert() expects array{id: int|string, title: string, content: string, tags?: array, category?: string, module?: string, priority?: string, status?: string, ...}, array{id: int|string, title: string, content: string, tags: array, category: string|null, module: string|null, priority: string|null, status: string|null, ...} given.', - 'file' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'line' => 504, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'traitFilePath' => NULL, - 'tip' => '• Offset \'category\' (string) does not accept type string|null. -• Offset \'module\' (string) does not accept type string|null. -• Offset \'priority\' (string) does not accept type string|null. -• Offset \'status\' (string) does not accept type string|null.', - 'nodeLine' => 504, - 'nodeType' => 'PhpParser\\Node\\Expr\\MethodCall', - 'identifier' => 'argument.type', - 'metadata' => - array ( - ), - )), - 12 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Parameter #1 $entry of method App\\Services\\QdrantService::upsert() expects array{id: int|string, title: string, content: string, tags?: array, category?: string, module?: string, priority?: string, status?: string, ...}, non-empty-array given.', - 'file' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'line' => 524, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 524, - 'nodeType' => 'PhpParser\\Node\\Expr\\MethodCall', - 'identifier' => 'argument.type', - 'metadata' => - array ( - ), - )), - 13 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Only booleans are allowed in a negated boolean, mixed given.', - 'file' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'line' => 534, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 534, - 'nodeType' => 'PhpParser\\Node\\Expr\\BooleanNot', - 'identifier' => 'booleanNot.exprNotBoolean', - 'metadata' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Services/ThemeClassifierService.php' => - array ( - 0 => - \PHPStan\Analyser\Error::__set_state(array( - 'message' => 'Only booleans are allowed in an if condition, int|false given.', - 'file' => '/home/jordan/projects/knowledge/app/Services/ThemeClassifierService.php', - 'line' => 180, - 'canBeIgnored' => true, - 'filePath' => '/home/jordan/projects/knowledge/app/Services/ThemeClassifierService.php', - 'traitFilePath' => NULL, - 'tip' => NULL, - 'nodeLine' => 180, - 'nodeType' => 'PhpParser\\Node\\Stmt\\If_', - 'identifier' => 'if.condNotBoolean', - 'metadata' => - array ( - ), - )), - ), -); }, - 'locallyIgnoredErrorsCallback' => static function (): array { return array ( -); }, - 'linesToIgnore' => array ( -), - 'unmatchedLineIgnores' => array ( -), - 'collectedDataCallback' => static function (): array { return array ( -); }, - 'dependencies' => array ( - '/home/jordan/projects/knowledge/app/Commands/IndexCodeCommand.php' => - array ( - 'fileHash' => '05bcc48ab16be0cf75dec1d3ef95c25aa3115793', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/InsightsCommand.php' => - array ( - 'fileHash' => '49d778791dee2097ae15edec02295d948db237df', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/InstallCommand.php' => - array ( - 'fileHash' => '2604403d3c79fc0d6e06bdd8cfea63b6b1e32904', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeAddCommand.php' => - array ( - 'fileHash' => 'bba911c4e0a1739b0ef5b1c62e30e1258a20143b', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeArchiveCommand.php' => - array ( - 'fileHash' => '31219e1f83ee36e3d86fe6896f743f081d90e2ef', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeConfigCommand.php' => - array ( - 'fileHash' => 'd700cbf2101f871f31763385ec223127aa3a4e98', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeExportAllCommand.php' => - array ( - 'fileHash' => 'd3e6830cbe8162134f3044b334dc3ca32332b3b8', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeExportCommand.php' => - array ( - 'fileHash' => '0fbdda18a91aa29a141eb772452740db9725bbc9', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeGitContextCommand.php' => - array ( - 'fileHash' => '2a353e88ed6db1f01a6b7f43a0032c5a33baddc2', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeListCommand.php' => - array ( - 'fileHash' => '23c9268cf16b725228b56c9ece8ea7766a15c3f5', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchCommand.php' => - array ( - 'fileHash' => '507b4855effed70e32f7a89fb560a713c27537f6', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchStatusCommand.php' => - array ( - 'fileHash' => '4582141ded7873fb2943b619cc2307cb3a773868', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php' => - array ( - 'fileHash' => '5aa95fa7ab05ac7ea7a258abbf61f59ce84adc7d', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeStatsCommand.php' => - array ( - 'fileHash' => '04cef12ab315e21c26dd73351a38c65cebd40cf2', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeUpdateCommand.php' => - array ( - 'fileHash' => '2d58683c969fc1377a9f99cdd6d72129836f97f6', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php' => - array ( - 'fileHash' => '88ac1f8fc1d72e938068cfd3ee653a55166a9963', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/SearchCodeCommand.php' => - array ( - 'fileHash' => '98b86703065e9b236c49e984cd116580661add84', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php' => - array ( - 'fileHash' => '966b9fe507105331b170a0e0cf5664abb33a0d97', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Commands/SynthesizeCommand.php' => - array ( - 'fileHash' => 'f0f2804265d41ef8f4229f26f0cfdc5fef65698f', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Contracts/EmbeddingServiceInterface.php' => - array ( - 'fileHash' => 'efadd45bd5bf983af57087ae0a15d9bd669747a0', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchStatusCommand.php', - 1 => '/home/jordan/projects/knowledge/app/Providers/AppServiceProvider.php', - 2 => '/home/jordan/projects/knowledge/app/Services/CodeIndexerService.php', - 3 => '/home/jordan/projects/knowledge/app/Services/EmbeddingService.php', - 4 => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - 5 => '/home/jordan/projects/knowledge/app/Services/StubEmbeddingService.php', - ), - ), - '/home/jordan/projects/knowledge/app/Contracts/SparseEmbeddingServiceInterface.php' => - array ( - 'fileHash' => 'df0fcee7a3c7f85a73d650d071fc04ed7b014b35', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Services/Bm25SparseEmbeddingService.php', - 1 => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ), - ), - '/home/jordan/projects/knowledge/app/Enums/ObservationType.php' => - array ( - 'fileHash' => 'fdfa7e572143460674cbf08ba5d4fa8f11a9b652', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/CollectionCreationException.php' => - array ( - 'fileHash' => '3dcbd626d4299eb576afa23b6e81adcc0af3f41c', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/CollectionNotFoundException.php' => - array ( - 'fileHash' => '83e24d9f2bbc12080a2e202354df6e13056c462d', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/ConnectionException.php' => - array ( - 'fileHash' => 'e9f64cace7e53ea9c046ad2bbfbbcd5e9c2ad7bf', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/DuplicateEntryException.php' => - array ( - 'fileHash' => '71869d3446f4d9e8be7c5d2d9be3b41112783037', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeAddCommand.php', - ), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/EmbeddingException.php' => - array ( - 'fileHash' => 'bd7ada14342c3dfb058817947adb20bddc06f800', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/QdrantException.php' => - array ( - 'fileHash' => '06e6ae7407d18426f6e9a964a5836835af76209f', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeAddCommand.php', - 1 => '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/CollectionCreationException.php', - 2 => '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/CollectionNotFoundException.php', - 3 => '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/ConnectionException.php', - 4 => '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/DuplicateEntryException.php', - 5 => '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/EmbeddingException.php', - 6 => '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/UpsertException.php', - 7 => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/UpsertException.php' => - array ( - 'fileHash' => '396618aeda3046d09774d251392d591f1137e89d', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/QdrantConnector.php' => - array ( - 'fileHash' => '7f97e900ca6566edf377d16698fbc212a9ffc118', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Services/CodeIndexerService.php', - 1 => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/CreateCollection.php' => - array ( - 'fileHash' => '4c4669b1c0fc94471cb8fd4afb6769e08d8a26c3', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Services/CodeIndexerService.php', - 1 => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/DeletePoints.php' => - array ( - 'fileHash' => '6585fb0f0d5370ff300a8b81e5890d13cdb062e3', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/GetCollectionInfo.php' => - array ( - 'fileHash' => '848731660bb899fa01b953774bc2796186efc81d', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Services/CodeIndexerService.php', - 1 => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/GetPoints.php' => - array ( - 'fileHash' => 'e2248747a52a53f1b32eb45227385015da8b0157', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/HybridSearchPoints.php' => - array ( - 'fileHash' => 'ef69730d2a598260cd8f6ea0b010cf574b3a9b06', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/ScrollPoints.php' => - array ( - 'fileHash' => '606b49127bc2d999bd6f580a4ac109409af34799', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/SearchPoints.php' => - array ( - 'fileHash' => '5784ff9984afdfb66df5ccd896779be683d8f50b', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Services/CodeIndexerService.php', - 1 => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/UpsertPoints.php' => - array ( - 'fileHash' => 'cebb42bba4726cd2e866c32960d104a5ab5da66d', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Services/CodeIndexerService.php', - 1 => '/home/jordan/projects/knowledge/app/Services/QdrantService.php', - ), - ), - '/home/jordan/projects/knowledge/app/Providers/AppServiceProvider.php' => - array ( - 'fileHash' => 'd28bad87d9ead4c3484c081f1829f5a181da5457', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/config/app.php', - ), - ), - '/home/jordan/projects/knowledge/app/Services/Bm25SparseEmbeddingService.php' => - array ( - 'fileHash' => 'f115e2154b5f27ba34581cfd6e3792dff0ec7415', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/app/Services/CodeIndexerService.php' => - array ( - 'fileHash' => '24926bd92f7599a1df32aba9714cf19f974bc9fb', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Commands/IndexCodeCommand.php', - 1 => '/home/jordan/projects/knowledge/app/Commands/SearchCodeCommand.php', - ), - ), - '/home/jordan/projects/knowledge/app/Services/EmbeddingService.php' => - array ( - 'fileHash' => '771f2cbcedb07af94feb9f1dc22738f271eb2ed1', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Providers/AppServiceProvider.php', - ), - ), - '/home/jordan/projects/knowledge/app/Services/GitContextService.php' => - array ( - 'fileHash' => '824c08a27c774d93409c7468d0c786f1629d504e', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeAddCommand.php', - 1 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeGitContextCommand.php', - ), - ), - '/home/jordan/projects/knowledge/app/Services/KnowledgePathService.php' => - array ( - 'fileHash' => 'c18555771386565470630c2bce6c2c47434e2db1', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeConfigCommand.php', - 1 => '/home/jordan/projects/knowledge/app/Providers/AppServiceProvider.php', - ), - ), - '/home/jordan/projects/knowledge/app/Services/MarkdownExporter.php' => - array ( - 'fileHash' => 'ff366f4d2e3f14aee8298366f8a04fdb2d8ba4b4', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeExportAllCommand.php', - 1 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeExportCommand.php', - ), - ), - '/home/jordan/projects/knowledge/app/Services/PatternDetectorService.php' => - array ( - 'fileHash' => '6d90fdd399160de677eec19d741a8977edd06190', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Commands/InsightsCommand.php', - ), - ), - '/home/jordan/projects/knowledge/app/Services/QdrantService.php' => - array ( - 'fileHash' => 'd50fa85c93149b849becad9f49065a0da3112e0a', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Commands/InsightsCommand.php', - 1 => '/home/jordan/projects/knowledge/app/Commands/InstallCommand.php', - 2 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeAddCommand.php', - 3 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeArchiveCommand.php', - 4 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeExportAllCommand.php', - 5 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeExportCommand.php', - 6 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeListCommand.php', - 7 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchCommand.php', - 8 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchStatusCommand.php', - 9 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php', - 10 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeStatsCommand.php', - 11 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeUpdateCommand.php', - 12 => '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php', - 13 => '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php', - 14 => '/home/jordan/projects/knowledge/app/Commands/SynthesizeCommand.php', - 15 => '/home/jordan/projects/knowledge/app/Providers/AppServiceProvider.php', - ), - ), - '/home/jordan/projects/knowledge/app/Services/RuntimeEnvironment.php' => - array ( - 'fileHash' => '3ae17cfcc00e08ca6a67d14a322983fe399a8e7b', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Providers/AppServiceProvider.php', - 1 => '/home/jordan/projects/knowledge/app/Services/KnowledgePathService.php', - ), - ), - '/home/jordan/projects/knowledge/app/Services/StubEmbeddingService.php' => - array ( - 'fileHash' => '4396ca033150412a588b1029752897c92ae8d0e6', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Providers/AppServiceProvider.php', - ), - ), - '/home/jordan/projects/knowledge/app/Services/ThemeClassifierService.php' => - array ( - 'fileHash' => 'fbd80933c787ec0db201981109b883edd376ecd0', - 'dependentFiles' => - array ( - 0 => '/home/jordan/projects/knowledge/app/Commands/InsightsCommand.php', - ), - ), - '/home/jordan/projects/knowledge/config/app.php' => - array ( - 'fileHash' => '0920aef3ae5b972133d7cf034724c3f79eb22891', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/config/commands.php' => - array ( - 'fileHash' => '644adb0b50cc6e6eb6a66134703c71495b17dafa', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/config/search.php' => - array ( - 'fileHash' => 'ffe8363092e6f2672a7e4d6d73de25e8d2b4560d', - 'dependentFiles' => - array ( - ), - ), - '/home/jordan/projects/knowledge/config/services.php' => - array ( - 'fileHash' => '5bac4fb4d0c8709298006e2f49b69328aa3311c3', - 'dependentFiles' => - array ( - ), - ), -), - 'exportedNodesCallback' => static function (): array { return array ( - '/home/jordan/projects/knowledge/app/Commands/IndexCodeCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\IndexCodeCommand', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'indexer', - 'type' => 'App\\Services\\CodeIndexerService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/InsightsCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\InsightsCommand', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'qdrant', - 'type' => 'App\\Services\\QdrantService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'themeClassifier', - 'type' => 'App\\Services\\ThemeClassifierService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'patternDetector', - 'type' => 'App\\Services\\PatternDetectorService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/InstallCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\InstallCommand', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'qdrant', - 'type' => 'App\\Services\\QdrantService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeAddCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\KnowledgeAddCommand', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'gitService', - 'type' => 'App\\Services\\GitContextService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'qdrant', - 'type' => 'App\\Services\\QdrantService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeArchiveCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\KnowledgeArchiveCommand', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'qdrantservice' => 'App\\Services\\QdrantService', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'qdrantservice' => 'App\\Services\\QdrantService', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'qdrant', - 'type' => 'App\\Services\\QdrantService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeConfigCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\KnowledgeConfigCommand', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'pathService', - 'type' => 'App\\Services\\KnowledgePathService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeExportAllCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\KnowledgeExportAllCommand', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'markdownexporter' => 'App\\Services\\MarkdownExporter', - 'qdrantservice' => 'App\\Services\\QdrantService', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'markdownexporter' => 'App\\Services\\MarkdownExporter', - 'qdrantservice' => 'App\\Services\\QdrantService', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'markdownExporter', - 'type' => 'App\\Services\\MarkdownExporter', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'qdrant', - 'type' => 'App\\Services\\QdrantService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeExportCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\KnowledgeExportCommand', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'markdownexporter' => 'App\\Services\\MarkdownExporter', - 'qdrantservice' => 'App\\Services\\QdrantService', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'markdownexporter' => 'App\\Services\\MarkdownExporter', - 'qdrantservice' => 'App\\Services\\QdrantService', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'markdownExporter', - 'type' => 'App\\Services\\MarkdownExporter', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeGitContextCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\KnowledgeGitContextCommand', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'gitcontextservice' => 'App\\Services\\GitContextService', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'gitcontextservice' => 'App\\Services\\GitContextService', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'gitService', - 'type' => 'App\\Services\\GitContextService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeListCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\KnowledgeListCommand', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'qdrantservice' => 'App\\Services\\QdrantService', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'qdrantservice' => 'App\\Services\\QdrantService', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'qdrant', - 'type' => 'App\\Services\\QdrantService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\KnowledgeSearchCommand', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'qdrantservice' => 'App\\Services\\QdrantService', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'qdrantservice' => 'App\\Services\\QdrantService', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'qdrant', - 'type' => 'App\\Services\\QdrantService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeSearchStatusCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\KnowledgeSearchStatusCommand', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'embeddingService', - 'type' => 'App\\Contracts\\EmbeddingServiceInterface', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeShowCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\KnowledgeShowCommand', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'qdrant', - 'type' => 'App\\Services\\QdrantService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeStatsCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\KnowledgeStatsCommand', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'qdrant', - 'type' => 'App\\Services\\QdrantService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeUpdateCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\KnowledgeUpdateCommand', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'qdrant', - 'type' => 'App\\Services\\QdrantService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/KnowledgeValidateCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\KnowledgeValidateCommand', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'qdrantservice' => 'App\\Services\\QdrantService', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'qdrantservice' => 'App\\Services\\QdrantService', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'qdrant', - 'type' => 'App\\Services\\QdrantService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/SearchCodeCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\SearchCodeCommand', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'indexer', - 'type' => 'App\\Services\\CodeIndexerService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/SyncCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\SyncCommand', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @codeCoverageIgnore Integration command - requires external prefrontal-cortex API - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'qdrantservice' => 'App\\Services\\QdrantService', - 'client' => 'GuzzleHttp\\Client', - 'guzzleexception' => 'GuzzleHttp\\Exception\\GuzzleException', - 'str' => 'Illuminate\\Support\\Str', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'qdrantservice' => 'App\\Services\\QdrantService', - 'client' => 'GuzzleHttp\\Client', - 'guzzleexception' => 'GuzzleHttp\\Exception\\GuzzleException', - 'str' => 'Illuminate\\Support\\Str', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @var string - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'qdrantservice' => 'App\\Services\\QdrantService', - 'client' => 'GuzzleHttp\\Client', - 'guzzleexception' => 'GuzzleHttp\\Exception\\GuzzleException', - 'str' => 'Illuminate\\Support\\Str', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'client', - ), - 'phpDoc' => NULL, - 'type' => '?GuzzleHttp\\Client', - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'qdrant', - 'type' => 'App\\Services\\QdrantService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 4 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'getClient', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Get or create HTTP client. - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'qdrantservice' => 'App\\Services\\QdrantService', - 'client' => 'GuzzleHttp\\Client', - 'guzzleexception' => 'GuzzleHttp\\Exception\\GuzzleException', - 'str' => 'Illuminate\\Support\\Str', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => false, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'GuzzleHttp\\Client', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 5 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'createClient', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Create a new HTTP client instance. - * - * @codeCoverageIgnore HTTP client factory - tested via integration - */', - 'namespace' => 'App\\Commands', - 'uses' => - array ( - 'qdrantservice' => 'App\\Services\\QdrantService', - 'client' => 'GuzzleHttp\\Client', - 'guzzleexception' => 'GuzzleHttp\\Exception\\GuzzleException', - 'str' => 'Illuminate\\Support\\Str', - 'command' => 'LaravelZero\\Framework\\Commands\\Command', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => false, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'GuzzleHttp\\Client', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Commands/SynthesizeCommand.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Commands\\SynthesizeCommand', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'LaravelZero\\Framework\\Commands\\Command', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'signature', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'description', - ), - 'phpDoc' => NULL, - 'type' => NULL, - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'handle', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'qdrant', - 'type' => 'App\\Services\\QdrantService', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Contracts/EmbeddingServiceInterface.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedInterfaceNode::__set_state(array( - 'name' => 'App\\Contracts\\EmbeddingServiceInterface', - 'phpDoc' => NULL, - 'extends' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'generate', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Generate an embedding vector for the given text. - * - * @param string $text The text to generate an embedding for - * @return array The embedding vector - */', - 'namespace' => 'App\\Contracts', - 'uses' => - array ( - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'text', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'similarity', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Calculate the cosine similarity between two embedding vectors. - * - * @param array $a First embedding vector - * @param array $b Second embedding vector - * @return float Similarity score between 0 and 1 - */', - 'namespace' => 'App\\Contracts', - 'uses' => - array ( - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'float', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'a', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'b', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - )), - ), - '/home/jordan/projects/knowledge/app/Contracts/SparseEmbeddingServiceInterface.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedInterfaceNode::__set_state(array( - 'name' => 'App\\Contracts\\SparseEmbeddingServiceInterface', - 'phpDoc' => NULL, - 'extends' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'generate', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Generate a sparse vector representation for the given text. - * - * Returns an associative array with \'indices\' and \'values\' keys, - * suitable for Qdrant sparse vector format. - * - * @param string $text The text to generate sparse embedding for - * @return array{indices: array, values: array} - */', - 'namespace' => 'App\\Contracts', - 'uses' => - array ( - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'text', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - )), - ), - '/home/jordan/projects/knowledge/app/Enums/ObservationType.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedEnumNode::__set_state(array( - 'name' => 'App\\Enums\\ObservationType', - 'scalarType' => 'string', - 'phpDoc' => NULL, - 'implements' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedEnumCaseNode::__set_state(array( - 'name' => 'Bugfix', - 'value' => '\'bugfix\'', - 'phpDoc' => NULL, - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedEnumCaseNode::__set_state(array( - 'name' => 'Feature', - 'value' => '\'feature\'', - 'phpDoc' => NULL, - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedEnumCaseNode::__set_state(array( - 'name' => 'Refactor', - 'value' => '\'refactor\'', - 'phpDoc' => NULL, - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedEnumCaseNode::__set_state(array( - 'name' => 'Discovery', - 'value' => '\'discovery\'', - 'phpDoc' => NULL, - )), - 4 => - \PHPStan\Dependency\ExportedNode\ExportedEnumCaseNode::__set_state(array( - 'name' => 'Decision', - 'value' => '\'decision\'', - 'phpDoc' => NULL, - )), - 5 => - \PHPStan\Dependency\ExportedNode\ExportedEnumCaseNode::__set_state(array( - 'name' => 'Change', - 'value' => '\'change\'', - 'phpDoc' => NULL, - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/CollectionCreationException.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Exceptions\\Qdrant\\CollectionCreationException', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'App\\Exceptions\\Qdrant\\QdrantException', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'withReason', - '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' => 'collectionName', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'reason', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/CollectionNotFoundException.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Exceptions\\Qdrant\\CollectionNotFoundException', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'App\\Exceptions\\Qdrant\\QdrantException', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'forCollection', - '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' => 'collectionName', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/ConnectionException.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Exceptions\\Qdrant\\ConnectionException', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'App\\Exceptions\\Qdrant\\QdrantException', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'withMessage', - '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' => 'message', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/DuplicateEntryException.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Exceptions\\Qdrant\\DuplicateEntryException', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'App\\Exceptions\\Qdrant\\QdrantException', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassConstantsNode::__set_state(array( - 'constants' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassConstantNode::__set_state(array( - 'name' => 'TYPE_HASH', - 'value' => '\'hash\'', - 'attributes' => - array ( - ), - )), - ), - 'public' => true, - 'private' => false, - 'final' => false, - 'phpDoc' => NULL, - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedClassConstantsNode::__set_state(array( - 'constants' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassConstantNode::__set_state(array( - 'name' => 'TYPE_SIMILARITY', - 'value' => '\'similarity\'', - 'attributes' => - array ( - ), - )), - ), - 'public' => true, - 'private' => false, - 'final' => false, - 'phpDoc' => NULL, - )), - 2 => - \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' => 'message', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'duplicateType', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'existingId', - 'type' => 'string|int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'similarityScore', - 'type' => '?float', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'hashMatch', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Create exception for hash-based duplicate detection. - */', - 'namespace' => 'App\\Exceptions\\Qdrant', - 'uses' => - array ( - ), - 'constUses' => - array ( - ), - )), - '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' => 'existingId', - 'type' => 'string|int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'contentHash', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 4 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'similarityMatch', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Create exception for vector similarity-based duplicate detection. - */', - 'namespace' => 'App\\Exceptions\\Qdrant', - 'uses' => - array ( - ), - 'constUses' => - array ( - ), - )), - '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' => 'existingId', - 'type' => 'string|int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'similarityScore', - 'type' => 'float', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/EmbeddingException.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Exceptions\\Qdrant\\EmbeddingException', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'App\\Exceptions\\Qdrant\\QdrantException', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'generationFailed', - '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' => 'text', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/QdrantException.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Exceptions\\Qdrant\\QdrantException', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'RuntimeException', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Exceptions/Qdrant/UpsertException.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Exceptions\\Qdrant\\UpsertException', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'App\\Exceptions\\Qdrant\\QdrantException', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'withReason', - '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' => 'reason', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/QdrantConnector.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Integrations\\Qdrant\\QdrantConnector', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'Saloon\\Http\\Connector', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - 0 => 'Saloon\\Traits\\Plugins\\AcceptsJson', - ), - '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' => 'host', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'port', - 'type' => 'int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'apiKey', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'secure', - 'type' => 'bool', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'resolveBaseUrl', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'string', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'defaultHeaders', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => false, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'defaultConfig', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/CreateCollection.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Integrations\\Qdrant\\Requests\\CreateCollection', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'Saloon\\Http\\Request', - 'implements' => - array ( - 0 => 'Saloon\\Contracts\\Body\\HasBody', - ), - 'usedTraits' => - array ( - 0 => 'Saloon\\Traits\\Body\\HasJsonBody', - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'method', - ), - 'phpDoc' => NULL, - 'type' => 'Saloon\\Enums\\Method', - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - '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' => 'collectionName', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'vectorSize', - 'type' => 'int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'distance', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'hybridEnabled', - 'type' => 'bool', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'resolveEndpoint', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'string', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'defaultBody', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => false, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/DeletePoints.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Integrations\\Qdrant\\Requests\\DeletePoints', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'Saloon\\Http\\Request', - 'implements' => - array ( - 0 => 'Saloon\\Contracts\\Body\\HasBody', - ), - 'usedTraits' => - array ( - 0 => 'Saloon\\Traits\\Body\\HasJsonBody', - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'method', - ), - 'phpDoc' => NULL, - 'type' => 'Saloon\\Enums\\Method', - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => '__construct', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param array $pointIds - */', - 'namespace' => 'App\\Integrations\\Qdrant\\Requests', - 'uses' => - array ( - 'hasbody' => 'Saloon\\Contracts\\Body\\HasBody', - 'method' => 'Saloon\\Enums\\Method', - 'request' => 'Saloon\\Http\\Request', - 'hasjsonbody' => 'Saloon\\Traits\\Body\\HasJsonBody', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'collectionName', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'pointIds', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'resolveEndpoint', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'string', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'defaultBody', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => false, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/GetCollectionInfo.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Integrations\\Qdrant\\Requests\\GetCollectionInfo', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'Saloon\\Http\\Request', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'method', - ), - 'phpDoc' => NULL, - 'type' => 'Saloon\\Enums\\Method', - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - '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' => 'collectionName', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'resolveEndpoint', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'string', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/GetPoints.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Integrations\\Qdrant\\Requests\\GetPoints', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'Saloon\\Http\\Request', - 'implements' => - array ( - 0 => 'Saloon\\Contracts\\Body\\HasBody', - ), - 'usedTraits' => - array ( - 0 => 'Saloon\\Traits\\Body\\HasJsonBody', - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'method', - ), - 'phpDoc' => NULL, - 'type' => 'Saloon\\Enums\\Method', - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => '__construct', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param array $ids - */', - 'namespace' => 'App\\Integrations\\Qdrant\\Requests', - 'uses' => - array ( - 'hasbody' => 'Saloon\\Contracts\\Body\\HasBody', - 'method' => 'Saloon\\Enums\\Method', - 'request' => 'Saloon\\Http\\Request', - 'hasjsonbody' => 'Saloon\\Traits\\Body\\HasJsonBody', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'collectionName', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'ids', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'resolveEndpoint', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'string', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'defaultBody', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => false, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/HybridSearchPoints.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Integrations\\Qdrant\\Requests\\HybridSearchPoints', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Hybrid search using prefetch + RRF (Reciprocal Rank Fusion). - * - * Combines dense vector (semantic) and sparse vector (lexical/BM25) search - * results using Qdrant\'s native RRF fusion for improved relevance. - */', - 'namespace' => 'App\\Integrations\\Qdrant\\Requests', - 'uses' => - array ( - 'hasbody' => 'Saloon\\Contracts\\Body\\HasBody', - 'method' => 'Saloon\\Enums\\Method', - 'request' => 'Saloon\\Http\\Request', - 'hasjsonbody' => 'Saloon\\Traits\\Body\\HasJsonBody', - ), - 'constUses' => - array ( - ), - )), - 'abstract' => false, - 'final' => false, - 'extends' => 'Saloon\\Http\\Request', - 'implements' => - array ( - 0 => 'Saloon\\Contracts\\Body\\HasBody', - ), - 'usedTraits' => - array ( - 0 => 'Saloon\\Traits\\Body\\HasJsonBody', - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'method', - ), - 'phpDoc' => NULL, - 'type' => 'Saloon\\Enums\\Method', - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => '__construct', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param array $denseVector Dense embedding vector - * @param array{indices: array, values: array} $sparseVector Sparse embedding vector - * @param array|null $filter Optional Qdrant filter - */', - 'namespace' => 'App\\Integrations\\Qdrant\\Requests', - 'uses' => - array ( - 'hasbody' => 'Saloon\\Contracts\\Body\\HasBody', - 'method' => 'Saloon\\Enums\\Method', - 'request' => 'Saloon\\Http\\Request', - 'hasjsonbody' => 'Saloon\\Traits\\Body\\HasJsonBody', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'collectionName', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'denseVector', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'sparseVector', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'limit', - 'type' => 'int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 4 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'prefetchLimit', - 'type' => 'int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 5 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'filter', - 'type' => '?array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'resolveEndpoint', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'string', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'defaultBody', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => false, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/ScrollPoints.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Integrations\\Qdrant\\Requests\\ScrollPoints', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @codeCoverageIgnore Qdrant API request DTO - tested via integration - */', - 'namespace' => 'App\\Integrations\\Qdrant\\Requests', - 'uses' => - array ( - 'hasbody' => 'Saloon\\Contracts\\Body\\HasBody', - 'method' => 'Saloon\\Enums\\Method', - 'request' => 'Saloon\\Http\\Request', - 'hasjsonbody' => 'Saloon\\Traits\\Body\\HasJsonBody', - ), - 'constUses' => - array ( - ), - )), - 'abstract' => false, - 'final' => false, - 'extends' => 'Saloon\\Http\\Request', - 'implements' => - array ( - 0 => 'Saloon\\Contracts\\Body\\HasBody', - ), - 'usedTraits' => - array ( - 0 => 'Saloon\\Traits\\Body\\HasJsonBody', - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'method', - ), - 'phpDoc' => NULL, - 'type' => 'Saloon\\Enums\\Method', - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => '__construct', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param array|null $filter - */', - 'namespace' => 'App\\Integrations\\Qdrant\\Requests', - 'uses' => - array ( - 'hasbody' => 'Saloon\\Contracts\\Body\\HasBody', - 'method' => 'Saloon\\Enums\\Method', - 'request' => 'Saloon\\Http\\Request', - 'hasjsonbody' => 'Saloon\\Traits\\Body\\HasJsonBody', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'collectionName', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'limit', - 'type' => 'int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'filter', - 'type' => '?array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'offset', - 'type' => 'string|int|null|null', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'resolveEndpoint', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'string', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'defaultBody', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @return array - */', - 'namespace' => 'App\\Integrations\\Qdrant\\Requests', - 'uses' => - array ( - 'hasbody' => 'Saloon\\Contracts\\Body\\HasBody', - 'method' => 'Saloon\\Enums\\Method', - 'request' => 'Saloon\\Http\\Request', - 'hasjsonbody' => 'Saloon\\Traits\\Body\\HasJsonBody', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => false, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/SearchPoints.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Integrations\\Qdrant\\Requests\\SearchPoints', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'Saloon\\Http\\Request', - 'implements' => - array ( - 0 => 'Saloon\\Contracts\\Body\\HasBody', - ), - 'usedTraits' => - array ( - 0 => 'Saloon\\Traits\\Body\\HasJsonBody', - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'method', - ), - 'phpDoc' => NULL, - 'type' => 'Saloon\\Enums\\Method', - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => '__construct', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param array $vector - * @param array|null $filter - */', - 'namespace' => 'App\\Integrations\\Qdrant\\Requests', - 'uses' => - array ( - 'hasbody' => 'Saloon\\Contracts\\Body\\HasBody', - 'method' => 'Saloon\\Enums\\Method', - 'request' => 'Saloon\\Http\\Request', - 'hasjsonbody' => 'Saloon\\Traits\\Body\\HasJsonBody', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'collectionName', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'vector', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'limit', - 'type' => 'int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'scoreThreshold', - 'type' => 'float', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 4 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'filter', - 'type' => '?array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'resolveEndpoint', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'string', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'defaultBody', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => false, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Integrations/Qdrant/Requests/UpsertPoints.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Integrations\\Qdrant\\Requests\\UpsertPoints', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'Saloon\\Http\\Request', - 'implements' => - array ( - 0 => 'Saloon\\Contracts\\Body\\HasBody', - ), - 'usedTraits' => - array ( - 0 => 'Saloon\\Traits\\Body\\HasJsonBody', - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedPropertiesNode::__set_state(array( - 'names' => - array ( - 0 => 'method', - ), - 'phpDoc' => NULL, - 'type' => 'Saloon\\Enums\\Method', - 'public' => false, - 'private' => false, - 'static' => false, - 'readonly' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => '__construct', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param array, payload: array}> $points - */', - 'namespace' => 'App\\Integrations\\Qdrant\\Requests', - 'uses' => - array ( - 'hasbody' => 'Saloon\\Contracts\\Body\\HasBody', - 'method' => 'Saloon\\Enums\\Method', - 'request' => 'Saloon\\Http\\Request', - 'hasjsonbody' => 'Saloon\\Traits\\Body\\HasJsonBody', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'collectionName', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'points', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'resolveEndpoint', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'string', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'defaultBody', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => false, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Providers/AppServiceProvider.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Providers\\AppServiceProvider', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => 'Illuminate\\Support\\ServiceProvider', - 'implements' => - array ( - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'boot', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Bootstrap any application services. - */', - 'namespace' => 'App\\Providers', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'knowledgepathservice' => 'App\\Services\\KnowledgePathService', - 'qdrantservice' => 'App\\Services\\QdrantService', - 'runtimeenvironment' => 'App\\Services\\RuntimeEnvironment', - 'stubembeddingservice' => 'App\\Services\\StubEmbeddingService', - 'serviceprovider' => 'Illuminate\\Support\\ServiceProvider', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'void', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'register', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Register any application services. - */', - 'namespace' => 'App\\Providers', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'knowledgepathservice' => 'App\\Services\\KnowledgePathService', - 'qdrantservice' => 'App\\Services\\QdrantService', - 'runtimeenvironment' => 'App\\Services\\RuntimeEnvironment', - 'stubembeddingservice' => 'App\\Services\\StubEmbeddingService', - 'serviceprovider' => 'Illuminate\\Support\\ServiceProvider', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'void', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Services/Bm25SparseEmbeddingService.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Services\\Bm25SparseEmbeddingService', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * BM25-inspired sparse embedding service. - * - * Generates sparse vectors using term frequency and token hashing. - * This provides a simple, fast sparse representation suitable for - * hybrid search with RRF fusion in Qdrant. - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'sparseembeddingserviceinterface' => 'App\\Contracts\\SparseEmbeddingServiceInterface', - ), - 'constUses' => - array ( - ), - )), - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'App\\Contracts\\SparseEmbeddingServiceInterface', - ), - 'usedTraits' => - array ( - ), - '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' => 'vocabSize', - 'type' => 'int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'k1', - 'type' => 'float', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'b', - 'type' => 'float', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'avgDocLength', - 'type' => 'float', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'generate', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Generate sparse vector using BM25-inspired term weighting. - * - * @return array{indices: array, values: array} - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'sparseembeddingserviceinterface' => 'App\\Contracts\\SparseEmbeddingServiceInterface', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'text', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Services/CodeIndexerService.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Services\\CodeIndexerService', - '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' => '__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' => 'embeddingService', - 'type' => 'App\\Contracts\\EmbeddingServiceInterface', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'vectorSize', - 'type' => 'int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'ensureCollection', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Ensure the code collection exists. - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'qdrantconnector' => 'App\\Integrations\\Qdrant\\QdrantConnector', - 'createcollection' => 'App\\Integrations\\Qdrant\\Requests\\CreateCollection', - 'getcollectioninfo' => 'App\\Integrations\\Qdrant\\Requests\\GetCollectionInfo', - 'searchpoints' => 'App\\Integrations\\Qdrant\\Requests\\SearchPoints', - 'upsertpoints' => 'App\\Integrations\\Qdrant\\Requests\\UpsertPoints', - 'finder' => 'Symfony\\Component\\Finder\\Finder', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'bool', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'findFiles', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Find all indexable code files in the given paths. - * - * @param array $paths - * @return \\Generator - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'qdrantconnector' => 'App\\Integrations\\Qdrant\\QdrantConnector', - 'createcollection' => 'App\\Integrations\\Qdrant\\Requests\\CreateCollection', - 'getcollectioninfo' => 'App\\Integrations\\Qdrant\\Requests\\GetCollectionInfo', - 'searchpoints' => 'App\\Integrations\\Qdrant\\Requests\\SearchPoints', - 'upsertpoints' => 'App\\Integrations\\Qdrant\\Requests\\UpsertPoints', - 'finder' => 'Symfony\\Component\\Finder\\Finder', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Generator', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'paths', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'indexFile', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Index a single file. - * - * @return array{chunks: int, success: bool, error?: string} - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'qdrantconnector' => 'App\\Integrations\\Qdrant\\QdrantConnector', - 'createcollection' => 'App\\Integrations\\Qdrant\\Requests\\CreateCollection', - 'getcollectioninfo' => 'App\\Integrations\\Qdrant\\Requests\\GetCollectionInfo', - 'searchpoints' => 'App\\Integrations\\Qdrant\\Requests\\SearchPoints', - 'upsertpoints' => 'App\\Integrations\\Qdrant\\Requests\\UpsertPoints', - 'finder' => 'Symfony\\Component\\Finder\\Finder', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'filepath', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'repo', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 4 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'search', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Search code semantically. - * - * @param array{repo?: string, language?: string} $filters - * @return array}> - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'qdrantconnector' => 'App\\Integrations\\Qdrant\\QdrantConnector', - 'createcollection' => 'App\\Integrations\\Qdrant\\Requests\\CreateCollection', - 'getcollectioninfo' => 'App\\Integrations\\Qdrant\\Requests\\GetCollectionInfo', - 'searchpoints' => 'App\\Integrations\\Qdrant\\Requests\\SearchPoints', - 'upsertpoints' => 'App\\Integrations\\Qdrant\\Requests\\UpsertPoints', - 'finder' => 'Symfony\\Component\\Finder\\Finder', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'query', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'limit', - 'type' => 'int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'filters', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Services/EmbeddingService.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Services\\EmbeddingService', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'App\\Contracts\\EmbeddingServiceInterface', - ), - 'usedTraits' => - array ( - ), - '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' => 'serverUrl', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'generate', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @return array - * - * @codeCoverageIgnore Requires external embedding server - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'client' => 'GuzzleHttp\\Client', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'text', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'similarity', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param array $a - * @param array $b - * - * @codeCoverageIgnore Same logic tested in StubEmbeddingServiceTest - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'client' => 'GuzzleHttp\\Client', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'float', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'a', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'b', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Services/GitContextService.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Services\\GitContextService', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * GitContextService - Detect and retrieve git repository metadata - * - * This service provides automatic git context detection for knowledge attribution. - * It captures repository, branch, commit, and author information to enable: - * - Knowledge attribution (git blame for documentation) - * - Evolution tracking (how knowledge changes over time) - * - Cross-repository knowledge sharing - * - * Graceful Fallback Strategy: - * - All methods return null when git is not available - * - No exceptions thrown for missing git or non-git directories - * - Repository URL falls back to local path if remote origin is not configured - * - * Testing Support: - * - Custom working directory can be provided via constructor - * - Enables testing with temporary directories or mocked git repos - * - * Example Usage: - * ```php - * $service = new GitContextService(); - * if ($service->isGitRepository()) { - * $context = $service->getContext(); - * // [\'repo\' => \'...\', \'branch\' => \'...\', \'commit\' => \'...\', \'author\' => \'...\'] - * } - * ``` - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'process' => 'Symfony\\Component\\Process\\Process', - ), - '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' => '__construct', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * @param string|null $workingDirectory Optional working directory for git commands (default: current directory) - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'process' => 'Symfony\\Component\\Process\\Process', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'workingDirectory', - 'type' => '?string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'isGitRepository', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Check if the current directory is a git repository - * - * Uses `git rev-parse --git-dir` to detect .git directory. - * Returns false for non-git directories or when git is not installed. - * - * @return bool True if in a git repository, false otherwise - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'process' => 'Symfony\\Component\\Process\\Process', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'bool', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'getRepositoryPath', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Get the absolute path to the repository root - * - * Uses `git rev-parse --show-toplevel` to find the top-level directory. - * This works correctly with git submodules and nested repositories. - * - * Fallback: Returns null if not in a git repository or if git command fails. - * - * @return string|null Absolute path to repository root, or null if not in a git repo - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'process' => 'Symfony\\Component\\Process\\Process', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => '?string', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'getRepositoryUrl', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Get the repository URL from remote origin - * - * Uses `git remote get-url origin` to retrieve the remote URL. - * Supports HTTPS, SSH, and git protocol URLs. - * - * Fallback: Returns null if: - * - Not in a git repository - * - Remote origin is not configured - * - Git command fails - * - * Note: Use getContext() to automatically fall back to local path when URL is unavailable. - * - * @return string|null Repository URL (e.g., \'https://github.com/user/repo.git\'), or null - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'process' => 'Symfony\\Component\\Process\\Process', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => '?string', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 4 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'getCurrentBranch', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Get the current branch name - * - * Uses `git rev-parse --abbrev-ref HEAD` to get symbolic branch name. - * Returns \'HEAD\' when in detached HEAD state. - * - * Fallback: Returns null if not in a git repository or if git command fails. - * - * @return string|null Branch name (e.g., \'main\', \'feature/new-feature\'), or null - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'process' => 'Symfony\\Component\\Process\\Process', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => '?string', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 5 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'getCurrentCommit', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Get the current commit hash - * - * Uses `git rev-parse HEAD` to get the full SHA-1 commit hash (40 characters). - * This uniquely identifies the exact state of the repository. - * - * Fallback: Returns null if not in a git repository or if git command fails. - * - * @return string|null Full commit hash (e.g., \'abc123def456...\'), or null - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'process' => 'Symfony\\Component\\Process\\Process', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => '?string', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 6 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'getAuthor', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Get the git user name from git config - * - * Uses `git config user.name` to retrieve the configured author name. - * This name is used for knowledge attribution (similar to git blame). - * - * Fallback: Returns null if: - * - Git config user.name is not set - * - Git command fails - * - The configured name is empty - * - * Note: Does not require being in a git repository (reads global config). - * - * @return string|null Author name (e.g., \'John Doe\'), or null - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'process' => 'Symfony\\Component\\Process\\Process', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => '?string', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 7 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'getContext', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Get all git context information in a single call - * - * This is the primary method for capturing git metadata. - * It retrieves all relevant information and applies intelligent fallbacks: - * - * Repository Fallback Strategy: - * 1. Try remote origin URL (best for cross-repo knowledge sharing) - * 2. Fall back to local path (works for local repos without remotes) - * 3. Return null if not in a git repository - * - * All other fields return null on failure for graceful degradation. - * - * @return array{repo: string|null, branch: string|null, commit: string|null, author: string|null} - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'process' => 'Symfony\\Component\\Process\\Process', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Services/KnowledgePathService.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Services\\KnowledgePathService', - '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' => '__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' => 'runtime', - 'type' => 'App\\Services\\RuntimeEnvironment', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'getKnowledgeDirectory', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Get the knowledge directory path. - * - * Priority: - * 1. KNOWLEDGE_HOME environment variable - * 2. HOME environment variable + /.knowledge - * 3. USERPROFILE environment variable + /.knowledge (Windows) - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'string', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'ensureDirectoryExists', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Ensure a directory exists, creating it if necessary. - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - ), - 'constUses' => - array ( - ), - )), - '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' => 'path', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Services/MarkdownExporter.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Services\\MarkdownExporter', - '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' => 'exportArray', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Export an entry array to markdown format with YAML front matter. - * - * @param array $entry - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'string', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'entry', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Services/PatternDetectorService.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Services\\PatternDetectorService', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Detects recurring patterns and topics in knowledge entries. - * - * Identifies: - * - Frequently mentioned topics - * - Recurring problems/blockers - * - Common project associations - * - Temporal patterns (daily/weekly trends) - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'collection' => 'Illuminate\\Support\\Collection', - ), - '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' => 'detect', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Detect patterns from a collection of entries. - * - * @param Collection, category?: string|null, created_at?: string}> $entries - * @return array{ - * frequent_topics: array, - * recurring_tags: array, - * project_associations: array, - * category_distribution: array, - * insights: array - * } - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'collection' => 'Illuminate\\Support\\Collection', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'entries', - 'type' => 'Illuminate\\Support\\Collection', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'findEntriesMatchingPattern', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Find entries that match a detected pattern. - * - * @param Collection $entries - * @return Collection - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'collection' => 'Illuminate\\Support\\Collection', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Illuminate\\Support\\Collection', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'entries', - 'type' => 'Illuminate\\Support\\Collection', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'pattern', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Services/QdrantService.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Services\\QdrantService', - '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' => '__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' => 'embeddingService', - 'type' => 'App\\Contracts\\EmbeddingServiceInterface', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'vectorSize', - 'type' => 'int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'scoreThreshold', - 'type' => 'float', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'cacheTtl', - 'type' => 'int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 4 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'secure', - 'type' => 'bool', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 5 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'hybridEnabled', - 'type' => 'bool', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'setSparseEmbeddingService', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Set the sparse embedding service for hybrid search. - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'sparseembeddingserviceinterface' => 'App\\Contracts\\SparseEmbeddingServiceInterface', - 'collectioncreationexception' => 'App\\Exceptions\\Qdrant\\CollectionCreationException', - 'connectionexception' => 'App\\Exceptions\\Qdrant\\ConnectionException', - 'embeddingexception' => 'App\\Exceptions\\Qdrant\\EmbeddingException', - 'upsertexception' => 'App\\Exceptions\\Qdrant\\UpsertException', - 'qdrantconnector' => 'App\\Integrations\\Qdrant\\QdrantConnector', - 'createcollection' => 'App\\Integrations\\Qdrant\\Requests\\CreateCollection', - 'deletepoints' => 'App\\Integrations\\Qdrant\\Requests\\DeletePoints', - 'getcollectioninfo' => 'App\\Integrations\\Qdrant\\Requests\\GetCollectionInfo', - 'getpoints' => 'App\\Integrations\\Qdrant\\Requests\\GetPoints', - 'hybridsearchpoints' => 'App\\Integrations\\Qdrant\\Requests\\HybridSearchPoints', - 'scrollpoints' => 'App\\Integrations\\Qdrant\\Requests\\ScrollPoints', - 'searchpoints' => 'App\\Integrations\\Qdrant\\Requests\\SearchPoints', - 'upsertpoints' => 'App\\Integrations\\Qdrant\\Requests\\UpsertPoints', - 'collection' => 'Illuminate\\Support\\Collection', - 'cache' => 'Illuminate\\Support\\Facades\\Cache', - 'clientexception' => 'Saloon\\Exceptions\\Request\\ClientException', - ), - 'constUses' => - array ( - ), - )), - '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' => 'service', - 'type' => 'App\\Contracts\\SparseEmbeddingServiceInterface', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'ensureCollection', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Ensure collection exists for the given project namespace. - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'sparseembeddingserviceinterface' => 'App\\Contracts\\SparseEmbeddingServiceInterface', - 'collectioncreationexception' => 'App\\Exceptions\\Qdrant\\CollectionCreationException', - 'connectionexception' => 'App\\Exceptions\\Qdrant\\ConnectionException', - 'embeddingexception' => 'App\\Exceptions\\Qdrant\\EmbeddingException', - 'upsertexception' => 'App\\Exceptions\\Qdrant\\UpsertException', - 'qdrantconnector' => 'App\\Integrations\\Qdrant\\QdrantConnector', - 'createcollection' => 'App\\Integrations\\Qdrant\\Requests\\CreateCollection', - 'deletepoints' => 'App\\Integrations\\Qdrant\\Requests\\DeletePoints', - 'getcollectioninfo' => 'App\\Integrations\\Qdrant\\Requests\\GetCollectionInfo', - 'getpoints' => 'App\\Integrations\\Qdrant\\Requests\\GetPoints', - 'hybridsearchpoints' => 'App\\Integrations\\Qdrant\\Requests\\HybridSearchPoints', - 'scrollpoints' => 'App\\Integrations\\Qdrant\\Requests\\ScrollPoints', - 'searchpoints' => 'App\\Integrations\\Qdrant\\Requests\\SearchPoints', - 'upsertpoints' => 'App\\Integrations\\Qdrant\\Requests\\UpsertPoints', - 'collection' => 'Illuminate\\Support\\Collection', - 'cache' => 'Illuminate\\Support\\Facades\\Cache', - 'clientexception' => 'Saloon\\Exceptions\\Request\\ClientException', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'bool', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'project', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'upsert', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Add or update an entry in Qdrant. - * - * @param array{ - * id: string|int, - * title: string, - * content: string, - * tags?: array, - * category?: string, - * module?: string, - * priority?: string, - * status?: string, - * confidence?: int, - * usage_count?: int, - * created_at?: string, - * updated_at?: string - * } $entry - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'sparseembeddingserviceinterface' => 'App\\Contracts\\SparseEmbeddingServiceInterface', - 'collectioncreationexception' => 'App\\Exceptions\\Qdrant\\CollectionCreationException', - 'connectionexception' => 'App\\Exceptions\\Qdrant\\ConnectionException', - 'embeddingexception' => 'App\\Exceptions\\Qdrant\\EmbeddingException', - 'upsertexception' => 'App\\Exceptions\\Qdrant\\UpsertException', - 'qdrantconnector' => 'App\\Integrations\\Qdrant\\QdrantConnector', - 'createcollection' => 'App\\Integrations\\Qdrant\\Requests\\CreateCollection', - 'deletepoints' => 'App\\Integrations\\Qdrant\\Requests\\DeletePoints', - 'getcollectioninfo' => 'App\\Integrations\\Qdrant\\Requests\\GetCollectionInfo', - 'getpoints' => 'App\\Integrations\\Qdrant\\Requests\\GetPoints', - 'hybridsearchpoints' => 'App\\Integrations\\Qdrant\\Requests\\HybridSearchPoints', - 'scrollpoints' => 'App\\Integrations\\Qdrant\\Requests\\ScrollPoints', - 'searchpoints' => 'App\\Integrations\\Qdrant\\Requests\\SearchPoints', - 'upsertpoints' => 'App\\Integrations\\Qdrant\\Requests\\UpsertPoints', - 'collection' => 'Illuminate\\Support\\Collection', - 'cache' => 'Illuminate\\Support\\Facades\\Cache', - 'clientexception' => 'Saloon\\Exceptions\\Request\\ClientException', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'bool', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'entry', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'project', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'checkDuplicates', - 'type' => 'bool', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 4 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'search', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Search entries using semantic similarity. - * - * @param array{ - * tag?: string, - * category?: string, - * module?: string, - * priority?: string, - * status?: string - * } $filters - * @return Collection, - * category: ?string, - * module: ?string, - * priority: ?string, - * status: ?string, - * confidence: int, - * usage_count: int, - * created_at: string, - * updated_at: string - * }> - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'sparseembeddingserviceinterface' => 'App\\Contracts\\SparseEmbeddingServiceInterface', - 'collectioncreationexception' => 'App\\Exceptions\\Qdrant\\CollectionCreationException', - 'connectionexception' => 'App\\Exceptions\\Qdrant\\ConnectionException', - 'embeddingexception' => 'App\\Exceptions\\Qdrant\\EmbeddingException', - 'upsertexception' => 'App\\Exceptions\\Qdrant\\UpsertException', - 'qdrantconnector' => 'App\\Integrations\\Qdrant\\QdrantConnector', - 'createcollection' => 'App\\Integrations\\Qdrant\\Requests\\CreateCollection', - 'deletepoints' => 'App\\Integrations\\Qdrant\\Requests\\DeletePoints', - 'getcollectioninfo' => 'App\\Integrations\\Qdrant\\Requests\\GetCollectionInfo', - 'getpoints' => 'App\\Integrations\\Qdrant\\Requests\\GetPoints', - 'hybridsearchpoints' => 'App\\Integrations\\Qdrant\\Requests\\HybridSearchPoints', - 'scrollpoints' => 'App\\Integrations\\Qdrant\\Requests\\ScrollPoints', - 'searchpoints' => 'App\\Integrations\\Qdrant\\Requests\\SearchPoints', - 'upsertpoints' => 'App\\Integrations\\Qdrant\\Requests\\UpsertPoints', - 'collection' => 'Illuminate\\Support\\Collection', - 'cache' => 'Illuminate\\Support\\Facades\\Cache', - 'clientexception' => 'Saloon\\Exceptions\\Request\\ClientException', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Illuminate\\Support\\Collection', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'query', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'filters', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'limit', - 'type' => 'int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'project', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 5 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'hybridSearch', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Hybrid search using both dense and sparse vectors with RRF fusion. - * - * Falls back to dense-only search if hybrid is not enabled or sparse embedding fails. - * - * @param array{ - * tag?: string, - * category?: string, - * module?: string, - * priority?: string, - * status?: string - * } $filters - * @return Collection, - * category: ?string, - * module: ?string, - * priority: ?string, - * status: ?string, - * confidence: int, - * usage_count: int, - * created_at: string, - * updated_at: string - * }> - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'sparseembeddingserviceinterface' => 'App\\Contracts\\SparseEmbeddingServiceInterface', - 'collectioncreationexception' => 'App\\Exceptions\\Qdrant\\CollectionCreationException', - 'connectionexception' => 'App\\Exceptions\\Qdrant\\ConnectionException', - 'embeddingexception' => 'App\\Exceptions\\Qdrant\\EmbeddingException', - 'upsertexception' => 'App\\Exceptions\\Qdrant\\UpsertException', - 'qdrantconnector' => 'App\\Integrations\\Qdrant\\QdrantConnector', - 'createcollection' => 'App\\Integrations\\Qdrant\\Requests\\CreateCollection', - 'deletepoints' => 'App\\Integrations\\Qdrant\\Requests\\DeletePoints', - 'getcollectioninfo' => 'App\\Integrations\\Qdrant\\Requests\\GetCollectionInfo', - 'getpoints' => 'App\\Integrations\\Qdrant\\Requests\\GetPoints', - 'hybridsearchpoints' => 'App\\Integrations\\Qdrant\\Requests\\HybridSearchPoints', - 'scrollpoints' => 'App\\Integrations\\Qdrant\\Requests\\ScrollPoints', - 'searchpoints' => 'App\\Integrations\\Qdrant\\Requests\\SearchPoints', - 'upsertpoints' => 'App\\Integrations\\Qdrant\\Requests\\UpsertPoints', - 'collection' => 'Illuminate\\Support\\Collection', - 'cache' => 'Illuminate\\Support\\Facades\\Cache', - 'clientexception' => 'Saloon\\Exceptions\\Request\\ClientException', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Illuminate\\Support\\Collection', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'query', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'filters', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'limit', - 'type' => 'int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'prefetchLimit', - 'type' => 'int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 4 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'project', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 6 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'scroll', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Scroll/list all entries without requiring a search query. - * - * @param array $filters - * @return Collection, - * category: ?string, - * module: ?string, - * priority: ?string, - * status: ?string, - * confidence: int, - * usage_count: int, - * created_at: string, - * updated_at: string - * }> - * - * @codeCoverageIgnore Qdrant API integration - tested via integration tests - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'sparseembeddingserviceinterface' => 'App\\Contracts\\SparseEmbeddingServiceInterface', - 'collectioncreationexception' => 'App\\Exceptions\\Qdrant\\CollectionCreationException', - 'connectionexception' => 'App\\Exceptions\\Qdrant\\ConnectionException', - 'embeddingexception' => 'App\\Exceptions\\Qdrant\\EmbeddingException', - 'upsertexception' => 'App\\Exceptions\\Qdrant\\UpsertException', - 'qdrantconnector' => 'App\\Integrations\\Qdrant\\QdrantConnector', - 'createcollection' => 'App\\Integrations\\Qdrant\\Requests\\CreateCollection', - 'deletepoints' => 'App\\Integrations\\Qdrant\\Requests\\DeletePoints', - 'getcollectioninfo' => 'App\\Integrations\\Qdrant\\Requests\\GetCollectionInfo', - 'getpoints' => 'App\\Integrations\\Qdrant\\Requests\\GetPoints', - 'hybridsearchpoints' => 'App\\Integrations\\Qdrant\\Requests\\HybridSearchPoints', - 'scrollpoints' => 'App\\Integrations\\Qdrant\\Requests\\ScrollPoints', - 'searchpoints' => 'App\\Integrations\\Qdrant\\Requests\\SearchPoints', - 'upsertpoints' => 'App\\Integrations\\Qdrant\\Requests\\UpsertPoints', - 'collection' => 'Illuminate\\Support\\Collection', - 'cache' => 'Illuminate\\Support\\Facades\\Cache', - 'clientexception' => 'Saloon\\Exceptions\\Request\\ClientException', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'Illuminate\\Support\\Collection', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'filters', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'limit', - 'type' => 'int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'project', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'offset', - 'type' => 'string|int|null|null', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 7 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'delete', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Delete entries by ID. - * - * @param array $ids - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'sparseembeddingserviceinterface' => 'App\\Contracts\\SparseEmbeddingServiceInterface', - 'collectioncreationexception' => 'App\\Exceptions\\Qdrant\\CollectionCreationException', - 'connectionexception' => 'App\\Exceptions\\Qdrant\\ConnectionException', - 'embeddingexception' => 'App\\Exceptions\\Qdrant\\EmbeddingException', - 'upsertexception' => 'App\\Exceptions\\Qdrant\\UpsertException', - 'qdrantconnector' => 'App\\Integrations\\Qdrant\\QdrantConnector', - 'createcollection' => 'App\\Integrations\\Qdrant\\Requests\\CreateCollection', - 'deletepoints' => 'App\\Integrations\\Qdrant\\Requests\\DeletePoints', - 'getcollectioninfo' => 'App\\Integrations\\Qdrant\\Requests\\GetCollectionInfo', - 'getpoints' => 'App\\Integrations\\Qdrant\\Requests\\GetPoints', - 'hybridsearchpoints' => 'App\\Integrations\\Qdrant\\Requests\\HybridSearchPoints', - 'scrollpoints' => 'App\\Integrations\\Qdrant\\Requests\\ScrollPoints', - 'searchpoints' => 'App\\Integrations\\Qdrant\\Requests\\SearchPoints', - 'upsertpoints' => 'App\\Integrations\\Qdrant\\Requests\\UpsertPoints', - 'collection' => 'Illuminate\\Support\\Collection', - 'cache' => 'Illuminate\\Support\\Facades\\Cache', - 'clientexception' => 'Saloon\\Exceptions\\Request\\ClientException', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'bool', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'ids', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'project', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 8 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'getById', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Get entry by ID. - * - * @return array{ - * id: string|int, - * title: string, - * content: string, - * tags: array, - * category: ?string, - * module: ?string, - * priority: ?string, - * status: ?string, - * confidence: int, - * usage_count: int, - * created_at: string, - * updated_at: string - * }|null - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'sparseembeddingserviceinterface' => 'App\\Contracts\\SparseEmbeddingServiceInterface', - 'collectioncreationexception' => 'App\\Exceptions\\Qdrant\\CollectionCreationException', - 'connectionexception' => 'App\\Exceptions\\Qdrant\\ConnectionException', - 'embeddingexception' => 'App\\Exceptions\\Qdrant\\EmbeddingException', - 'upsertexception' => 'App\\Exceptions\\Qdrant\\UpsertException', - 'qdrantconnector' => 'App\\Integrations\\Qdrant\\QdrantConnector', - 'createcollection' => 'App\\Integrations\\Qdrant\\Requests\\CreateCollection', - 'deletepoints' => 'App\\Integrations\\Qdrant\\Requests\\DeletePoints', - 'getcollectioninfo' => 'App\\Integrations\\Qdrant\\Requests\\GetCollectionInfo', - 'getpoints' => 'App\\Integrations\\Qdrant\\Requests\\GetPoints', - 'hybridsearchpoints' => 'App\\Integrations\\Qdrant\\Requests\\HybridSearchPoints', - 'scrollpoints' => 'App\\Integrations\\Qdrant\\Requests\\ScrollPoints', - 'searchpoints' => 'App\\Integrations\\Qdrant\\Requests\\SearchPoints', - 'upsertpoints' => 'App\\Integrations\\Qdrant\\Requests\\UpsertPoints', - 'collection' => 'Illuminate\\Support\\Collection', - 'cache' => 'Illuminate\\Support\\Facades\\Cache', - 'clientexception' => 'Saloon\\Exceptions\\Request\\ClientException', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => '?array', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'id', - 'type' => 'string|int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'project', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 9 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'incrementUsage', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Increment usage count for an entry. - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'sparseembeddingserviceinterface' => 'App\\Contracts\\SparseEmbeddingServiceInterface', - 'collectioncreationexception' => 'App\\Exceptions\\Qdrant\\CollectionCreationException', - 'connectionexception' => 'App\\Exceptions\\Qdrant\\ConnectionException', - 'embeddingexception' => 'App\\Exceptions\\Qdrant\\EmbeddingException', - 'upsertexception' => 'App\\Exceptions\\Qdrant\\UpsertException', - 'qdrantconnector' => 'App\\Integrations\\Qdrant\\QdrantConnector', - 'createcollection' => 'App\\Integrations\\Qdrant\\Requests\\CreateCollection', - 'deletepoints' => 'App\\Integrations\\Qdrant\\Requests\\DeletePoints', - 'getcollectioninfo' => 'App\\Integrations\\Qdrant\\Requests\\GetCollectionInfo', - 'getpoints' => 'App\\Integrations\\Qdrant\\Requests\\GetPoints', - 'hybridsearchpoints' => 'App\\Integrations\\Qdrant\\Requests\\HybridSearchPoints', - 'scrollpoints' => 'App\\Integrations\\Qdrant\\Requests\\ScrollPoints', - 'searchpoints' => 'App\\Integrations\\Qdrant\\Requests\\SearchPoints', - 'upsertpoints' => 'App\\Integrations\\Qdrant\\Requests\\UpsertPoints', - 'collection' => 'Illuminate\\Support\\Collection', - 'cache' => 'Illuminate\\Support\\Facades\\Cache', - 'clientexception' => 'Saloon\\Exceptions\\Request\\ClientException', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'bool', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'id', - 'type' => 'string|int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'project', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 10 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'updateFields', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Update specific fields of an entry. - * - * @param array $fields - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'sparseembeddingserviceinterface' => 'App\\Contracts\\SparseEmbeddingServiceInterface', - 'collectioncreationexception' => 'App\\Exceptions\\Qdrant\\CollectionCreationException', - 'connectionexception' => 'App\\Exceptions\\Qdrant\\ConnectionException', - 'embeddingexception' => 'App\\Exceptions\\Qdrant\\EmbeddingException', - 'upsertexception' => 'App\\Exceptions\\Qdrant\\UpsertException', - 'qdrantconnector' => 'App\\Integrations\\Qdrant\\QdrantConnector', - 'createcollection' => 'App\\Integrations\\Qdrant\\Requests\\CreateCollection', - 'deletepoints' => 'App\\Integrations\\Qdrant\\Requests\\DeletePoints', - 'getcollectioninfo' => 'App\\Integrations\\Qdrant\\Requests\\GetCollectionInfo', - 'getpoints' => 'App\\Integrations\\Qdrant\\Requests\\GetPoints', - 'hybridsearchpoints' => 'App\\Integrations\\Qdrant\\Requests\\HybridSearchPoints', - 'scrollpoints' => 'App\\Integrations\\Qdrant\\Requests\\ScrollPoints', - 'searchpoints' => 'App\\Integrations\\Qdrant\\Requests\\SearchPoints', - 'upsertpoints' => 'App\\Integrations\\Qdrant\\Requests\\UpsertPoints', - 'collection' => 'Illuminate\\Support\\Collection', - 'cache' => 'Illuminate\\Support\\Facades\\Cache', - 'clientexception' => 'Saloon\\Exceptions\\Request\\ClientException', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'bool', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'id', - 'type' => 'string|int', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'fields', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'project', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 11 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'count', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Get the total count of entries in a collection. - * - * @codeCoverageIgnore Qdrant API integration - tested via integration tests - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - 'sparseembeddingserviceinterface' => 'App\\Contracts\\SparseEmbeddingServiceInterface', - 'collectioncreationexception' => 'App\\Exceptions\\Qdrant\\CollectionCreationException', - 'connectionexception' => 'App\\Exceptions\\Qdrant\\ConnectionException', - 'embeddingexception' => 'App\\Exceptions\\Qdrant\\EmbeddingException', - 'upsertexception' => 'App\\Exceptions\\Qdrant\\UpsertException', - 'qdrantconnector' => 'App\\Integrations\\Qdrant\\QdrantConnector', - 'createcollection' => 'App\\Integrations\\Qdrant\\Requests\\CreateCollection', - 'deletepoints' => 'App\\Integrations\\Qdrant\\Requests\\DeletePoints', - 'getcollectioninfo' => 'App\\Integrations\\Qdrant\\Requests\\GetCollectionInfo', - 'getpoints' => 'App\\Integrations\\Qdrant\\Requests\\GetPoints', - 'hybridsearchpoints' => 'App\\Integrations\\Qdrant\\Requests\\HybridSearchPoints', - 'scrollpoints' => 'App\\Integrations\\Qdrant\\Requests\\ScrollPoints', - 'searchpoints' => 'App\\Integrations\\Qdrant\\Requests\\SearchPoints', - 'upsertpoints' => 'App\\Integrations\\Qdrant\\Requests\\UpsertPoints', - 'collection' => 'Illuminate\\Support\\Collection', - 'cache' => 'Illuminate\\Support\\Facades\\Cache', - 'clientexception' => 'Saloon\\Exceptions\\Request\\ClientException', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'int', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'project', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Services/RuntimeEnvironment.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Services\\RuntimeEnvironment', - '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' => '__construct', - 'phpDoc' => NULL, - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => NULL, - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'isPhar', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Check if running as PHAR. - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'bool', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'basePath', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Get the base path for storage. - * - * In PHAR mode: ~/.knowledge - * In dev mode: project root - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'string', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - 3 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'cachePath', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Get the cache path for a specific type. - * - * @param string $type Cache type (e.g., \'views\', \'data\') - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'string', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'type', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => true, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 4 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'ensureDirectoryExists', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Ensure a directory exists, creating it if necessary. - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - ), - 'constUses' => - array ( - ), - )), - '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' => 'path', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Services/StubEmbeddingService.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Services\\StubEmbeddingService', - 'phpDoc' => NULL, - 'abstract' => false, - 'final' => false, - 'extends' => NULL, - 'implements' => - array ( - 0 => 'App\\Contracts\\EmbeddingServiceInterface', - ), - 'usedTraits' => - array ( - ), - 'traitUseAdaptations' => - array ( - ), - 'statements' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'generate', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Generate an embedding vector for the given text. - * This is a stub implementation that returns an empty array. - * - * @param string $text The text to generate an embedding for - * @return array Empty array (stub implementation) - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'text', - 'type' => 'string', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'similarity', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Calculate the cosine similarity between two embedding vectors. - * This is a stub implementation that returns 0.0. - * - * @param array $a First embedding vector - * @param array $b Second embedding vector - * @return float Always returns 0.0 (stub implementation) - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - 'embeddingserviceinterface' => 'App\\Contracts\\EmbeddingServiceInterface', - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'float', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'a', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'b', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), - '/home/jordan/projects/knowledge/app/Services/ThemeClassifierService.php' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedClassNode::__set_state(array( - 'name' => 'App\\Services\\ThemeClassifierService', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Classifies knowledge entries into strategic themes. - * - * Themes are based on Jordan\'s vision strategic priorities: - * - Quality Automation (78%) - automated code review, testing, certification - * - Developer Experience (65%) - GitHub CLI, natural language interfaces - * - Context Continuity (35%) - knowledge management, session memory - * - Integrated Infrastructure (10%) - physical systems, property, homelab - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - ), - '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' => 'classify', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Classify an entry into themes. - * - * @param array{title: string, content: string, tags?: array, category?: string|null} $entry - * @return array{theme: string|null, confidence: float, all_scores: array} - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'entry', - 'type' => 'array', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 1 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'classifyBatch', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Classify multiple entries and return theme distribution. - * - * @param iterable, category?: string|null}> $entries - * @return array{distribution: array, unclassified: int, total: int} - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - 0 => - \PHPStan\Dependency\ExportedNode\ExportedParameterNode::__set_state(array( - 'name' => 'entries', - 'type' => 'iterable', - 'byRef' => false, - 'variadic' => false, - 'hasDefault' => false, - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - 2 => - \PHPStan\Dependency\ExportedNode\ExportedMethodNode::__set_state(array( - 'name' => 'getThemeTargets', - 'phpDoc' => - \PHPStan\Dependency\ExportedNode\ExportedPhpDocNode::__set_state(array( - 'phpDocString' => '/** - * Get theme progress based on vision targets. - * - * @return array - */', - 'namespace' => 'App\\Services', - 'uses' => - array ( - ), - 'constUses' => - array ( - ), - )), - 'byRef' => false, - 'public' => true, - 'private' => false, - 'abstract' => false, - 'final' => false, - 'static' => false, - 'returnType' => 'array', - 'parameters' => - array ( - ), - 'attributes' => - array ( - ), - )), - ), - 'attributes' => - array ( - ), - )), - ), -); }, -];