Files
php_8/interfaces/author.php

7 lines
101 B
PHP

<?php
interface Author
{
public function setAuthor($authors);
public function getAuthor();
}