mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
9 lines
109 B
PHP
9 lines
109 B
PHP
<?php
|
|
|
|
interface A {
|
|
public function foo();
|
|
}
|
|
|
|
class B implements A {
|
|
public function foo($bar) {}
|
|
}
|