CommentFactory.php
302 Bytes
<?php
declare(strict_types=1);
namespace ACP\ListScreenFactory;
use AC;
use AC\ListScreen;
use ACP\ListScreen\Comment;
class CommentFactory extends AC\ListScreenFactory\CommentFactory
{
protected function create_list_screen(string $key): ListScreen
{
return new Comment();
}
}