PluginProbe
UpStream: a Project Management Plugin for WordPress / trunk
UpStream: a Project Management Plugin for WordPress vtrunk
trunk 1.39.0 1.39.1 1.39.2 1.39.3 2.0.7 2.1.0
upstream / vendor / alledia / wordpress-plugin-framework / src / library / Abstract_Service.php

Abstract_Service.php in UpStream: a Project Management Plugin for WordPress trunk, at vendor/alledia/wordpress-plugin-framework/src/library/Abstract_Service.php

31 lines 444 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Allex;
4
5 abstract class Abstract_Service
6 {
7 /**
8 * @var Container
9 */
10 protected $container;
11
12 /**
13 * TextDomain constructor.
14 *
15 * @param Container $container
16 */
17 public function __construct(Container $container)
18 {
19 $this->container = $container;
20 }
21
22 /**
23 * @return Container
24 */
25 public function get_container()
26 {
27 return $this->container;
28 }
29 }
30
31