diff options
| author | Marcus Boerger <helly@php.net> | 2004-08-26 22:58:12 +0000 |
|---|---|---|
| committer | Marcus Boerger <helly@php.net> | 2004-08-26 22:58:12 +0000 |
| commit | b1d43bac613e10d173c978b5549577acf396db04 (patch) | |
| tree | b67018842bd3b65bbd89113627bf5d07e461b155 /ext/reflection/tests/bug29828.phpt | |
| parent | dcd10fb7146c7ce9be95bb1438308ca7469635cf (diff) | |
| download | php-git-b1d43bac613e10d173c978b5549577acf396db04.tar.gz | |
Fix test: Classes cannot extend Interfaces
Diffstat (limited to 'ext/reflection/tests/bug29828.phpt')
| -rwxr-xr-x | ext/reflection/tests/bug29828.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/tests/bug29828.phpt b/ext/reflection/tests/bug29828.phpt index 69b627079f..b82be39f98 100755 --- a/ext/reflection/tests/bug29828.phpt +++ b/ext/reflection/tests/bug29828.phpt @@ -8,7 +8,7 @@ interface Bla function bla(); } -class BlaMore extends Bla +class BlaMore implements Bla { function bla() { |
