11 lines
149 B
PHP
11 lines
149 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KupShop\ComponentsBundle\Interfaces;
|
|
|
|
interface Microdata
|
|
{
|
|
public function initMicrodata(): array;
|
|
}
|