@@ 545-552 (lines=8) @@ | ||
542 | $object->see[]=$this->processLink($matches); |
|
543 | } |
|
544 | ||
545 | protected function isPropertyMethod($method) |
|
546 | { |
|
547 | $methodName=$method->getName(); |
|
548 | return $method->getNumberOfRequiredParameters()===0 |
|
549 | && !$method->isStatic() |
|
550 | && strncasecmp($methodName,'get',3)===0 |
|
551 | && isset($methodName[3]); |
|
552 | } |
|
553 | ||
554 | protected function isEventMethod($method) |
|
555 | { |
|
@@ 554-560 (lines=7) @@ | ||
551 | && isset($methodName[3]); |
|
552 | } |
|
553 | ||
554 | protected function isEventMethod($method) |
|
555 | { |
|
556 | $methodName=$method->getName(); |
|
557 | return strncasecmp($methodName,'on',2)===0 |
|
558 | && !$method->isStatic() |
|
559 | && isset($methodName[2]); |
|
560 | } |
|
561 | ||
562 | protected function getClassFiles($basePath) |
|
563 | { |