Completed
Push — master ( 608d8b...b7ceed )
by Tharanga
06:16
created

ExistingAppUser::isExistingUser()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
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 an existing user within the client application with their basic data.
13
 */
14
class ExistingAppUser 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 true;
24
    }
25
}
26