| 1 | <?php |
||
| 4 | class PHPClassOf extends PHPClass |
||
| 5 | { |
||
| 6 | |||
| 7 | /** |
||
| 8 | * @var PHPArg |
||
| 9 | */ |
||
| 10 | protected $arg; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param PHPArg $arg |
||
| 14 | */ |
||
| 15 | 9 | public function __construct(PHPArg $arg) |
|
| 20 | |||
| 21 | /** |
||
| 22 | * @return string |
||
| 23 | */ |
||
| 24 | public function __toString() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @return PHPArg |
||
| 31 | */ |
||
| 32 | 6 | public function getArg() |
|
| 36 | } |
||
| 37 | |||
| 38 |