This question could seem dumb but both ($this and self) works to call a static method.
However, what is the correct way?
I personally tend to use "self" because the private static method is like an utility function which doesn't use any object states.
$data = self::calcSoldeNextMonths('sl', $data, $toSub);
$data = $this->calcSoldeNextMonths('sl', $data, $toSub);