Beispiel #1
0
 public static function doSomeWork()
 {
     echo 'I am doing some work...';
     // This is how to reference a static property from inside the class itself
     self::$shouldCache = true;
 }