Skip to content

Commit 1e4cc47

Browse files
authored
Sync with upstream (#6)
1 parent f8a045d commit 1e4cc47

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Libraries/PrestaShopWebservice.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,9 @@ class PrestaShopWebservice
4545
/** @var string PS version */
4646
protected $version;
4747

48-
/** @var array compatible versions of PrestaShop Webservice */
48+
/** @var string Minimal version of PrestaShop to use with this library */
4949
const psCompatibleVersionsMin = '1.4.0.0';
50+
/** @var string Maximal version of PrestaShop to use with this library */
5051
const psCompatibleVersionsMax = '1.7.99.99';
5152

5253
/**
@@ -344,7 +345,7 @@ public function get($options)
344345
$url .= '/' . $options['id'];
345346
}
346347

347-
$params = array('filter', 'display', 'sort', 'limit', 'id_shop', 'id_group_shop', 'schema', 'language', 'date');
348+
$params = array('filter', 'display', 'sort', 'limit', 'id_shop', 'id_group_shop', 'schema', 'language', 'date', 'price');
348349
foreach ($params as $p) {
349350
foreach ($options as $k => $o) {
350351
if (strpos($k, $p) !== false) {

0 commit comments

Comments
 (0)