ConfigCachingService::getFacadeAccessor()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 3
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
crap 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
}