1 | <?php |
||
7 | abstract class CommonModuleBaseService |
||
8 | { |
||
9 | /** @var \Gnf\db\base */ |
||
10 | protected $db; |
||
11 | /** @var string */ |
||
12 | protected $connection_group_name; |
||
13 | |||
14 | /** @return static */ |
||
15 | public static function getMasterInstance() |
||
21 | |||
22 | /** @return static */ |
||
23 | public static function getDefaultInstance() |
||
29 | |||
30 | public function __construct(string $connection_group_name) |
||
36 | } |
||
37 |