3v4l.org

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

preferences:
169.91 ms | 1395 KiB | 36 Q