blob: 15d4eb0ca7af5b7a4dcbda5fdb8128d4ae99adf0 [file] [log] [blame]
<?php
class Author {
public $name;
function __construct() {}//Author
}
/**
* @property Author $author hello this is doc
*/
class Book {
public $Title;
function __construct() {}//Book
function test($hello) {//method
$tmp = $hello;
$this->author;
}
}
/**
* @param Book $hello
* @return Author
*/
function test($hello) {//function
}
?>