mirror of
https://github.com/danog/Valinor.git
synced 2024-11-27 04:34:48 +01:00
18 lines
252 B
PHP
18 lines
252 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace CuyZ\Valinor\Tests\Fixture\Attribute;
|
|
|
|
use Attribute;
|
|
|
|
#[Attribute]
|
|
final class AttributeWithArguments
|
|
{
|
|
public function __construct(
|
|
public string $foo,
|
|
public string $bar
|
|
) {
|
|
}
|
|
}
|