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 private function testing_more_stuff(); } interface Action_Interface { 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: Abstract function Actions::testing_more_stuff() cannot be declared private in /in/c32ia on line 11
Process exited with code 255.

preferences:
175.77 ms | 1395 KiB | 36 Q