<?php
namespace App\Komma\Components\ComponentType\Types;
use App\Komma\Components\ComponentType\ComponentTypes;
class ProjectCards extends AbstractComponentType
{
public function __construct()
{
//Set an id that corresponds to the ComponentTypes enum
$this->id = ComponentTypes::PROJECT_CARDS;
//Set icon and name
$this->name = 'project-cards';
parent::__construct();
}
}