stymiee/php-simple-encryption

View on GitHub
src/Encryption/Interfaces/ICipher.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Encryption\Interfaces;

/**
 * Interface ICipher
 * @package Encryption\Interfaces
 */
interface ICipher
{
    public function getName(): string;
}