src/CoreBundle/Entity/ResourceWithAccessUrlInterface.php
<?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;
}