11 lines
129 B
PHP
11 lines
129 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace KupShop\KupShopBundle;
|
|
|
|
interface Arrayable
|
|
{
|
|
public function toArray(): array;
|
|
}
|