11 lines
146 B
PHP
11 lines
146 B
PHP
<?php
|
|
|
|
namespace Encoder;
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
interface StringEncoder
|
|
{
|
|
public function encode(Collection $items): string;
|
|
}
|