0byt3m1n1
Path:
/
home
/
kassiope
/
www
/
vendor
/
shoppingfeed
/
php-sdk
/
tests
/
unit
/
Operation
/
[
Home
]
File: BulkOperationMock.php
<?php namespace ShoppingFeed\Sdk\Test\Operation; use ShoppingFeed\Sdk\Hal; use ShoppingFeed\Sdk\Operation\AbstractBulkOperation; class BulkOperationMock extends AbstractBulkOperation { /** * @var array */ private $operation; public function __construct($operations = []) { $this->operations = $operations; } public function eachBatch(callable $callback, $filter = '') { parent::eachBatch($callback, $filter); } public function execute(Hal\HalLink $link) { return 'Called'; } }