Use new code style

This commit is contained in:
David Stone
2025-02-07 19:02:33 -07:00
parent 0181024ae1
commit 8433379d90
672 changed files with 37107 additions and 45249 deletions

View File

@ -31,7 +31,7 @@ class Autoloader {
/**
* Static-only class.
*/
private function __construct() {} // end __construct;
private function __construct() {}
/**
* Initializes our custom autoloader
@ -42,7 +42,7 @@ class Autoloader {
*/
public static function init() {
// do nothing now. Composer autoloader does the work.
} // end init;
}
/**
* Checks for unit tests and WP_ULTIMO_DEBUG.
@ -53,7 +53,5 @@ class Autoloader {
public static function is_debug() {
return false; // return wu_is_debug();
} // end is_debug;
} // end class Autoloader;
}
}