Skip to content

Commit 8a12109

Browse files
committed
typos
1 parent fa2d3be commit 8a12109

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/PhpGenerator/ClassType.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
{

src/PhpGenerator/Method.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

src/PhpGenerator/Property.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)