1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-10 15:09:04 +01:00
psalm/src/Psalm/Storage/HasAttributesInterface.php

16 lines
322 B
PHP
Raw Normal View History

2022-02-24 01:50:05 +01:00
<?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;
}