| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 33 | public function addMany(Collection $characters) |
||
| 34 | { |
||
| 35 | $function = __FUNCTION__; |
||
| 36 | |||
| 37 | $characters->traverseWith(function (CodepointAssigned $c) use ($function) { |
||
| 38 | $this->logMethodCall($function, [(string)$c->getCodepoint()]); |
||
| 39 | }); |
||
| 40 | |||
| 41 | $this->delegate->addMany($characters); |
||
| 42 | $this->notify(); |
||
| 43 | } |
||
| 44 | } |