| 1 | <?php |
||
| 24 | final class ResourceUpdateHandler implements ResourceUpdateHandlerInterface |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * @var ResourceUpdateHandlerInterface |
||
| 28 | */ |
||
| 29 | private $decoratedHandler; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param ResourceUpdateHandlerInterface $decoratedHandler |
||
| 33 | */ |
||
| 34 | public function __construct(ResourceUpdateHandlerInterface $decoratedHandler) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | * |
||
| 42 | * @throws RaceConditionException |
||
| 43 | */ |
||
| 44 | public function handle( |
||
| 55 | } |
||
| 56 |