Completed
Push — master ( 229f12...34816f )
by Artem
02:30
created

PropertyTrait::getters()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php
2
3
//----------------------------------------------------------------------
4
//
5
//  Copyright (C) 2017 Artem Rodygin
6
//
7
//  You should have received a copy of the MIT License along with
8
//  this file. If not, see <http://opensource.org/licenses/MIT>.
9
//
10
//----------------------------------------------------------------------
11
12
namespace Webinarium;
13
14
/**
15
 * Trait to emulate automatic properties.
16
 */
17
trait PropertyTrait
18
{
19
    /** @var array Cached annotations. */
20
    private static $_annotations;
21
22
    /**
23
     * {@inheritdoc}
24
     */
25
    public function __isset($name)
26
    {
27
        if (self::$_annotations === null) {
28
            $this->parseAnnotations();
29
        }
30
31
        return self::$_annotations[$name] ?? null;
32
    }
33
34
    /**
35
     * {@inheritdoc}
36
     */
37 6 View Code Duplication
    public function __get($name)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
38
    {
39 6
        if (self::$_annotations === null) {
40 1
            $this->parseAnnotations();
41
        }
42
43 6
        $access = self::$_annotations[$name] ?? null;
44
45 6
        if ($access !== 'property' && $access !== 'property-read') {
46 2
            throw new \InvalidArgumentException('Unknown read property: ' . $name);
47
        }
48
49 4
        $getters = $this->getters();
50
51 4
        return isset($getters[$name])
52 2
            ? $getters[$name]()
53 4
            : $this->$name;
54
    }
55
56
    /**
57
     * {@inheritdoc}
58
     */
59 7 View Code Duplication
    public function __set($name, $value)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
60
    {
61 7
        if (self::$_annotations === null) {
62
            $this->parseAnnotations();
63
        }
64
65 7
        $access = self::$_annotations[$name] ?? null;
66
67 7
        if ($access !== 'property' && $access !== 'property-write') {
68 3
            throw new \InvalidArgumentException('Unknown write property: ' . $name);
69
        }
70
71 4
        $setters = $this->setters();
72
73 4
        isset($setters[$name])
74 2
            ? $setters[$name]($value)
75 2
            : $this->$name = $value;
76 4
    }
77
78
    /**
79
     * Returns array of custom getters.
80
     *
81
     * @return array
82
     */
83 1
    protected function getters(): array
84
    {
85 1
        return [];
86
    }
87
88
    /**
89
     * Returns array of custom setters.
90
     *
91
     * @return array
92
     */
93 1
    protected function setters(): array
94
    {
95 1
        return [];
96
    }
97
98
    /**
99
     * Parses annotations of the class.
100
     */
101 1
    private function parseAnnotations()
102
    {
103 1
        self::$_annotations = [];
104
105 1
        $class  = new \ReflectionClass($this);
106 1
        $phpdoc = explode("\n", $class->getDocComment());
107
108 1
        foreach ($phpdoc as $line) {
109
            // pattern = "@property[-read|-write] type $identifier"
110 1
            if (preg_match('/@(property|property\-read|property\-write)\W+[A-Za-z][_A-Za-z\d]*\W+\$([A-Za-z][_A-Za-z\d]*)/', $line, $matches)) {
111 1
                self::$_annotations[$matches[2]] = $matches[1];
112
            }
113
        }
114 1
    }
115
}
116