UserOAuth::getProfilePicture()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 1
Metric Value
c 2
b 0
f 1
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace DoS\UserBundle\Model;
4
5
use Sylius\Component\User\Model\UserOAuth as BaseUserOAuth;
6
7
/**
8
 * User OAuth model.
9
 */
10
class UserOAuth extends BaseUserOAuth implements UserOAuthInterface
11
{
12
    /**
13
     * @var string
14
     */
15
    protected $profilePicture;
16
17
    /**
18
     * @return string
19
     */
20
    public function getProfilePicture()
21
    {
22
        return $this->profilePicture;
23
    }
24
25
    /**
26
     * @param string $profilePicture
27
     */
28
    public function setProfilePicture($profilePicture)
29
    {
30
        $this->profilePicture = $profilePicture;
31
    }
32
}
33