Completed
Push — master ( ff5cf9...ecc5e7 )
by Tharanga
08:06
created

NewAppUser   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A isExistingUser() 0 3 1
1
<?php
2
/**
3
 * @author Tharanga Kothalawala <[email protected]>
4
 * @date 30-12-2018
5
 */
6
7
namespace TSK\SSO\AppUser;
8
9
/**
10
 * @package TSK\SSO\AppUser
11
 *
12
 * This represents a new user within the client application with their basic data.
13
 */
14
class NewAppUser extends AppUser
15
{
16
    /**
17
     * Returns true if this user is an existing user or newly created one.
18
     *
19
     * @return bool
20
     */
21
    public function isExistingUser()
22
    {
23
        return false;
24
    }
25
}
26