chamilo/chamilo-lms

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

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

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

namespace Chamilo\CoreBundle\Entity;

interface ResourceIllustrationInterface
{
    public function getResourceNode(): ?ResourceNode;

    public function getDefaultIllustration(int $size): string;
}