<?php interface I { public function test($stuff, array $other_stuff); } class A implements I { public function test($stuff_n, array $other_stuff) { print $stuff_n; } } $a = new A(); $a->test('stuff', []);
You have javascript disabled. You will not be able to edit any code.