mirror of
https://github.com/danog/Valinor.git
synced 2025-01-10 06:38:24 +01:00
31 lines
447 B
PHP
31 lines
447 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace CuyZ\Valinor\Tests\Fixture\Annotation;
|
||
|
|
||
|
/**
|
||
|
* @Annotation
|
||
|
*/
|
||
|
final class AnnotationWithArguments
|
||
|
{
|
||
|
/** @var mixed[] */
|
||
|
private array $value;
|
||
|
|
||
|
/**
|
||
|
* @param mixed[] $value
|
||
|
*/
|
||
|
public function __construct(array $value)
|
||
|
{
|
||
|
$this->value = $value;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return mixed[]
|
||
|
*/
|
||
|
public function value(): array
|
||
|
{
|
||
|
return $this->value;
|
||
|
}
|
||
|
}
|