Skip to content

Commit

Permalink
Upgrade phpstan to v2
Browse files Browse the repository at this point in the history
  • Loading branch information
guvra committed Nov 11, 2024
1 parent 8ce617b commit 3580520
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
"druidfi/mysqldump-php": "^1.1",
"fakerphp/faker": "^1.17",
"justinrainbow/json-schema": "^5.2",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"symfony/config": "^6.1",
"symfony/console": "^6.1",
"symfony/dependency-injection": "^6.1",
Expand All @@ -28,8 +30,6 @@
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.5",
"slevomat/coding-standard": "^8.14",
"squizlabs/php_codesniffer": "^3.7"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public function testAddItems(): void
$this->assertCount(2, $collection->all());
$this->assertTrue($collection->has('table1'));
$this->assertTrue($collection->has('table2'));
$this->assertInstanceOf(TableConfig::class, $collection->get('table1'));
$this->assertSame('table1', $collection->get('table1')->getName());
}

Expand Down

0 comments on commit 3580520

Please sign in to comment.