1 | <?php declare(strict_types=1); |
||
5 | class ClassName implements ClassNameInterface |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | protected $value; |
||
11 | |||
12 | /** |
||
13 | * Construct. |
||
14 | * |
||
15 | * @param string $value |
||
16 | */ |
||
17 | public function __construct(string $value) |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public function getValue(): string |
||
29 | } |
||
30 |