1
0
mirror of https://github.com/e107inc/e107.git synced 2025-10-14 14:34:51 +02:00
Files
php-e107/vendor/phpunit/php-token-stream/tests/_fixture/source4.php
2018-02-06 03:18:31 -06:00

31 lines
436 B
PHP

<?php
// Declare the interface 'iTemplate'
interface iTemplate
{
public function setVariable($name, $var);
public function
getHtml($template);
}
interface a
{
public function foo();
}
interface b extends a
{
public function baz(Baz $baz);
}
// short desc for class that implement a unique interface
class c implements b
{
public function foo()
{
}
public function baz(Baz $baz)
{
}
}