File "AttributeContainer.php"
Full Path: /var/www/html/back/vendor/phpdocumentor/reflection/src/phpDocumentor/Reflection/Php/AttributeContainer.php
File size: 245 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
namespace phpDocumentor\Reflection\Php;
interface AttributeContainer
{
public function addAttribute(Attribute $attribute): void;
/** @return Attribute[] */
public function getAttributes(): array;
}