|
@@ -196,7 +196,7 @@ discard block |
|
|
block discarded – undo |
|
196
|
196
|
* id, title, description, availability, condition, price, link, image_link, brand |
|
197
|
197
|
*/ |
|
198
|
198
|
|
|
199
|
|
- $required = ['id', 'availability', 'condition', 'price', 'image_link', 'brand']; |
|
|
199
|
+ $required = [ 'id', 'availability', 'condition', 'price', 'image_link', 'brand' ]; |
|
200
|
200
|
|
|
201
|
201
|
$itemElement->appendChild($this->xml->createElement('id', $item->id)); |
|
202
|
202
|
$itemElement->appendChild($this->xml->createElement('image_link', $item->image_link)); |
|
@@ -221,7 +221,7 @@ discard block |
|
|
block discarded – undo |
|
221
|
221
|
*/ |
|
222
|
222
|
private function setGoogleMerchant(DOMElement $itemElement, object $item, string $title, string $description): void |
|
223
|
223
|
{ |
|
224
|
|
- $required = ['title', 'description']; |
|
|
224
|
+ $required = [ 'title', 'description' ]; |
|
225
|
225
|
|
|
226
|
226
|
$itemElement->appendChild($this->xml->createElement('g:title', $title)); |
|
227
|
227
|
|
Please login to merge, or discard this patch.