notes/src/Common/ReflectedMethod.php
2024-05-27 18:06:56 +00:00

18 lines
521 B
PHP

<?php
namespace Notes\Common;
class ReflectedMethod extends Reflected implements ReflectedInterface
{
public function __construct(
public string $name,
public string $classname,
public false|ReflectedMethodType|\ReflectionNamedType|\ReflectionUnionType|array $type = false,
public bool $isConstructor = false,
public bool $isDestructor = false,
public bool $isAbstract = false,
public array $attributes = [],
public array $parameters = [],
) {}
}