Skip to content

Commit

Permalink
Merge pull request #202 from gsteel/renovate/all-minor-patch
Browse files Browse the repository at this point in the history
Update dependency vimeo/psalm to ^6.6.1
  • Loading branch information
gsteel authored Feb 16, 2025
2 parents ab094c9 + 3249c37 commit 6cf8782
Show file tree
Hide file tree
Showing 23 changed files with 94 additions and 93 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"psalm/plugin-phpunit": "^0.19.2",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.11.3",
"vimeo/psalm": "^6.5.1"
"vimeo/psalm": "^6.6.1"
},
"autoload": {
"psr-4": {
Expand Down
143 changes: 72 additions & 71 deletions composer.lock

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

2 changes: 1 addition & 1 deletion src/App/Exception/BadMethodCall.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

use BadMethodCallException;

class BadMethodCall extends BadMethodCallException implements InternalError
final class BadMethodCall extends BadMethodCallException implements InternalError
{
}
2 changes: 1 addition & 1 deletion src/App/Exception/InvalidArgument.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

use InvalidArgumentException;

class InvalidArgument extends InvalidArgumentException implements InternalError
final class InvalidArgument extends InvalidArgumentException implements InternalError
{
}
2 changes: 1 addition & 1 deletion test/Integration/Framework/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use Psr\Http\Message\ServerRequestInterface;

/** @psalm-import-type ServiceManagerConfiguration from ServiceManager */
class TestCase extends UnitTestCase
abstract class TestCase extends UnitTestCase
{
private static ContainerInterface|null $container;
private static Application|null $application;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

use function sprintf;

class CalculationRequestInputFilterTest extends TestCase
final class CalculationRequestInputFilterTest extends TestCase
{
private CalculationRequestInputFilter $filter;

Expand Down
2 changes: 1 addition & 1 deletion test/Integration/LazyFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
use function in_array;
use function sprintf;

class LazyFactoryTest extends TestCase
final class LazyFactoryTest extends TestCase
{
/** @var array<array-key, class-string|string> */
protected static array $servicesToIgnore = [
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/BaseRate/BaseRateHistoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

use function assert;

class BaseRateHistoryTest extends TestCase
final class BaseRateHistoryTest extends TestCase
{
private ArrayAdapter $cache;
private BaseRateHistory $history;
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/BaseRate/ChangeListTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use function assert;
use function iterator_to_array;

class ChangeListTest extends TestCase
final class ChangeListTest extends TestCase
{
private static function date(string $date): DateTimeImmutable
{
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/BaseRate/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use function restore_error_handler;
use function set_error_handler;

class ClientTest extends TestCase
final class ClientTest extends TestCase
{
public function testAnErrorIsThrownWhenAReaderCannotBeInstantiatedFromTheGivenXmlString(): void
{
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/Calculator/RecoveryFeeLookupTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Money\Money;
use PHPUnit\Framework\TestCase;

class RecoveryFeeLookupTest extends TestCase
final class RecoveryFeeLookupTest extends TestCase
{
private RecoveryFeeLookup $lookup;

Expand Down
2 changes: 1 addition & 1 deletion test/Unit/Calculator/RequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use Money\Currency;
use PHPUnit\Framework\TestCase;

class RequestTest extends TestCase
final class RequestTest extends TestCase
{
public function testARequestCanBeHydratedFromAnArray(): void
{
Expand Down
2 changes: 1 addition & 1 deletion test/Unit/Calculator/StandardCalculatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
use function assert;
use function round;

class StandardCalculatorTest extends TestCase
final class StandardCalculatorTest extends TestCase
{
private Currency $gpb;
private StandardCalculator $calculator;
Expand Down
Loading

0 comments on commit 6cf8782

Please sign in to comment.