Passed
Push — master ( 6151ba...17a32e )
by Chauncey
52s queued 10s
created

AuthToken::panic()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 18

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 18
rs 9.6666
c 0
b 0
f 0
cc 2
nc 2
nop 0
1
<?php
2
3
namespace Charcoal\User;
4
5
/**
6
 * Authorization Token
7
 *
8
 * To keep a user logged in using a cookie and a database token.
9
 */
10
class AuthToken extends AbstractAuthToken implements
0 ignored issues
show
Bug introduced by
There is at least one abstract method in this class. Maybe declare it as abstract, or implement the remaining methods: hasProperty, p, properties, property
Loading history...
11
    AuthTokenCookieInterface
12
{
13
    use AuthTokenCookieTrait;
14
}
15