Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
abstractMetrics | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
getPersistence | |
0.00% |
0 / 2 |
|
0.00% |
0 / 1 |
2 | |||
collect | n/a |
0 / 0 |
n/a |
0 / 0 |
0 |
1 | <?php |
2 | |
3 | /** |
4 | * |
5 | * This program is free software; you can redistribute it and/or |
6 | * modify it under the terms of the GNU General Public License |
7 | * as published by the Free Software Foundation; under version 2 |
8 | * of the License (non-upgradable). |
9 | * |
10 | * This program is distributed in the hope that it will be useful, |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
13 | * GNU General Public License for more details. |
14 | * |
15 | * You should have received a copy of the GNU General Public License |
16 | * along with this program; if not, write to the Free Software |
17 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
18 | * |
19 | * Copyright (c) 2018 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT); |
20 | * |
21 | */ |
22 | |
23 | namespace oat\tao\model\metrics\implementations; |
24 | |
25 | use oat\oatbox\service\ConfigurableService; |
26 | |
27 | abstract class abstractMetrics extends ConfigurableService |
28 | { |
29 | public const OPTION_PERSISTENCE = 'persistence'; |
30 | public const OPTION_TTL = 'ttl'; |
31 | |
32 | /** |
33 | * @return \common_persistence_KeyValuePersistence |
34 | * @throws \oat\oatbox\service\exception\InvalidServiceManagerException |
35 | */ |
36 | protected function getPersistence() |
37 | { |
38 | $persistenceId = $this->getOption(self::OPTION_PERSISTENCE); |
39 | return $this->getServiceManager()->get(\common_persistence_Manager::class)->getPersistenceById($persistenceId); |
40 | } |
41 | |
42 | /** |
43 | * Collect values, caches |
44 | * @param bool $force |
45 | * @return mixed |
46 | */ |
47 | abstract public function collect($force = false); |
48 | } |