Skip to content

Commit 35928c2

Browse files
committed
magento-engcom/bulk-api#4 Support for Async operations in WebAPI
- Fixed static tests
1 parent b437162 commit 35928c2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+104
-0
lines changed

app/code/Magento/AsynchronousOperations/Api/Data/AsyncResponseInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* See COPYING.txt for license details.
55
*/
66

7+
declare(strict_types=1);
8+
79
namespace Magento\AsynchronousOperations\Api\Data;
810

911
/**

app/code/Magento/AsynchronousOperations/Api/Data/BulkStatusInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* See COPYING.txt for license details.
55
*/
66

7+
declare(strict_types=1);
8+
79
namespace Magento\AsynchronousOperations\Api\Data;
810

911
/**

app/code/Magento/AsynchronousOperations/Api/Data/DetailedBulkStatusInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* See COPYING.txt for license details.
55
*/
66

7+
declare(strict_types=1);
8+
79
namespace Magento\AsynchronousOperations\Api\Data;
810

911
/**

app/code/Magento/AsynchronousOperations/Api/Data/ItemStatusInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* See COPYING.txt for license details.
55
*/
66

7+
declare(strict_types=1);
8+
79
namespace Magento\AsynchronousOperations\Api\Data;
810

911
/**

app/code/Magento/AsynchronousOperations/Api/Data/OperationStatusInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* See COPYING.txt for license details.
55
*/
66

7+
declare(strict_types=1);
8+
79
namespace Magento\AsynchronousOperations\Api\Data;
810

911
/**

app/code/Magento/AsynchronousOperations/Model/AsyncResponse.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* See COPYING.txt for license details.
55
*/
66

7+
declare(strict_types=1);
8+
79
namespace Magento\AsynchronousOperations\Model;
810

911
use Magento\AsynchronousOperations\Api\Data\AsyncResponseInterface;

app/code/Magento/AsynchronousOperations/Model/BulkOperationsStatus.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* See COPYING.txt for license details.
55
*/
66

7+
declare(strict_types=1);
8+
79
namespace Magento\AsynchronousOperations\Model;
810

911
use Magento\Framework\Exception\NoSuchEntityException;

app/code/Magento/AsynchronousOperations/Model/BulkStatus/Detailed.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* See COPYING.txt for license details.
55
*/
66

7+
declare(strict_types=1);
8+
79
namespace Magento\AsynchronousOperations\Model\BulkStatus;
810

911
use Magento\AsynchronousOperations\Api\Data\DetailedBulkStatusInterface;

app/code/Magento/AsynchronousOperations/Model/BulkStatus/Short.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* See COPYING.txt for license details.
55
*/
66

7+
declare(strict_types=1);
8+
79
namespace Magento\AsynchronousOperations\Model\BulkStatus;
810

911
use Magento\AsynchronousOperations\Api\Data\BulkStatusInterface;

app/code/Magento/AsynchronousOperations/Model/ConfigInterface.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
* See COPYING.txt for license details.
55
*/
66

7+
declare(strict_types=1);
8+
79
namespace Magento\AsynchronousOperations\Model;
810

911
use Magento\Framework\Communication\ConfigInterface as CommunicationConfig;

0 commit comments

Comments
 (0)