14 lines
193 B
PHP
14 lines
193 B
PHP
<?php
|
|
|
|
namespace think\annotation;
|
|
|
|
use Attribute;
|
|
|
|
#[Attribute(Attribute::TARGET_PROPERTY)]
|
|
final class Inject
|
|
{
|
|
public function __construct(public ?string $abstract = null)
|
|
{
|
|
}
|
|
}
|