Skip to content

Commit

Permalink
import names
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Jan 12, 2020
1 parent ef982e3 commit 16f1156
Show file tree
Hide file tree
Showing 56 changed files with 720 additions and 476 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\PhpDoc;

final class AttributeAwareGenericTagValueNode extends \PHPStan\PhpDocParser\Ast\PhpDoc\GenericTagValueNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\PhpDoc\GenericTagValueNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareGenericTagValueNode extends GenericTagValueNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\PhpDoc;

final class AttributeAwareImplementsTagValueNode extends \PHPStan\PhpDocParser\Ast\PhpDoc\ImplementsTagValueNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\PhpDoc\ImplementsTagValueNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareImplementsTagValueNode extends ImplementsTagValueNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\PhpDoc;

final class AttributeAwareInvalidTagValueNode extends \PHPStan\PhpDocParser\Ast\PhpDoc\InvalidTagValueNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\PhpDoc\InvalidTagValueNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareInvalidTagValueNode extends InvalidTagValueNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\PhpDoc;

final class AttributeAwareMethodTagValueNode extends \PHPStan\PhpDocParser\Ast\PhpDoc\MethodTagValueNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\PhpDoc\MethodTagValueNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareMethodTagValueNode extends MethodTagValueNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\PhpDoc;

final class AttributeAwareMethodTagValueParameterNode extends \PHPStan\PhpDocParser\Ast\PhpDoc\MethodTagValueParameterNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\PhpDoc\MethodTagValueParameterNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareMethodTagValueParameterNode extends MethodTagValueParameterNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@

namespace Rector\AttributeAwarePhpDoc\Ast\PhpDoc;

use PHPStan\PhpDocParser\Ast\PhpDoc\ParamTagValueNode;
use PHPStan\PhpDocParser\Ast\Type\TypeNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareParamTagValueNode extends \PHPStan\PhpDocParser\Ast\PhpDoc\ParamTagValueNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
final class AttributeAwareParamTagValueNode extends ParamTagValueNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;

/**
* @var bool
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@
namespace Rector\AttributeAwarePhpDoc\Ast\PhpDoc;

use PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocChildNode;
use PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwarePhpDocNode extends \PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
final class AttributeAwarePhpDocNode extends PhpDocNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;

/**
* @var PhpDocChildNode[]|AttributeAwareNodeInterface[]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\PhpDoc;

final class AttributeAwarePhpDocTagNode extends \PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocTagNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocTagNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwarePhpDocTagNode extends PhpDocTagNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\PhpDoc;

final class AttributeAwarePhpDocTextNode extends \PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocTextNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\PhpDoc\PhpDocTextNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwarePhpDocTextNode extends PhpDocTextNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\PhpDoc;

final class AttributeAwarePropertyTagValueNode extends \PHPStan\PhpDocParser\Ast\PhpDoc\PropertyTagValueNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\PhpDoc\PropertyTagValueNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwarePropertyTagValueNode extends PropertyTagValueNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\PhpDoc;

final class AttributeAwareReturnTagValueNode extends \PHPStan\PhpDocParser\Ast\PhpDoc\ReturnTagValueNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\PhpDoc\ReturnTagValueNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareReturnTagValueNode extends ReturnTagValueNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\PhpDoc;

final class AttributeAwareTemplateTagValueNode extends \PHPStan\PhpDocParser\Ast\PhpDoc\TemplateTagValueNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\PhpDoc\TemplateTagValueNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareTemplateTagValueNode extends TemplateTagValueNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\PhpDoc;

final class AttributeAwareThrowsTagValueNode extends \PHPStan\PhpDocParser\Ast\PhpDoc\ThrowsTagValueNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\PhpDoc\ThrowsTagValueNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareThrowsTagValueNode extends ThrowsTagValueNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\PhpDoc;

final class AttributeAwareUsesTagValueNode extends \PHPStan\PhpDocParser\Ast\PhpDoc\UsesTagValueNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\PhpDoc\UsesTagValueNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareUsesTagValueNode extends UsesTagValueNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\PhpDoc;

final class AttributeAwareVarTagValueNode extends \PHPStan\PhpDocParser\Ast\PhpDoc\VarTagValueNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\PhpDoc\VarTagValueNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareVarTagValueNode extends VarTagValueNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\Type;

final class AttributeAwareArrayShapeItemNode extends \PHPStan\PhpDocParser\Ast\Type\ArrayShapeItemNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\Type\ArrayShapeItemNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareArrayShapeItemNode extends ArrayShapeItemNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\Type;

final class AttributeAwareArrayShapeNode extends \PHPStan\PhpDocParser\Ast\Type\ArrayShapeNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\Type\ArrayShapeNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareArrayShapeNode extends ArrayShapeNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\Type;

final class AttributeAwareArrayTypeNode extends \PHPStan\PhpDocParser\Ast\Type\ArrayTypeNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\Type\ArrayTypeNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareArrayTypeNode extends ArrayTypeNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@

namespace Rector\AttributeAwarePhpDoc\Ast\Type;

final class AttributeAwareCallableTypeNode extends \PHPStan\PhpDocParser\Ast\Type\CallableTypeNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\Type\CallableTypeNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareCallableTypeNode extends CallableTypeNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;

public function __toString(): string
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\Type;

final class AttributeAwareCallableTypeParameterNode extends \PHPStan\PhpDocParser\Ast\Type\CallableTypeParameterNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\Type\CallableTypeParameterNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareCallableTypeParameterNode extends CallableTypeParameterNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\Type;

final class AttributeAwareGenericTypeNode extends \PHPStan\PhpDocParser\Ast\Type\GenericTypeNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\Type\GenericTypeNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareGenericTypeNode extends GenericTypeNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\Type;

final class AttributeAwareIdentifierTypeNode extends \PHPStan\PhpDocParser\Ast\Type\IdentifierTypeNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\Type\IdentifierTypeNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareIdentifierTypeNode extends IdentifierTypeNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@

namespace Rector\AttributeAwarePhpDoc\Ast\Type;

final class AttributeAwareIntersectionTypeNode extends \PHPStan\PhpDocParser\Ast\Type\IntersectionTypeNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\Type\IntersectionTypeNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareIntersectionTypeNode extends IntersectionTypeNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;

public function __toString(): string
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@

namespace Rector\AttributeAwarePhpDoc\Ast\Type;

final class AttributeAwareNullableTypeNode extends \PHPStan\PhpDocParser\Ast\Type\NullableTypeNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\Type\NullableTypeNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareNullableTypeNode extends NullableTypeNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;

public function __toString(): string
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

namespace Rector\AttributeAwarePhpDoc\Ast\Type;

final class AttributeAwareThisTypeNode extends \PHPStan\PhpDocParser\Ast\Type\ThisTypeNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\Type\ThisTypeNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareThisTypeNode extends ThisTypeNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@

namespace Rector\AttributeAwarePhpDoc\Ast\Type;

final class AttributeAwareUnionTypeNode extends \PHPStan\PhpDocParser\Ast\Type\UnionTypeNode implements \Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface
use PHPStan\PhpDocParser\Ast\Type\UnionTypeNode;
use Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use Rector\BetterPhpDocParser\Contract\PhpDocNode\AttributeAwareNodeInterface;

final class AttributeAwareUnionTypeNode extends UnionTypeNode implements AttributeAwareNodeInterface
{
use \Rector\BetterPhpDocParser\Attributes\Attribute\AttributeTrait;
use AttributeTrait;

/**
* Preserve common format
Expand Down
Loading

0 comments on commit 16f1156

Please sign in to comment.