File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ class ClassType extends Nette\Object
22
22
23
23
const TYPE_TRAIT = 'trait ' ;
24
24
25
- /** @var PhpNamespace */
25
+ /** @var PhpNamespace|NULL */
26
26
private $ namespace ;
27
27
28
28
/** @var string */
@@ -37,7 +37,7 @@ class ClassType extends Nette\Object
37
37
/** @var bool */
38
38
private $ abstract = FALSE ;
39
39
40
- /** @var strings |string[] */
40
+ /** @var string |string[] */
41
41
private $ extends = array ();
42
42
43
43
/** @var string[] */
@@ -250,7 +250,7 @@ public function isAbstract()
250
250
251
251
252
252
/**
253
- * @param strings |string[]
253
+ * @param string |string[]
254
254
* @return self
255
255
*/
256
256
public function setExtends ($ types )
@@ -264,7 +264,7 @@ public function setExtends($types)
264
264
265
265
266
266
/**
267
- * @return strings |string[]
267
+ * @return string |string[]
268
268
*/
269
269
public function getExtends ()
270
270
{
Original file line number Diff line number Diff line change @@ -45,10 +45,10 @@ class Method extends Nette\Object
45
45
/** @var bool */
46
46
private $ variadic = FALSE ;
47
47
48
- /** @var array of string */
48
+ /** @var string[] */
49
49
private $ documents = array ();
50
50
51
- /** @var PhpNamespace */
51
+ /** @var PhpNamespace|NULL */
52
52
private $ namespace ;
53
53
54
54
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class Property extends Nette\Object
27
27
/** @var string public|protected|private */
28
28
private $ visibility = 'public ' ;
29
29
30
- /** @var array of string */
30
+ /** @var string[] */
31
31
private $ documents = array ();
32
32
33
33
You can’t perform that action at this time.
0 commit comments