mirror of
https://github.com/danog/psalm.git
synced 2025-01-10 15:09:04 +01:00
16 lines
322 B
PHP
16 lines
322 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Psalm\Storage;
|
||
|
|
||
|
interface HasAttributesInterface
|
||
|
{
|
||
|
/**
|
||
|
* Returns a list of AttributeStorages with the same order they appear in the AttributeGroups they come from.
|
||
|
*
|
||
|
* @return list<AttributeStorage>
|
||
|
*/
|
||
|
public function getAttributeStorages(): array;
|
||
|
}
|