Skip to content

Commit

Permalink
change annotation prefixes from psalm to phpstan
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmajor committed Apr 5, 2024
1 parent 01418d8 commit 0531f4c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/Formatters/Number/CurrencyFormatterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use PHPUnit\Framework\Attributes\TestDox;

/**
* @psalm-import-type O from NumberFormatterTestCase
* @phpstan-import-type O from NumberFormatterTestCase
*/
final class CurrencyFormatterTest extends NumberFormatterTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Formatters/Number/DecimalFormatterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use PHPUnit\Framework\Attributes\TestDox;

/**
* @psalm-import-type O from NumberFormatterTestCase
* @phpstan-import-type O from NumberFormatterTestCase
*/
final class DecimalFormatterTest extends NumberFormatterTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Formatters/Number/NumberFormatterTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
use Psl\Vec;

/**
* @psalm-type O = array<string, int|bool|string>
* @phpstan-type O = array<string, int|bool|string>
*/
abstract class NumberFormatterTestCase extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Formatters/Number/PercentFormatterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use PHPUnit\Framework\Attributes\TestDox;

/**
* @psalm-import-type O from NumberFormatterTestCase
* @phpstan-import-type O from NumberFormatterTestCase
*/
final class PercentFormatterTest extends NumberFormatterTestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Formatters/Number/UnitFormatterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use PHPUnit\Framework\Attributes\TestDox;

/**
* @psalm-import-type O from NumberFormatterTestCase
* @phpstan-import-type O from NumberFormatterTestCase
*/
final class UnitFormatterTest extends NumberFormatterTestCase
{
Expand Down

0 comments on commit 0531f4c

Please sign in to comment.