ÿØÿÛ C 

ÿØÿÛ C 

<?php

namespace Knuckles\Scribe\Attributes;

use Attribute;

#[Attribute(Attribute::TARGET_FUNCTION | Attribute::TARGET_METHOD | Attribute::TARGET_CLASS)]
class Unauthenticated
{
    public function toArray()
    {
        return ["authenticated" => false];
    }
}
