File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
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 = [];
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 @@ -48,7 +48,7 @@ class Method extends Nette\Object
48
48
/** @var array of string */
49
49
private $ documents = [];
50
50
51
- /** @var PhpNamespace */
51
+ /** @var PhpNamespace|NULL */
52
52
private $ namespace ;
53
53
54
54
You can’t perform that action at this time.
0 commit comments