Exemplo n.º 1
0
 protected static function owner()
 {
     if (is_null(self::$owner)) {
         $path = APP_ROOT . '/../apiauth/github_project_owner';
         $owner = trim(file_get_contents($path));
         if ($owner) {
             self::$owner = $owner;
         } else {
             self::$owner = false;
         }
     }
     return self::$owner;
 }