Skip to content

Commit

Permalink
build: fix codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
bbrala committed Jan 24, 2025
1 parent b3b823c commit 6afdd39
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Drupal8/Rector/Deprecation/DBRector.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class DBRector extends AbstractRector implements ConfigurableRectorInterface
protected $optionsArgumentPosition;

/**
* @var \DrupalRector\Drupal8\Rector\ValueObject\DBConfiguration[]
* @var DBConfiguration[]
*/
private array $configuration;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class DrupalServiceRenameRector extends AbstractRector implements ConfigurableRectorInterface
{
/**
* @var \DrupalRector\Drupal8\Rector\ValueObject\DrupalServiceRenameConfiguration[]
* @var DrupalServiceRenameConfiguration[]
*/
protected array $staticArgumentRenameConfigs = [];

Expand Down
2 changes: 1 addition & 1 deletion src/Drupal8/Rector/Deprecation/EntityLoadRector.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
final class EntityLoadRector extends AbstractRector implements ConfigurableRectorInterface
{
/**
* @var \DrupalRector\Drupal8\Rector\ValueObject\EntityLoadConfiguration[]
* @var EntityLoadConfiguration[]
*/
protected array $entityTypes;

Expand Down
2 changes: 1 addition & 1 deletion src/Drupal9/Rector/Deprecation/ExtensionPathRector.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class ExtensionPathRector extends AbstractRector implements ConfigurableRectorInterface
{
/**
* @var \DrupalRector\Drupal9\Rector\ValueObject\ExtensionPathConfiguration[]
* @var ExtensionPathConfiguration[]
*/
private array $configuration;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function getNodeTypes(): array
*
* @throws ShouldNotHappenException
*
* @return array<int, ?\PhpParser\Node\Arg>
* @return array<int, ?Node\Arg>
*/
private function safeArgDestructure(Node\Expr\MethodCall $node): array
{
Expand Down
2 changes: 1 addition & 1 deletion src/Rector/AbstractDrupalCoreRector.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
abstract class AbstractDrupalCoreRector extends AbstractRector implements ConfigurableRectorInterface
{
/**
* @var array|\DrupalRector\Contract\VersionedConfigurationInterface[]
* @var array|VersionedConfigurationInterface[]
*/
protected array $configuration = [];

Expand Down

0 comments on commit 6afdd39

Please sign in to comment.