namespace {
class ClassOne {
private $table = 'myTable';
}
}
namespace private {
class ClassTwo {
public function __construct(\stdClass $data){}
}
}
And basically what I want to do is document a reference to the $table
property from ClassOne
in the __construct
function
I was hoping I could do something like
/**
* @param \stdClass $data Row from the @see \competitionsModel::$table Table
*/