* @license MIT */ abstract class ClassWithAbstractProtectedMethod { /** * @return void */ abstract protected function protectedAbstractMethod(); }