mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-17 21:38:22 +01:00
50 lines
2.3 KiB
PHP
50 lines
2.3 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
// see https://confluence.jetbrains.com/display/PhpStorm/PhpStorm+Advanced+Metadata
|
|
namespace PHPSTORM_META;
|
|
|
|
// $container->get(Type::class) → instance of "Type"
|
|
override(\Psr\Container\ContainerInterface::get(0), type(0));
|
|
|
|
// PhpStorm 2019.1 - add argument autocomplete
|
|
// https://blog.jetbrains.com/phpstorm/2019/02/new-phpstorm-meta-php-features/
|
|
expectedArguments(
|
|
\PhpParser\Node::getAttribute(),
|
|
0,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::SCOPE,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::CLASS_NODE,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::CLASS_NAME,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::FILE_INFO,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::METHOD_NAME,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::METHOD_NODE,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::NAMESPACE_NAME,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::NAMESPACE_NODE,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::PARENT_NODE,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::NEXT_NODE,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::PREVIOUS_NODE,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::CURRENT_EXPRESSION,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::PREVIOUS_EXPRESSION,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::USE_NODES,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::START_TOKEN_POSITION
|
|
);
|
|
|
|
expectedArguments(
|
|
\PhpParser\Node::setAttribute(),
|
|
0,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::SCOPE,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::CLASS_NODE,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::CLASS_NAME,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::FILE_INFO,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::METHOD_NAME,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::METHOD_NODE,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::NAMESPACE_NAME,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::NAMESPACE_NODE,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::PARENT_NODE,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::NEXT_NODE,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::PREVIOUS_NODE,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::CURRENT_EXPRESSION,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::PREVIOUS_EXPRESSION,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::USE_NODES,
|
|
\Rector\NodeTypeResolver\Node\AttributeKey::START_TOKEN_POSITION
|
|
);
|