Skip to content

Commit

Permalink
[psr-4] Update Rector core test reference (#5410)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Jan 1, 2024
1 parent f4257af commit 5950865
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion src/Application/VersionResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Inspired by https://github.com/composer/composer/blob/master/src/Composer/Composer.php
* See https://github.com/composer/composer/blob/6587715d0f8cae0cd39073b3bc5f018d0e6b84fe/src/Composer/Compiler.php#L208
*
* @see \Rector\Core\Tests\Application\VersionResolverTest
* @see \Rector\Tests\Application\VersionResolverTest
*/
final class VersionResolver
{
Expand Down
2 changes: 1 addition & 1 deletion src/Autoloading/BootstrapFilesIncluder.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
use Webmozart\Assert\Assert;

/**
* @see \Rector\Core\Tests\Autoloading\BootstrapFilesIncluderTest
* @see \Rector\Tests\Autoloading\BootstrapFilesIncluderTest
*/
final class BootstrapFilesIncluder
{
Expand Down
2 changes: 1 addition & 1 deletion src/Configuration/ConfigurationFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use Symfony\Component\Console\Style\SymfonyStyle;

/**
* @see \Rector\Core\Tests\Configuration\ConfigurationFactoryTest
* @see \Rector\Tests\Configuration\ConfigurationFactoryTest
*/
final class ConfigurationFactory
{
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Formatter/ColorConsoleDiffFormatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Inspired by @see https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/master/src/Differ/DiffConsoleFormatter.php to be
* used as standalone class, without need to require whole package by Dariusz Rumiński <dariusz.ruminski@gmail.com>
*
* @see \Rector\Core\Tests\Console\Formatter\ColorConsoleDiffFormatterTest
* @see \Rector\Tests\Console\Formatter\ColorConsoleDiffFormatterTest
*/
final class ColorConsoleDiffFormatter
{
Expand Down
2 changes: 1 addition & 1 deletion src/FileSystem/FileAndDirectoryFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace Rector\Core\FileSystem;

/**
* @see \Rector\Core\Tests\FileSystem\FileAndDirectoryFilter\FileAndDirectoryFilterTest
* @see \Rector\Tests\FileSystem\FileAndDirectoryFilter\FileAndDirectoryFilterTest
*/
final class FileAndDirectoryFilter
{
Expand Down
2 changes: 1 addition & 1 deletion src/FileSystem/FilePathHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Webmozart\Assert\Assert;

/**
* @see \Rector\Core\Tests\FileSystem\FilePathHelperTest
* @see \Rector\Tests\FileSystem\FilePathHelperTest
*/
final class FilePathHelper
{
Expand Down
2 changes: 1 addition & 1 deletion src/FileSystem/FilesFinder.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
use Symfony\Component\Finder\SplFileInfo;

/**
* @see \Rector\Core\Tests\FileSystem\FilesFinder\FilesFinderTest
* @see \Rector\Tests\FileSystem\FilesFinder\FilesFinderTest
*/
final class FilesFinder
{
Expand Down
2 changes: 1 addition & 1 deletion src/FileSystem/InitFilePathsResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Symfony\Component\Finder\SplFileInfo;

/**
* @see \Rector\Core\Tests\FileSystem\InitFilePathsResolver\InitFilePathsResolverTest
* @see \Rector\Tests\FileSystem\InitFilePathsResolver\InitFilePathsResolverTest
*/
final class InitFilePathsResolver
{
Expand Down
2 changes: 1 addition & 1 deletion src/Php/PhpVersionProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use ReflectionClass;

/**
* @see \Rector\Core\Tests\Php\PhpVersionProviderTest
* @see \Rector\Tests\Php\PhpVersionProviderTest
*/
final class PhpVersionProvider
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use Rector\Core\Util\PhpVersionFactory;

/**
* @see \Rector\Core\Tests\Php\PhpVersionResolver\ProjectComposerJsonPhpVersionResolver\ProjectComposerJsonPhpVersionResolverTest
* @see \Rector\Tests\Php\PhpVersionResolver\ProjectComposerJsonPhpVersionResolver\ProjectComposerJsonPhpVersionResolverTest
*/
final class ProjectComposerJsonPhpVersionResolver
{
Expand Down
2 changes: 1 addition & 1 deletion src/PhpParser/Node/BetterNodeFinder.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
use Webmozart\Assert\Assert;

/**
* @see \Rector\Core\Tests\PhpParser\Node\BetterNodeFinder\BetterNodeFinderTest
* @see \Rector\Tests\PhpParser\Node\BetterNodeFinder\BetterNodeFinderTest
*/
final class BetterNodeFinder
{
Expand Down
2 changes: 1 addition & 1 deletion src/PhpParser/Node/NodeFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
use Rector\StaticTypeMapper\StaticTypeMapper;

/**
* @see \Rector\Core\Tests\PhpParser\Node\NodeFactoryTest
* @see \Rector\Tests\PhpParser\Node\NodeFactoryTest
*/
final class NodeFactory
{
Expand Down
2 changes: 1 addition & 1 deletion src/PhpParser/Node/Value/ValueResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
use TypeError;

/**
* @see \Rector\Core\Tests\PhpParser\Node\Value\ValueResolverTest
* @see \Rector\Tests\PhpParser\Node\Value\ValueResolverTest
* @todo make use of constant type of $scope->getType()
*/
final class ValueResolver
Expand Down
2 changes: 1 addition & 1 deletion src/PhpParser/Printer/BetterStandardPrinter.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
use Rector\NodeTypeResolver\Node\AttributeKey;

/**
* @see \Rector\Core\Tests\PhpParser\Printer\BetterStandardPrinterTest
* @see \Rector\Tests\PhpParser\Printer\BetterStandardPrinterTest
*
* @property array<string, array{string, bool, string, null}> $insertionMap
*/
Expand Down
2 changes: 1 addition & 1 deletion src/PhpParser/Printer/FormatPerservingPrinter.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Symfony\Component\Filesystem\Filesystem;

/**
* @see \Rector\Core\Tests\PhpParser\Printer\FormatPerservingPrinterTest
* @see \Rector\Tests\PhpParser\Printer\FormatPerservingPrinterTest
*/
final class FormatPerservingPrinter
{
Expand Down
2 changes: 1 addition & 1 deletion src/Util/FileHasher.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use Rector\Core\Exception\ShouldNotHappenException;

/**
* @see \Rector\Core\Tests\Util\FileHasherTest
* @see \Rector\Tests\Util\FileHasherTest
*/
final class FileHasher
{
Expand Down
2 changes: 1 addition & 1 deletion src/Util/Reflection/PrivatesAccessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use ReflectionProperty;

/**
* @see \Rector\Core\Tests\Util\Reflection\PrivatesAccessorTest
* @see \Rector\Tests\Util\Reflection\PrivatesAccessorTest
*/
final class PrivatesAccessor
{
Expand Down
2 changes: 1 addition & 1 deletion src/Validation/RectorAssert.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Webmozart\Assert\InvalidArgumentException;

/**
* @see \Rector\Core\Tests\Validation\RectorAssertTest
* @see \Rector\Tests\Validation\RectorAssertTest
*/
final class RectorAssert
{
Expand Down

0 comments on commit 5950865

Please sign in to comment.