fresh/src/Credentials/CredentialsLoaderInterface.php

10 lines
157 B
PHP

<?php
namespace NoccyLabs\FreshDocker\Credentials;
interface CredentialsLoaderInterface
{
public function getCredentials(string $repo): ?array;
}