You can call static methods contextually as well ;)
Just create the static method and do not use $this within the method.
If you need access to private / protected contextual methods within the static one, start the method with:
$concrete = new static();
$concrete->publicFunctionYouNeedToCall();