Skip to content

Commit 845fc5f

Browse files
committed
typos
1 parent aeafb38 commit 845fc5f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
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 = [];
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class Method extends Nette\Object
4848
/** @var array of string */
4949
private $documents = [];
5050

51-
/** @var PhpNamespace */
51+
/** @var PhpNamespace|NULL */
5252
private $namespace;
5353

5454

0 commit comments

Comments
 (0)