| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | public function save() : ?string |
||
| 28 | { |
||
| 29 | $result = $this->getClient()->save(); |
||
| 30 | $tags = ['supplier']; |
||
| 31 | |||
| 32 | foreach( $this->getView()->param( 'supplier', [] ) as $entry ) { |
||
| 33 | $tags[] = 'supplier-' . $entry['supplier.id']; |
||
| 34 | } |
||
| 35 | |||
| 36 | $this->getContext()->getCache()->deleteByTags( $tags ); |
||
| 37 | |||
| 38 | return $result; |
||
| 39 | } |
||
| 41 |