<?php
interface IEmployee
{
function working();
} interface IDeveloper
{
function Coding();
} class Person implements IEmployee,IDeveloper
{
function working()
{} function Coding(){}
}
?>
<?php
interface IEmployee
{
function working();
} interface IDeveloper
{
function Coding();
} class Person implements IEmployee,IDeveloper
{
function working()
{} function Coding(){}
}
?>