Ubiquity 2.5.2
php rapid development framework
Loading...
Searching...
No Matches
Resource.php
Go to the documentation of this file.
1<?php
3
13
14 protected $value;
15
16 public function __construct(?string $name = null, ?string $value = null) {
17 parent::__construct($name);
18 $this->value = $value;
19 }
20
25 public function getValue() {
26 return $this->value;
27 }
28
33 public function setValue($value) {
34 $this->value = $value;
35 }
36}
37
Ubiquity\security\acl\models$AbastractAclElement This class is part of Ubiquity.
$name
@id @column("name"=>"name","nullable"=>false,"dbType"=>"varchar(100)")
Ubiquity\security\acl\models$Resource This class is part of Ubiquity.
Definition Resource.php:12
__construct(?string $name=null, ?string $value=null)
Definition Resource.php:16