Passed
Push — main ( b2d943...872826 )
by Daniel
05:35
created

ClassInfoTrait::getRealClassName()   A

Complexity

Conditions 4
Paths 3

Size

Total Lines 21
Code Lines 11

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 7.1753

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 4
eloc 11
nc 3
nop 1
dl 0
loc 21
ccs 5
cts 12
cp 0.4167
crap 7.1753
rs 9.9
c 1
b 0
f 0
1
<?php
2
3
/*
4
 * This file is part of the Silverback API Components Bundle Project
5
 *
6
 * (c) Daniel West <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
declare(strict_types=1);
13
14
namespace Silverback\ApiComponentsBundle\Utility;
15
16
/**
17
 * Retrieves information about a class.
18
 *
19
 * @internal
20
 *
21
 * @author Kévin Dunglas <[email protected]>
22
 */
23
trait ClassInfoTrait
24
{
25
    /**
26
     * Get class name of the given object.
27
     */
28 2
    private function getObjectClass(object $object): string
29
    {
30 2
        return $this->getRealClassName($object::class);
31
    }
32
33
    /**
34
     * Get the real class name of a class name that could be a proxy.
35
     */
36 2
    private function getRealClassName(string $className): string
37
    {
38
        // __CG__: Doctrine Common Marker for Proxy (ODM < 2.0 and ORM < 3.0)
39
        // __PM__: Ocramius Proxy Manager (ODM >= 2.0)
40 2
        $positionCg = strrpos($className, '\\__CG__\\');
41 2
        $positionPm = strrpos($className, '\\__PM__\\');
42
43 2
        if (false === $positionCg && false === $positionPm) {
44 2
            return $className;
45
        }
46
47
        if (false !== $positionCg) {
48
            return substr($className, $positionCg + 8);
49
        }
50
51
        $className = ltrim($className, '\\');
52
53
        return substr(
54
            $className,
55
            8 + $positionPm,
56
            strrpos($className, '\\') - ($positionPm + 8)
57
        );
58
    }
59
}
60