Files
github-profile-views-counter/contracts/Exceptions/GitHubProfileViewsCounterThrowableInterface.php
Anton Komarev e4f24b04f7 Add PDO repository (#2)
* Add PDO repository

* Make file storage path configurable

* Name username query property required

* Add special exception class
2020-07-12 18:46:42 +03:00

21 lines
417 B
PHP

<?php
/*
* This file is part of GitHub Profile Views Counter.
*
* (c) Anton Komarev <anton@komarev.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Contracts\Komarev\GitHubProfileViewsCounter;
use Throwable;
interface GitHubProfileViewsCounterThrowableInterface extends Throwable
{
}