for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Tool;
use Chamilo\CoreBundle\Entity\Illustration;
class Asset extends AbstractTool implements ToolInterface
{
public function getTitle(): string
return 'asset';
}
public function getCategory(): string
return 'admin';
public function getLink(): string
return '/';
public function getIcon(): string
public function getResourceTypes(): ?array
return [
'illustrations' => Illustration::class,
];