forked from zendframework/zend-code
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Var tag pattern now allows var tags without the variable name. This fixes zendframework#128.
- Loading branch information
Showing
4 changed files
with
178 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
/** | ||
* @author Pieter Wiersema <p.wiersema@allcode.nl> | ||
* @copyright Copyright (c) 2011-now AllCode, https://allcode.nl | ||
*/ | ||
|
||
namespace ZendTest\Code\Reflection\TestAsset; | ||
|
||
class TestSampleClass14 | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
public $onlyType; | ||
|
||
/** | ||
* @var string Foo bar | ||
*/ | ||
public $typeDescription; | ||
|
||
/** | ||
* @var string $typeName | ||
*/ | ||
public $typeName; | ||
|
||
/** | ||
* @var string $typeNameDescription Foo bar | ||
*/ | ||
public $typeNameDescription; | ||
} |