1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php /** * Class AMP_CLI_Namespace. * * Command namespace that regroups all AMP CLI commands. * * @package AMP */
use WP_CLI\Dispatcher\CommandNamespace;
/** * Interacts with the AMP plugin. * * @since 1.3.0 * @internal */ final class AMP_CLI_Namespace extends CommandNamespace {
}
|