mirror of
https://github.com/shlinkio/shlink.git
synced 2026-02-28 12:13:13 +08:00
10 lines
157 B
PHP
10 lines
157 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\Common\Rest;
|
|
|
|
interface DataTransformerInterface
|
|
{
|
|
public function transform($value): array;
|
|
}
|