chamilo/chamilo-lms

View on GitHub
src/CoreBundle/Entity/ResourceWithAccessUrlInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

/* For licensing terms, see /license.txt */

namespace Chamilo\CoreBundle\Entity;

use Doctrine\Common\Collections\Collection;

interface ResourceWithAccessUrlInterface
{
    public function addAccessUrl(?AccessUrl $url): self;

    /**
     * @return Collection<int, EntityAccessUrlInterface>
     */
    public function getUrls(): Collection;
}