//https://www.php.net/manual/en/language.oop5.static.php
self::staticMethod();
class MyClass {
/* Class code here */
public static function my_static_class_method(/* arguments here */) {
/* Static Method Code here */
}
/* More class code here */
}
ClassName::functionName();
$class = get_class($example);
$class::setData('some', 'data');