1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php /** * Interface ConfigurationArgument. * * @package AmpProject\AmpWP */
namespace AmpProject\AmpWP;
/** * Constants for the options that the AmpWP plugin supports. * * @package AmpProject\AmpWP * @since 2.0 * @internal */ interface ConfigurationArgument {
const ENABLE_OPTIMIZER = 'enable_optimizer'; const ENABLE_SSR = 'enable_ssr'; }
|