mirror of
https://hk.gh-proxy.com/https://github.com/wp-cli/profile-command.git
synced 2025-08-18 06:11:20 +08:00
17 lines
227 B
PHP
17 lines
227 B
PHP
<?php
|
|
|
|
/**
|
|
* Profile the performance of a request to WordPress.
|
|
*/
|
|
class Profile_Command {
|
|
|
|
/**
|
|
* Profile the performance of a request to WordPress.
|
|
*
|
|
* @when before_wp_load
|
|
*/
|
|
public function __invoke() {
|
|
|
|
}
|
|
|
|
}
|