ConfigCachingService   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 5
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getFacadeAccessor() 0 3 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: andy
5
 * Date: 03.08.15
6
 * Time: 16:40
7
 */
8
9
namespace JsLocalization\Facades;
10
11
12
use Illuminate\Support\Facades\Facade;
13
14
/**
15
 * Class ConfigCachingService
16
 * @package JsLocalization\Facades
17
 *
18
 * @method static void refreshCache()
19
 * @method static \DateTime getLastRefreshTimestamp()
20
 * @method static string getConfigJson(bool $noCache = false)
21
 * @method static bool isDisabled()
22
 * @method static void public function refreshCache()
23
 */
24
class ConfigCachingService extends Facade {
25 8
    protected static function getFacadeAccessor() {
26 8
        return 'JsLocalizationConfigCachingService';
27
    }
28
}