permissible = $permissible; $this->permission = $permission; $this->attachment = $attachment; $this->value = $value; } /** * @return Permissible */ public function getPermissible(){ return $this->permissible; } /** * @return string */ public function getPermission(){ return $this->permission; } /** * @return PermissionAttachment */ public function getAttachment(){ return $this->attachment; } /** * @return bool */ public function getValue(){ return $this->value; } }