13 lines
187 B
PHP
Executable File
13 lines
187 B
PHP
Executable File
<?php
|
|
|
|
namespace Common\Core\Bootstrap;
|
|
|
|
interface BootstrapData
|
|
{
|
|
public function getEncoded(): string;
|
|
|
|
public function init(): self;
|
|
|
|
public function getThemes(): array;
|
|
}
|