| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 49 | public function save() : ?string |
||
| 50 | { |
||
| 51 | $result = $this->getClient()->save(); |
||
| 52 | $item = $this->getView()->item; |
||
| 53 | |||
| 54 | if( $item->getId() !== null ) |
||
| 55 | { |
||
| 56 | $idtag = 'product-' . $item->getId(); |
||
| 57 | $this->getContext()->getCache()->deleteByTags( array( 'product', $idtag ) ); |
||
| 58 | } |
||
| 59 | |||
| 60 | return $result; |
||
| 61 | } |
||
| 63 |