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

14 lines
141 B
PHP
Raw Normal View History

2022-10-03 11:32:15 +02:00
<?php
namespace Psalm\Storage;
/**
* @psalm-immutable
*/
trait ImmutableNonCloneableTrait
{
private function __clone()
{
}
}