20 lines
364 B
PHP
20 lines
364 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace Builder\Interfaces;
|
|
interface MenuInterface
|
|
{
|
|
public function getId(): int;
|
|
|
|
public function getTitle(): string;
|
|
|
|
public function getIcon(): ?string;
|
|
|
|
public function getUri(): string;
|
|
|
|
public function getRoute(): string;
|
|
|
|
public function children(): array;
|
|
|
|
public function toArray(): array;
|
|
|
|
} |