Changeset 32020
- Timestamp:
- 02/09/11 10:58:31 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfProjectAnalyserPlugin/branches/1.4/lib/objects/paInterface.class.php
r32012 r32020 146 146 //Ignore herited method that was not redeclared 147 147 if($this->getName()==$method->class){ 148 $paMethod=new paMethod($this,$method->getName()); 149 $paMethod->setDocComment($method->getDocComment()); 150 $paMethod->process(); 151 $paMethods[] = $paMethod; 148 if(!($method->getName()=='configure' && ($method->getEndLine()-$method->getStartLine())==2)){//Empty configure() generated by Propel in form 149 $paMethod=new paMethod($this,$method->getName()); 150 $paMethod->setDocComment($method->getDocComment()); 151 $paMethod->process(); 152 $paMethods[] = $paMethod; 153 } 152 154 } 153 155 }