interface BoardMember
{
function position(); // used to set board position of board member
}
interface Employee
{
function position(); // used to set job title of employee
}
class BusyBoardMember implements Employee, BoardMember {
function position(); // what does this function do? ambiguous unless I
am missing something
}
It is not ambiguous, you should implement the function here.
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php