コード例 #1
0
 private function initialize()
 {
     $this->initialized = true;
     $parseResult = DocBlockParser::parsePropertyDocBlock($this->reflector);
     $this->description = $parseResult->description;
     $resolver = new Helper\ParserClassNameResolver($this->getDeclaringType()->getName());
     $this->type = Type::of($parseResult->type, $resolver);
 }