Passed
Push — master ( 7571eb...dad40c )
by Gabriel
35:09 queued 20:08
created

Jar   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 2
Bugs 1 Features 1
Metric Value
wmc 1
eloc 2
c 2
b 1
f 1
dl 0
loc 12
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A instance() 0 3 1
1
<?php
2
3
namespace Nip\Cookie;
4
5
use Bytic\Cookie\CookieJar;
6
7
use function Bytic\Cookie\cookieJar;
8
9
class Jar extends \Bytic\Cookie\CookieJar
10
{
11
12
13
    /**
14
     * Singleton.
15
     *
16
     * @return CookieJar
17
     */
18
    public static function instance()
19
    {
20
        return cookieJar();
21
    }
22
}
23