<?php abstract class A { abstract public function createApp(); } class B extends A { public static function createApp() { echo "You should not be here\n"; } } (new B)->createApp();
You have javascript disabled. You will not be able to edit any code.