| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- /**
- * This file is part of the Nette Framework (https://nette.org)
- * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
- */
- declare(strict_types=1);
- namespace Nette\PhpGenerator;
- use Nette;
- /**
- * PHP Attribute.
- */
- final class Attribute
- {
- use Nette\SmartObject;
- /** @var string */
- private $name;
- /** @var array */
- private $args;
- public function __construct(string $name, array $args)
- {
- if (!Helpers::isNamespaceIdentifier($name)) {
- throw new Nette\InvalidArgumentException("Value '$name' is not valid attribute name.");
- }
- $this->name = $name;
- $this->args = $args;
- }
- public function getName(): string
- {
- return $this->name;
- }
- public function getArguments(): array
- {
- return $this->args;
- }
- }
|