11 lines
155 B
PHP
11 lines
155 B
PHP
|
<?php
|
||
|
|
||
|
namespace Rinsvent\RequestBundle\Annotation;
|
||
|
|
||
|
#[\Attribute]
|
||
|
class HeaderKey
|
||
|
{
|
||
|
public function __construct(
|
||
|
public string $key
|
||
|
) {}
|
||
|
}
|