File "Deprecated.php"

Full Path: /var/www/html/back/vendor/knuckleswtf/scribe/src/Attributes/Deprecated.php
File size: 375 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Knuckles\Scribe\Attributes;

use Attribute;

#[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];
    }
}