Added login\register as dropbox

This commit is contained in:
Kevin Frantz
2018-07-15 08:59:24 +02:00
parent ae7c8b9278
commit c67078f88f
2 changed files with 5 additions and 3 deletions

View File

@@ -15,7 +15,8 @@ final class LinkCollection extends ArrayCollection implements LinkCollectionInte
*/
private $name;
public function __construct(string $name){
public function __construct(string $name,?array $links = []){
parent::__construct($links);
$this->name = $name;
}