MessageCachingService::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
namespace JsLocalization\Facades;
3
4
use Illuminate\Support\Facades\Facade;
5
6
/**
7
 * Class MessageCachingService
8
 * @package JsLocalization\Facades
9
 * 
10
 * @method static void refreshCache()
11
 * @method static \DateTime getLastRefreshTimestamp()
12
 * @method static string getMessagesJson(bool $noCache = false)
13
 * @method static void public function refreshCache()
14
 */
15
class MessageCachingService extends Facade
16
{
17 8
    protected static function getFacadeAccessor() {
18 8
        return 'JsLocalizationMessageCachingService';
19
    }
20
}