Implemented color filters to navbar

This commit is contained in:
Kevin Frantz
2018-07-15 08:53:15 +02:00
parent d480467615
commit ae7c8b9278
7 changed files with 83 additions and 47 deletions

View File

@@ -0,0 +1,27 @@
<?php
namespace router\link;
use Doctrine\Common\Collections\ArrayCollection;
/**
*
* @author kevinfrantz
*
*/
final class LinkCollection extends ArrayCollection implements LinkCollectionInterface
{
/**
* @var string
*/
private $name;
public function __construct(string $name){
$this->name = $name;
}
public function getName(): string
{
return $this->name;
}
}