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

AuthToken::setCreated()   A

Complexity

Conditions 4
Paths 5

Size

Total Lines 17

Duplication

Lines 17
Ratio 100 %

Importance

Changes 0
Metric Value
dl 17
loc 17
rs 9.7
c 0
b 0
f 0
cc 4
nc 5
nop 1
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