1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php /** * Interface Service. * * @package AmpProject\AmpWP */
namespace AmpProject\AmpWP\Infrastructure;
/** * A conceptual service. * * Splitting the logic up into independent services makes the approach of * assembling a plugin more systematic and scalable and lowers the cognitive * load when the code base increases in size. * * @since 2.0 * @internal */ interface Service {
}
|