how do i call a static method from another method inside the same class?
$this->staticMethod();
or
$this::staticMethod();
how do i call a static method from another method inside the same class?
$this->staticMethod();
or
$this::staticMethod();
call a static method inside a class
className::staticFunctionName
example
ClassName::staticMethod();