-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
alanpilloud
committed
Apr 9, 2019
1 parent
a0b9a5e
commit c0732a2
Showing
7 changed files
with
52 additions
and
106 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
### setRange(string $type, int $min, int $max) | ||
|
||
Définit une fourchette de prix, surface ou chambres. | ||
|
||
#### Paramètres | ||
|
||
| Param | Type | Description | | ||
| --- | --- | --- | | ||
| $type | string | Type de valeur, "price", "surface" ou "room" | | ||
| $min | int | Prix minimum désiré | | ||
| $max | int | Prix maximum désiré | | ||
|
||
#### Exemple | ||
|
||
```php | ||
$Client->setRange("price", 2000, 2900); | ||
|
||
// définir plusieurs fourchettes | ||
$Client->setRange("price", 2000, 2900) | ||
->setRange("room", 3, 6); | ||
``` |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters