Answers for "PHP 8 Attributes"

PHP
0

PHP 8 Attributes

#[Attribute]
class ListensTo
{
    public string $event;

    public function __construct(string $event)
    {
        $this->event = $event;
    }
}
Posted by: Guest on May-05-2022

Browse Popular Code Answers by Language