First steps to create ApiKeyMeta

This commit is contained in:
Alejandro Celaya
2021-03-14 08:28:21 +01:00
committed by Alejandro Celaya
parent 60a8d6e986
commit 9b55389538
3 changed files with 35 additions and 12 deletions

View File

@@ -0,0 +1,18 @@
<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\Rest\ApiKey\Model;
final class ApiKeyMeta
{
public static function withKey(string $key): self
{
}
public static function withName(string $key): self
{
}
}