mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-22 19:22:19 +00:00
12 lines
164 B
PHP
12 lines
164 B
PHP
<?php
|
|
|
|
namespace App\Web\Contracts;
|
|
|
|
interface HasSecondSubNav
|
|
{
|
|
/**
|
|
* @return array<mixed>
|
|
*/
|
|
public function getSecondSubNavigation(): array;
|
|
}
|