File manager - Edit - /var/www/payraty/helpdesk/vendor/roave/better-reflection/src/Reflection/Adapter/ReflectionAttribute.php
Back
<?php declare(strict_types=1); namespace Roave\BetterReflection\Reflection\Adapter; use Attribute; use ReflectionAttribute as CoreReflectionAttribute; use Roave\BetterReflection\Reflection\ReflectionAttribute as BetterReflectionAttribute; /** @template-extends CoreReflectionAttribute<object> */ final class ReflectionAttribute extends CoreReflectionAttribute { public function __construct(private BetterReflectionAttribute $betterReflectionAttribute) { } /** @psalm-mutation-free */ public function getName(): string { return $this->betterReflectionAttribute->getName(); } /** * @return int-mask-of<Attribute::TARGET_*> * * @psalm-mutation-free * @psalm-suppress ImplementedReturnTypeMismatch */ public function getTarget(): int { return $this->betterReflectionAttribute->getTarget(); } /** @psalm-mutation-free */ public function isRepeated(): bool { return $this->betterReflectionAttribute->isRepeated(); } /** @return array<int|string, mixed> */ public function getArguments(): array { return $this->betterReflectionAttribute->getArguments(); } public function newInstance(): object { throw new Exception\NotImplemented('Not implemented'); } /** @return non-empty-string */ public function __toString(): string { return $this->betterReflectionAttribute->__toString(); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings