Skip to content

Commit

Permalink
imported fqcn
Browse files Browse the repository at this point in the history
  • Loading branch information
ViniTou committed Sep 16, 2024
1 parent a783029 commit b8d2cb1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 1 addition & 3 deletions src/lib/Rule/PropertyToGetterRector.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@

final class PropertyToGetterRector extends AbstractRector implements ConfigurableRectorInterface
{
/**
* @var array<string, array<string, string>>
*/
/** @var array<string, array<string, string>> */
private array $classPropertyToGetterMap = [];

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

namespace Ibexa\Rector\Tests\Sets\Ibexa50\Fixture;

$request = new \Ibexa\Core\MVC\Symfony\Routing\SimplifiedRequest();
use Ibexa\Core\MVC\Symfony\Routing\SimplifiedRequest;

$request = new SimplifiedRequest();
$pathInfo = $request->pathinfo;

?>
Expand All @@ -11,7 +13,9 @@ $pathInfo = $request->pathinfo;

namespace Ibexa\Rector\Tests\Sets\Ibexa50\Fixture;

$request = new \Ibexa\Core\MVC\Symfony\Routing\SimplifiedRequest();
use Ibexa\Core\MVC\Symfony\Routing\SimplifiedRequest;

$request = new SimplifiedRequest();
$pathInfo = $request->getPathInfo();

?>

0 comments on commit b8d2cb1

Please sign in to comment.