mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-15 07:32:02 +03:00
17 lines
296 B
PHP
17 lines
296 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace ShlinkioTest\Shlink\Core\Util;
|
||
|
|
||
|
use Shlinkio\Shlink\Rest\Entity\ApiKey;
|
||
|
|
||
|
trait ApiKeyHelpersTrait
|
||
|
{
|
||
|
public function provideAdminApiKeys(): iterable
|
||
|
{
|
||
|
yield 'no API key' => [null];
|
||
|
yield 'admin API key' => [new ApiKey()];
|
||
|
}
|
||
|
}
|