@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | /** |
| 138 | - * @return \Requests_Response |
|
| 138 | + * @return boolean |
|
| 139 | 139 | * @throws \Requests_Exception |
| 140 | 140 | */ |
| 141 | 141 | protected function post() |
@@ -172,7 +172,7 @@ discard block |
||
| 172 | 172 | } |
| 173 | 173 | |
| 174 | 174 | /** |
| 175 | - * @return \Requests_Response |
|
| 175 | + * @return boolean |
|
| 176 | 176 | * @throws \Requests_Exception |
| 177 | 177 | */ |
| 178 | 178 | protected function get() |
@@ -204,6 +204,9 @@ discard block |
||
| 204 | 204 | * @param string |
| 205 | 205 | * @param string |
| 206 | 206 | * @param string |
| 207 | + * @param string $xmlPayload |
|
| 208 | + * @param string $logMessage |
|
| 209 | + * @param string $key |
|
| 207 | 210 | * @return self |
| 208 | 211 | */ |
| 209 | 212 | protected function logPayloadMessage($xmlPayload, $logMessage, $key) |
@@ -432,6 +432,8 @@ discard block |
||
| 432 | 432 | |
| 433 | 433 | /** |
| 434 | 434 | * Serialize the chain order node. |
| 435 | + * @param string $node |
|
| 436 | + * @param string|null $value |
|
| 435 | 437 | * @return string | null |
| 436 | 438 | */ |
| 437 | 439 | protected function serializeChainedOrder($node, $value) |
@@ -445,6 +447,8 @@ discard block |
||
| 445 | 447 | |
| 446 | 448 | /** |
| 447 | 449 | * Serialize the derived order node. |
| 450 | + * @param string $node |
|
| 451 | + * @param string|null $value |
|
| 448 | 452 | * @return string | null |
| 449 | 453 | */ |
| 450 | 454 | protected function serializeDerivedOrder($node, $value) |
@@ -1,17 +1,17 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | - * |
|
| 5 | - * NOTICE OF LICENSE |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | - * that is bundled with this package in the file LICENSE.md. |
|
| 9 | - * It is also available through the world-wide-web at this URL: |
|
| 10 | - * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | - * |
|
| 12 | - * @copyright Copyright (c) 2013-2015 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | - */ |
|
| 3 | + * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | + * |
|
| 5 | + * NOTICE OF LICENSE |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | + * that is bundled with this package in the file LICENSE.md. |
|
| 9 | + * It is also available through the world-wide-web at this URL: |
|
| 10 | + * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | + * |
|
| 12 | + * @copyright Copyright (c) 2013-2015 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | + */ |
|
| 15 | 15 | |
| 16 | 16 | namespace eBayEnterprise\RetailOrderManagement\Payload\Customer; |
| 17 | 17 | |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | return $this; |
| 163 | 163 | } |
| 164 | 164 | |
| 165 | - /** |
|
| 165 | + /** |
|
| 166 | 166 | * @see IOrderSummary::getTestType() |
| 167 | 167 | */ |
| 168 | 168 | public function getTestType() |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | return $this->testType; |
| 171 | 171 | } |
| 172 | 172 | |
| 173 | - /** |
|
| 173 | + /** |
|
| 174 | 174 | * @see IOrderSummary::setTestType() |
| 175 | 175 | * @codeCoverageIgnore |
| 176 | 176 | */ |
@@ -180,7 +180,7 @@ discard block |
||
| 180 | 180 | return $this; |
| 181 | 181 | } |
| 182 | 182 | |
| 183 | - /** |
|
| 183 | + /** |
|
| 184 | 184 | * @see IOrderSummary::getModifiedTime() |
| 185 | 185 | */ |
| 186 | 186 | public function getModifiedTime() |
@@ -188,7 +188,7 @@ discard block |
||
| 188 | 188 | return $this->modifiedTime; |
| 189 | 189 | } |
| 190 | 190 | |
| 191 | - /** |
|
| 191 | + /** |
|
| 192 | 192 | * @see IOrderSummary::setModifiedTime() |
| 193 | 193 | * @codeCoverageIgnore |
| 194 | 194 | */ |
@@ -224,17 +224,17 @@ discard block |
||
| 224 | 224 | return $this->customerId; |
| 225 | 225 | } |
| 226 | 226 | |
| 227 | - /** |
|
| 228 | - * @see IOrderSummary::setCustomerId() |
|
| 229 | - * @codeCoverageIgnore |
|
| 230 | - */ |
|
| 227 | + /** |
|
| 228 | + * @see IOrderSummary::setCustomerId() |
|
| 229 | + * @codeCoverageIgnore |
|
| 230 | + */ |
|
| 231 | 231 | public function setCustomerId($customerId) |
| 232 | 232 | { |
| 233 | 233 | $this->customerId = $customerId; |
| 234 | 234 | return $this; |
| 235 | 235 | } |
| 236 | 236 | |
| 237 | - /** |
|
| 237 | + /** |
|
| 238 | 238 | * @see IOrderSummary::getCustomerOrderId() |
| 239 | 239 | */ |
| 240 | 240 | public function getCustomerOrderId() |
@@ -296,7 +296,7 @@ discard block |
||
| 296 | 296 | return $this->status; |
| 297 | 297 | } |
| 298 | 298 | |
| 299 | - /** |
|
| 299 | + /** |
|
| 300 | 300 | * @see IOrderSummary::setStatus() |
| 301 | 301 | * @codeCoverageIgnore |
| 302 | 302 | */ |
@@ -314,7 +314,7 @@ discard block |
||
| 314 | 314 | return $this->orderTotal; |
| 315 | 315 | } |
| 316 | 316 | |
| 317 | - /** |
|
| 317 | + /** |
|
| 318 | 318 | * @see IOrderSummary::setOrderTotal() |
| 319 | 319 | * @codeCoverageIgnore |
| 320 | 320 | */ |
@@ -332,7 +332,7 @@ discard block |
||
| 332 | 332 | return $this->source; |
| 333 | 333 | } |
| 334 | 334 | |
| 335 | - /** |
|
| 335 | + /** |
|
| 336 | 336 | * @see IOrderSummary::setSource() |
| 337 | 337 | * @codeCoverageIgnore |
| 338 | 338 | */ |
@@ -360,7 +360,7 @@ discard block |
||
| 360 | 360 | return $this; |
| 361 | 361 | } |
| 362 | 362 | |
| 363 | - /** |
|
| 363 | + /** |
|
| 364 | 364 | * @see IOrderSummary::getType() |
| 365 | 365 | */ |
| 366 | 366 | public function getType() |
@@ -118,7 +118,7 @@ |
||
| 118 | 118 | /** |
| 119 | 119 | * @see eBayEnterprise\RetailOrderManagement\Payload\TPayload::getXmlNamespace |
| 120 | 120 | * @param string |
| 121 | - * @return self |
|
| 121 | + * @return string |
|
| 122 | 122 | */ |
| 123 | 123 | protected function getXmlNamespace() |
| 124 | 124 | { |
@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | - * |
|
| 5 | - * NOTICE OF LICENSE |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | - * that is bundled with this package in the file LICENSE.md. |
|
| 9 | - * It is also available through the world-wide-web at this URL: |
|
| 10 | - * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | - * |
|
| 12 | - * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | - */ |
|
| 3 | + * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | + * |
|
| 5 | + * NOTICE OF LICENSE |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | + * that is bundled with this package in the file LICENSE.md. |
|
| 9 | + * It is also available through the world-wide-web at this URL: |
|
| 10 | + * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | + * |
|
| 12 | + * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | + */ |
|
| 15 | 15 | |
| 16 | 16 | namespace eBayEnterprise\RetailOrderManagement\Payload; |
| 17 | 17 | |
@@ -272,6 +272,10 @@ |
||
| 272 | 272 | . '</DeliveryEstimate>'; |
| 273 | 273 | } |
| 274 | 274 | |
| 275 | + /** |
|
| 276 | + * @param string $nodeName |
|
| 277 | + * @param DateTime $dateTime |
|
| 278 | + */ |
|
| 275 | 279 | protected function serializeDateTime($nodeName, $dateTime) |
| 276 | 280 | { |
| 277 | 281 | return is_null($dateTime) ? "<{$nodeName}/>" : |
@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | - * |
|
| 5 | - * NOTICE OF LICENSE |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | - * that is bundled with this package in the file LICENSE.md. |
|
| 9 | - * It is also available through the world-wide-web at this URL: |
|
| 10 | - * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | - * |
|
| 12 | - * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | - */ |
|
| 3 | + * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | + * |
|
| 5 | + * NOTICE OF LICENSE |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | + * that is bundled with this package in the file LICENSE.md. |
|
| 9 | + * It is also available through the world-wide-web at this URL: |
|
| 10 | + * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | + * |
|
| 12 | + * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | + */ |
|
| 15 | 15 | |
| 16 | 16 | namespace eBayEnterprise\RetailOrderManagement\Payload; |
| 17 | 17 | |
@@ -136,6 +136,7 @@ |
||
| 136 | 136 | * @param DOMNodeList |
| 137 | 137 | * @param IItemIterable |
| 138 | 138 | * @param string |
| 139 | + * @param string $subPayloadMethod |
|
| 139 | 140 | * @return self |
| 140 | 141 | */ |
| 141 | 142 | protected function deserializeItems(DOMNodeList $itemNodes, IItemIterable $iterable, $subPayloadMethod) |
@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | - * |
|
| 5 | - * NOTICE OF LICENSE |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | - * that is bundled with this package in the file LICENSE.md. |
|
| 9 | - * It is also available through the world-wide-web at this URL: |
|
| 10 | - * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | - * |
|
| 12 | - * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | - */ |
|
| 3 | + * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | + * |
|
| 5 | + * NOTICE OF LICENSE |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | + * that is bundled with this package in the file LICENSE.md. |
|
| 9 | + * It is also available through the world-wide-web at this URL: |
|
| 10 | + * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | + * |
|
| 12 | + * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | + */ |
|
| 15 | 15 | |
| 16 | 16 | namespace eBayEnterprise\RetailOrderManagement\Payload; |
| 17 | 17 | |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | /** |
| 59 | 59 | * Get a new, empty item for shipping. |
| 60 | 60 | * |
| 61 | - * @return IShippingItemIterable |
|
| 61 | + * @return IPayload |
|
| 62 | 62 | */ |
| 63 | 63 | public function getEmptyShippingItem() |
| 64 | 64 | { |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | /** |
| 69 | 69 | * Get a new, empty item for in store pick up. |
| 70 | 70 | * |
| 71 | - * @return IInStorePickUpItemIterable |
|
| 71 | + * @return IPayload |
|
| 72 | 72 | */ |
| 73 | 73 | public function getEmptyInStorePickUpItem() |
| 74 | 74 | { |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | /** |
| 79 | 79 | * Get a new, empty payload for an unavailable item. |
| 80 | 80 | * |
| 81 | - * @return IShippingItemIterable |
|
| 81 | + * @return IPayload |
|
| 82 | 82 | */ |
| 83 | 83 | public function getEmptyDetailItem() |
| 84 | 84 | { |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | /** |
| 89 | 89 | * Get a new, empty payload for an unavailable item. |
| 90 | 90 | * |
| 91 | - * @return IShippingItemIterable |
|
| 91 | + * @return IPayload |
|
| 92 | 92 | */ |
| 93 | 93 | public function getEmptyUnavailableItem() |
| 94 | 94 | { |
@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | - * |
|
| 5 | - * NOTICE OF LICENSE |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | - * that is bundled with this package in the file LICENSE.md. |
|
| 9 | - * It is also available through the world-wide-web at this URL: |
|
| 10 | - * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | - * |
|
| 12 | - * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | - */ |
|
| 3 | + * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | + * |
|
| 5 | + * NOTICE OF LICENSE |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | + * that is bundled with this package in the file LICENSE.md. |
|
| 9 | + * It is also available through the world-wide-web at this URL: |
|
| 10 | + * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | + * |
|
| 12 | + * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | + */ |
|
| 15 | 15 | |
| 16 | 16 | namespace eBayEnterprise\RetailOrderManagement\Payload; |
| 17 | 17 | |
@@ -30,7 +30,6 @@ |
||
| 30 | 30 | protected $logger; |
| 31 | 31 | |
| 32 | 32 | /** |
| 33 | - * @param IConfig $config |
|
| 34 | 33 | * @param IPayloadFactory $payloadFactory |
| 35 | 34 | * @param array $messageMapping key/value pairs of config key => payload type |
| 36 | 35 | */ |
@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | - * |
|
| 5 | - * NOTICE OF LICENSE |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | - * that is bundled with this package in the file LICENSE.md. |
|
| 9 | - * It is also available through the world-wide-web at this URL: |
|
| 10 | - * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | - * |
|
| 12 | - * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | - */ |
|
| 3 | + * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | + * |
|
| 5 | + * NOTICE OF LICENSE |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | + * that is bundled with this package in the file LICENSE.md. |
|
| 9 | + * It is also available through the world-wide-web at this URL: |
|
| 10 | + * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | + * |
|
| 12 | + * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | + */ |
|
| 15 | 15 | |
| 16 | 16 | namespace eBayEnterprise\RetailOrderManagement\Payload; |
| 17 | 17 | |
@@ -408,6 +408,8 @@ discard block |
||
| 408 | 408 | * |
| 409 | 409 | * @param string |
| 410 | 410 | * @param mixed |
| 411 | + * @param string $nodeName |
|
| 412 | + * @param double $value |
|
| 411 | 413 | * @return string | null |
| 412 | 414 | */ |
| 413 | 415 | protected function serializeOptionalNumericValue($nodeName, $value) |
@@ -421,6 +423,9 @@ discard block |
||
| 421 | 423 | * @param string |
| 422 | 424 | * @param string |
| 423 | 425 | * @param string |
| 426 | + * @param string $nodeName |
|
| 427 | + * @param string $value |
|
| 428 | + * @param string $description |
|
| 424 | 429 | * @return string | null |
| 425 | 430 | */ |
| 426 | 431 | protected function serializeLineStatusValue($nodeName, $value, $description) |
@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | - * |
|
| 5 | - * NOTICE OF LICENSE |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | - * that is bundled with this package in the file LICENSE.md. |
|
| 9 | - * It is also available through the world-wide-web at this URL: |
|
| 10 | - * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | - * |
|
| 12 | - * @copyright Copyright (c) 2013-2015 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | - */ |
|
| 3 | + * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | + * |
|
| 5 | + * NOTICE OF LICENSE |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | + * that is bundled with this package in the file LICENSE.md. |
|
| 9 | + * It is also available through the world-wide-web at this URL: |
|
| 10 | + * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | + * |
|
| 12 | + * @copyright Copyright (c) 2013-2015 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | + */ |
|
| 15 | 15 | |
| 16 | 16 | namespace eBayEnterprise\RetailOrderManagement\Payload\Validator\Order; |
| 17 | 17 | |
@@ -205,6 +205,7 @@ |
||
| 205 | 205 | * |
| 206 | 206 | * @param string |
| 207 | 207 | * @param string |
| 208 | + * @param string $nodeName |
|
| 208 | 209 | * @return string | null |
| 209 | 210 | */ |
| 210 | 211 | protected function serializeBillingAddressValue($nodeName) |
@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | - * |
|
| 5 | - * NOTICE OF LICENSE |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | - * that is bundled with this package in the file LICENSE.md. |
|
| 9 | - * It is also available through the world-wide-web at this URL: |
|
| 10 | - * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | - * |
|
| 12 | - * @copyright Copyright (c) 2013-2015 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | - * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | - */ |
|
| 3 | + * Copyright (c) 2013-2014 eBay Enterprise, Inc. |
|
| 4 | + * |
|
| 5 | + * NOTICE OF LICENSE |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the Open Software License (OSL 3.0) |
|
| 8 | + * that is bundled with this package in the file LICENSE.md. |
|
| 9 | + * It is also available through the world-wide-web at this URL: |
|
| 10 | + * http://opensource.org/licenses/osl-3.0.php |
|
| 11 | + * |
|
| 12 | + * @copyright Copyright (c) 2013-2015 eBay Enterprise, Inc. (http://www.ebayenterprise.com/) |
|
| 13 | + * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
|
| 14 | + */ |
|
| 15 | 15 | |
| 16 | 16 | namespace eBayEnterprise\RetailOrderManagement\Payload\Validator\Order; |
| 17 | 17 | |