efureev/php-support

View on GitHub
src/Interfaces/Prototype.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Php\Support\Interfaces;

/**
 * Interface Prototype
 *
 * @package Php\Support\Interfaces
 */
interface Prototype
{
    public function __clone();
}