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
2222
2323 const TYPE_TRAIT = 'trait ' ;
2424
25- /** @var PhpNamespace */
25+ /** @var PhpNamespace|NULL */
2626 private $ namespace ;
2727
2828 /** @var string */
@@ -37,7 +37,7 @@ class ClassType extends Nette\Object
3737 /** @var bool */
3838 private $ abstract = FALSE ;
3939
40- /** @var strings |string[] */
40+ /** @var string |string[] */
4141 private $ extends = array ();
4242
4343 /** @var string[] */
@@ -250,7 +250,7 @@ public function isAbstract()
250250
251251
252252 /**
253- * @param strings |string[]
253+ * @param string |string[]
254254 * @return self
255255 */
256256 public function setExtends ($ types )
@@ -264,7 +264,7 @@ public function setExtends($types)
264264
265265
266266 /**
267- * @return strings |string[]
267+ * @return string |string[]
268268 */
269269 public function getExtends ()
270270 {
Original file line number Diff line number Diff line change @@ -45,10 +45,10 @@ class Method extends Nette\Object
4545 /** @var bool */
4646 private $ variadic = FALSE ;
4747
48- /** @var array of string */
48+ /** @var string[] */
4949 private $ documents = array ();
5050
51- /** @var PhpNamespace */
51+ /** @var PhpNamespace|NULL */
5252 private $ namespace ;
5353
5454
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class Property extends Nette\Object
2727 /** @var string public|protected|private */
2828 private $ visibility = 'public ' ;
2929
30- /** @var array of string */
30+ /** @var string[] */
3131 private $ documents = array ();
3232
3333
You can’t perform that action at this time.
0 commit comments