| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 33 | public function aroundFieldAccess(FieldAccess $fieldAccess) |
||
| 34 | { |
||
| 35 | $value = $fieldAccess->proceed(); |
||
| 36 | echo "Calling Around Interceptor for ", $fieldAccess, ", value: ", json_encode($value), PHP_EOL; |
||
| 37 | |||
| 38 | // $value = 666; You can change the return value for read/write operations in advice! |
||
| 39 | return $value; |
||
| 40 | } |
||
| 41 | } |
||
| 42 |