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