1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 13:51:54 +01:00

Fixed PSR-4 warnings

Fixes the following warnings that were emitted by `composer install`:

```
Generating optimized autoload files
Class Psalm\Tests\KeyOfTemplateTest located in ./tests/Template/KeyOfTemplateTest.php does not comply with psr-4 autoloading standard. Skipping.
Class Psalm\Tests\ValueOfTemplateTest located in ./tests/Template/ValueOfTemplateTest.php does not comply with psr-4 autoloading standard. Skipping.
```
This commit is contained in:
Bruce Weirdan 2022-02-17 03:52:07 +02:00
parent 6af3b502df
commit e517295f7e
No known key found for this signature in database
GPG Key ID: CFC3AAB181751B0D
2 changed files with 4 additions and 2 deletions

View File

@ -2,8 +2,9 @@
declare(strict_types=1);
namespace Psalm\Tests;
namespace Psalm\Tests\Template;
use Psalm\Tests\TestCase;
use Psalm\Tests\Traits\InvalidCodeAnalysisTestTrait;
use Psalm\Tests\Traits\ValidCodeAnalysisTestTrait;

View File

@ -2,8 +2,9 @@
declare(strict_types=1);
namespace Psalm\Tests;
namespace Psalm\Tests\Template;
use Psalm\Tests\TestCase;
use Psalm\Tests\Traits\InvalidCodeAnalysisTestTrait;
use Psalm\Tests\Traits\ValidCodeAnalysisTestTrait;