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 protected function testing_more_stuff(); } interface Action_Interface { protected function testing_stuff(); } class ThisAction extends Actions { protected $action_type = 'testing'; protected 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/0efo8 on line 17
Process exited with code 255.

preferences:
172.33 ms | 1395 KiB | 36 Q