3v4l.org

run code in 300+ PHP versions simultaneously
<?php abstract class Actions implements Action_Interface { protected $action_type; public function __construct() { $this->testing_stuff(); $this->testing_more_stuff(); } abstract function testing_more_stuff(); } interface Action_Interface { private function testing_stuff(); } class ThisAction extends Actions { protected $action_type = 'testing'; private function testing_more_stuff() { echo "more stuff"; } private function testing_stuff() { echo "just some {$this->action_type} stuff\n"; } } $blah = new ThisAction;
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.7
Fatal error: Access type for interface method Action_Interface::testing_stuff() must be omitted in /in/tRctt on line 17
Process exited with code 255.

preferences:
176.02 ms | 1395 KiB | 36 Q