diff --git a/src/Traits/AttributeResolverTrait.php b/src/Traits/AttributeResolverTrait.php new file mode 100644 index 0000000..1215acd --- /dev/null +++ b/src/Traits/AttributeResolverTrait.php @@ -0,0 +1,26 @@ + + * + * This source file is subject to the license that is bundled + * with this source code in the file LICENSE. + */ + +namespace Go\ParserReflection\Traits; + +use Go\ParserReflection\ReflectionAttribute; + +trait AttributeResolverTrait +{ + /** + * @return ReflectionAttribute[] + */ + public function getAttributes(?string $name = null, int $flags = 0): array + { + throw new \Exception('need to be implemented'); + } +} \ No newline at end of file