mirror of
https://github.com/danog/psalm.git
synced 2024-12-16 11:26:55 +01:00
abb1c95b94
Also moved `$custom_metadata` property to trait
12 lines
251 B
PHP
12 lines
251 B
PHP
<?php
|
|
namespace Psalm\Storage;
|
|
|
|
/**
|
|
* @psalm-type _MetadataEntry scalar|scalar[]|scalar[][]|scalar[][][]|scalar[][][][]|scalar[][][][][]
|
|
*/
|
|
trait CustomMetadataTrait
|
|
{
|
|
/** @var array<string,_MetadataEntry> */
|
|
public $custom_metadata = [];
|
|
}
|