summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/preload_inheritance_error.inc
blob: b0b8274060dfbfb9d625de68f36845ba481c8d03 (plain)
1
2
3
4
5
6
7
8
9
<?php

interface A {
    public function foo();
}

class B implements A {
    public function foo($bar) {}
}