Related to #253
See for example:
<?php
class A {
public static function create() {
$obj = new static();
$obj->a_private_method();
}
private function a_private_method() {
}
}
}
(I know it is over simplified, you could rewrite it, but that's just an example without all the boilerplate)