Ubiquity 2.5.2
php rapid development framework
Loading...
Searching...
No Matches
Resource.php
Go to the documentation of this file.
1<?php
2
4
5
6use Attribute;
9
19#[Attribute(Attribute::TARGET_CLASS | Attribute::TARGET_METHOD)]
21
22 public string $name;
23
28 public function __construct(string $name) {
29 $this->name = $name;
30 }
31
32}
Ubiquity\annotations$BaseAnnotationTrait This class is part of Ubiquity.
Ubiquity\attributes$BaseAttribute This class is part of Ubiquity.
__construct(string $name)
Resource constructor.
Definition Resource.php:28