Initial commit

This commit is contained in:
2021-04-22 19:26:09 +02:00
commit d673f56c82
19 changed files with 1232 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace Encoder;
use Illuminate\Support\Collection;
interface StringEncoder
{
public function encode(Collection $items): string;
}