17 lines
354 B
PHP
17 lines
354 B
PHP
<?php
|
|
|
|
namespace Knuckles\Scribe\Attributes;
|
|
|
|
#[\Attribute(\Attribute::TARGET_FUNCTION | \Attribute::TARGET_METHOD | \Attribute::TARGET_CLASS)]
|
|
class Deprecated
|
|
{
|
|
public function __construct(
|
|
public bool|string|null $deprecated = true,
|
|
) {}
|
|
|
|
public function toArray()
|
|
{
|
|
return ['deprecated' => $this->deprecated];
|
|
}
|
|
}
|