Completed
Pull Request — master (#33)
by Andreas
02:03
created

UserWrapperFactory::factory()   B

Complexity

Conditions 4
Paths 4

Size

Total Lines 22
Code Lines 16

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 22
rs 8.9197
cc 4
eloc 16
nc 4
nop 1
1
<?php
2
/**
3
 * Copyright (c)2013-2013 heiglandreas
4
 *
5
 * Permission is hereby granted, free of charge, to any person obtaining a copy
6
 * of this software and associated documentation files (the "Software"), to deal
7
 * in the Software without restriction, including without limitation the rights
8
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
 * copies of the Software, and to permit persons to whom the Software is
10
 * furnished to do so, subject to the following conditions:
11
 *
12
 * The above copyright notice and this permission notice shall be included in
13
 * all copies or substantial portions of the Software.
14
 *
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
 * LIBILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
 * THE SOFTWARE.
22
 *
23
 * @category  HybridAuth
24
 * @author    Andreas Heigl<[email protected]>
25
 * @copyright ©2012-2013 Andreas Heigl
26
 * @license   http://www.opesource.org/licenses/mit-license.php MIT-License
27
 * @version   0.0
28
 * @since     11.01.13
29
 * @link      https://github.com/heiglandreas/HybridAuth
30
 */
31
32
namespace OrgHeiglHybridAuth;
33
34
use SocialConnect\Common\Entity\User;
35
36
/**
37
 * This class works as factory to get an Object implementing the UserInterface
38
 *
39
 * @category  HybridAuth
40
 * @author    Andreas Heigl<[email protected]>
41
 * @copyright ©2012-2013 Andreas Heigl
42
 * @license   http://www.opesource.org/licenses/mit-license.php MIT-License
43
 * @version   0.0
44
 * @since     11.01.13
45
 * @link      https://github.com/heiglandreas/HybridAuth
46
 */
47
class UserWrapperFactory
48
{
49
   /**
50
    * Create the user-Proxy according to the given User-Object
51
    *
52
    * @return UserInterface
53
    * @throws \UnexpectedValueException
54
    */
55
    public function factory($userObject)
56
    {
57
        switch (get_class($userObject))
58
        {
59
            case User::class:
60
                return new SocialAuthuserWrapper($userObject);
61
                break;
0 ignored issues
show
Unused Code introduced by
break is not strictly necessary here and could be removed.

The break statement is not necessary if it is preceded for example by a return statement:

switch ($x) {
    case 1:
        return 'foo';
        break; // This break is not necessary and can be left off.
}

If you would like to keep this construct to be consistent with other case statements, you can safely mark this issue as a false-positive.

Loading history...
62
            case 'Hybridauth\\Entity\\Profile':
63
            case 'Hybridauth\\Entity\\Twitter\\Profile':
64
                $userProxy = new HybridAuthUserWrapper();
65
                $userProxy->setUser($userObject);
66
                return $userProxy;
67
                break;
0 ignored issues
show
Unused Code introduced by
break is not strictly necessary here and could be removed.

The break statement is not necessary if it is preceded for example by a return statement:

switch ($x) {
    case 1:
        return 'foo';
        break; // This break is not necessary and can be left off.
}

If you would like to keep this construct to be consistent with other case statements, you can safely mark this issue as a false-positive.

Loading history...
68
            default:
69
                return new DummyUserWrapper();
70
        }
71
72
        throw new \UnexpectedValueException(sprintf(
73
            'The given Object could not be found. Found "%s" instead',
74
            get_Class($userObject)
75
        ));
76
    }
77
}
78