Completed
Push — master ( d917c4...8e6dfe )
by Peter
02:04
created

Namer::_property()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
/**
4
 * This software package is licensed under `AGPL, Commercial` license[s].
5
 *
6
 * @package maslosoft/zamm
7
 * @license AGPL, Commercial
8
 *
9
 * @copyright Copyright (c) Peter Maselkowski <[email protected]>
10
 *
11
 */
12
13
namespace Maslosoft\Zamm;
14
15
use Maslosoft\Zamm\Helpers\InlineWrapper;
16
use Maslosoft\Zamm\Interfaces\SourceAccessorInterface;
17
use ReflectionClass;
18
19
/**
20
 * This simply return names of methods and properties.
21
 * This is helper for IDE's.
22
 * Use this together with @var type hint.
23
 *
24
 * @author Piotr Maselkowski <pmaselkowski at gmail.com>
25
 */
26
class Namer implements SourceAccessorInterface
27
{
28
29
	use Traits\SourceMagic;
30
31
	/**
32
	 * Working class name
33
	 * @var string
34
	 */
35
	protected $className = '';
36
	protected $info = null;
37
38
	/**
39
	 *
40
	 * @var ApiLink
41
	 */
42
	protected $link = null;
43
44
	public function __construct($className = null)
45
	{
46
		$this->className = $className;
47
		$this->info = new ReflectionClass($this->className);
48
		$this->link = new ApiUrl($className);
0 ignored issues
show
Documentation Bug introduced by
It seems like new \Maslosoft\Zamm\ApiUrl($className) of type object<Maslosoft\Zamm\ApiUrl> is incompatible with the declared type object<Maslosoft\Zamm\ApiLink> of property $link.

Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.

Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..

Loading history...
49
	}
50
51
	public function __get($name)
52
	{
53
		// This is to get class name formatted, without invoking property()
54
		if ($name === 'md' || $name === 'html' || $name === 'short')
55
		{
56
			if (!$this->info->hasProperty($name))
57
			{
58
				return (new InlineWrapper($this->_type(), (string) $this->link))->$name;
59
			}
60
		}
61
		return $this->_get($name);
62
	}
63
64
	public function method($name)
65
	{
66
		assert($this->info->hasMethod($name));
67
		$link = $this->link->method($name, $name);
68
		return new InlineWrapper($this->_method($name), $link);
69
	}
70
71
	protected function _method($name)
72
	{
73
		return sprintf('%s::%s()', $this->className, $name);
74
	}
75
76
	public function property($name)
77
	{
78
		assert($this->info->hasProperty($name));
79
		$link = $this->link->property($name);
80
		return new InlineWrapper($this->_property($name), $link);
81
	}
82
83
	protected function _property($name)
84
	{
85
		return sprintf('%s::%s', $this->className, $name);
86
	}
87
88
	public static function __callStatic($name, $arguments)
89
	{
90
		return new InlineWrapper(sprintf('%s', $name));
91
	}
92
93
	protected function _type()
94
	{
95
		return $this->className;
96
	}
97
98
	public function __toString()
99
	{
100
		$link = (string) $this->link;
101
		return (string) new InlineWrapper($this->_type(), $link);
102
	}
103
104
}
105