fresh/src/Credentials/CredentialsLoaderInterface.php

10 lines
157 B
PHP
Raw Normal View History

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