Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
product_options_update_negative.php
Go to the documentation of this file.
1 <?php
7 return [
8  'missing_product_sku' => [
9  [
10  'title' => 'title',
11  'type' => 'field',
12  'sort_order' => 1,
13  'is_require' => 1,
14  'price' => 10.0,
15  'price_type' => 'fixed',
16  'max_characters' => 10,
17  ],
18  'The ProductSku is empty. Set the ProductSku and try again.',
19  400,
20  ],
21  'invalid_product_sku' => [
22  [
23  'title' => 'title',
24  'type' => 'field',
25  'sort_order' => 1,
26  'is_require' => 1,
27  'price' => 10.0,
28  'price_type' => 'fixed',
29  'product_sku' => 'sku1',
30  'max_characters' => 10,
31  ],
32  'The product that was requested doesn\'t exist. Verify the product and try again.',
33  404,
34  ],
35 ];