PluginProbe
Solid Performance – Your No-Code Caching, Performance, & Page Speed Solution / trunk
Solid Performance – Your No-Code Caching, Performance, & Page Speed Solution vtrunk
2.0.1 trunk 1.0.0 1.1.0 1.2.0 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 1.4.2 1.5.0 1.6.0 1.6.1 1.7.0 1.7.1 1.8.0 1.9.0 2.0.0
solid-performance / src / Performance / Pipelines / Provider.php

Provider.php in Solid Performance – Your No-Code Caching, Performance, & Page Speed Solution trunk, at src/Performance/Pipelines/Provider.php

39 lines 705 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * The provider for all core Page caching related functionality.
4 *
5 * @since 0.1.0
6 *
7 * @package SolidWP\Performance
8 */
9
10 declare( strict_types=1 );
11
12 namespace SolidWP\Performance\Pipelines;
13
14 use SolidWP\Performance\Contracts\Service_Provider;
15 use SolidWP\Performance\StellarWP\Pipeline\Pipeline;
16
17 if ( ! defined( 'ABSPATH' ) ) {
18 exit;
19 }
20
21 /**
22 * The provider for all core Page caching related functionality.
23 *
24 * @since 0.1.0
25 *
26 * @package SolidWP\Performance
27 */
28 final class Provider extends Service_Provider {
29
30 /**
31 * {@inheritdoc}
32 */
33 public function register(): void {
34 $this->container->when( Pipeline::class )
35 ->needs( '$container' )
36 ->give( $this->container );
37 }
38 }
39