| Conditions | 5 |
| Paths | 6 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function addPartObject($object,$condition,$value){ |
||
| 21 | $inserted=false;$i=0;$count=sizeof($this->objectsConditionParsers); |
||
| 22 | while(!$inserted && $i<$count){ |
||
| 23 | $objectsConditionParser=$this->objectsConditionParsers[$i]; |
||
| 24 | if($objectsConditionParser->hasParam($value)){ |
||
| 25 | $objectsConditionParser->addObject($object); |
||
| 26 | $inserted=true; |
||
| 27 | } |
||
| 28 | $i++; |
||
| 29 | } |
||
| 30 | if(!$inserted){ |
||
| 31 | $this->getActiveParser()->addPartObject($object, $condition, $value); |
||
| 32 | } |
||
| 33 | } |
||
| 34 | |||
| 55 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.