Skip to content

Commit

Permalink
build(deps-dev): bump phpstan/phpstan from 1.12.7 to 2.0.2 (#577)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump phpstan/phpstan from 1.12.7 to 2.0.2

Bumps [phpstan/phpstan](https://github.com/phpstan/phpstan) from 1.12.7 to 2.0.2.
- [Release notes](https://github.com/phpstan/phpstan/releases)
- [Changelog](https://github.com/phpstan/phpstan/blob/2.0.x/CHANGELOG.md)
- [Commits](phpstan/phpstan@1.12.7...2.0.2)

---
updated-dependencies:
- dependency-name: phpstan/phpstan
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* removed test

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Randy Geraads <[email protected]>
  • Loading branch information
dependabot[bot] and Randy Geraads authored Nov 22, 2024
1 parent d025048 commit c334b93
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 14 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"require-dev": {
"dama/doctrine-test-bundle": "^8.0",
"friendsofphp/php-cs-fixer": "^3.10",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan": "^2.0",
"symfony/browser-kit": "^7.0",
"symfony/phpunit-bridge": "^7.0"
},
Expand Down
14 changes: 7 additions & 7 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 0 additions & 6 deletions tests/unit/Playground/Post/StatusTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,4 @@ public function it_should_expose_its_status(): void
self::assertSame('published', Status::PUBLISHED->value);
self::assertSame('archived', Status::ARCHIVED->value);
}

/** @test */
public function it_should_return_null_on_invalid_value(): void
{
self::assertNull(Status::tryFrom('foo'));
}
}

0 comments on commit c334b93

Please sign in to comment.