mirror of
https://github.com/danog/psalm.git
synced 2025-01-10 23:18:40 +01:00
20 lines
269 B
PHP
20 lines
269 B
PHP
<?php
|
|
namespace Psalm\Storage;
|
|
|
|
class EnumCaseStorage
|
|
{
|
|
/**
|
|
* @var int|string|null
|
|
*/
|
|
public $value;
|
|
|
|
/**
|
|
* @param int|string|null $value
|
|
*/
|
|
public function __construct(
|
|
$value
|
|
) {
|
|
$this->value = $value;
|
|
}
|
|
}
|