MayMeow/php-encrypt

View on GitHub
src/Factory/CertificateFactoryInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * This file is part of MayMeow/encrypt project
 * Copyright (c) 2017 Charlotta Jung
 *
 * Licensed under The MIT License
 * For full copyright and license information, please see the LICENSE.txt
 * Redistributions of files must retain the above copyright notice.
 * @copyright Copyright (c) Charlotta MayMeow Jung
 * @link      http://maymeow.click
 * @license   http://www.opensource.org/licenses/mit-license.php MIT License
 *
 * @project may-encrypt
 * @file CertificateFactoryInterface.php
 */

namespace MayMeow\Factory;

interface CertificateFactoryInterface
{

    /**
     * @return DomainName
     */
    public function domainName();
}