for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ubiquity\security\acl\models;
/**
* Ubiquity\security\acl\models$Resource
* This class is part of Ubiquity
*
* @author jc
* @version 1.0.0
*/
class Resource extends AbstractAclPart {
protected $value;
public function __construct(?string $name = null, ?string $value = null) {
parent::__construct($name);
$this->value = $value;
}
* @return mixed
public function getValue() {
return $this->value;
* @param mixed $value
public function setValue($value) {