Your IP : 216.73.217.100


Current Path : /home/rtorresani/www/vendor/laminas/laminas-permissions-acl/src/Resource/
Upload File :
Current File : //home/rtorresani/www/vendor/laminas/laminas-permissions-acl/src/Resource/GenericResource.php

<?php

declare(strict_types=1);

namespace Laminas\Permissions\Acl\Resource;

use Stringable;

class GenericResource implements ResourceInterface, Stringable
{
    /**
     * Unique id of Resource
     *
     * @var string
     */
    protected $resourceId;

    /**
     * Sets the Resource identifier
     *
     * @param  string $resourceId
     */
    public function __construct($resourceId)
    {
        $this->resourceId = (string) $resourceId;
    }

    /**
     * Defined by ResourceInterface; returns the Resource identifier
     *
     * @return string
     */
    public function getResourceId()
    {
        return $this->resourceId;
    }

    /**
     * Defined by ResourceInterface; returns the Resource identifier
     * Proxies to getResourceId()
     */
    public function __toString(): string
    {
        return $this->getResourceId();
    }
}