-
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
c0732a2
commit 87549c0
Showing
6 changed files
with
28 additions
and
11 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,15 +10,8 @@ Ajoutez ce package à votre fichier composer.json | |
"repositories": [ | ||
... | ||
{ | ||
"type": "package", | ||
"package": { | ||
"name": "publimmopro/phpsdk", | ||
"version": "0.1.0", | ||
"dist": { | ||
"type": "zip", | ||
"url": "https://github.com/alanpilloud/publimmopro-sdk-php/archive/master.zip" | ||
} | ||
} | ||
"type": "vcs", | ||
"url": "[email protected]:alanpilloud/publimmopro-sdk-php.git" | ||
} | ||
... | ||
], | ||
|
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,3 @@ | ||
# Object Collection | ||
|
||
`PublimmoPro\ObjectCollection` est une classe représentant une liste d'objets obtenue lors d'une recherche. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
use PHPUnit\Framework\TestCase; | ||
use \PublimmoPro\ObjectCollection; | ||
|
||
final class ObjectCollectionTest extends TestCase | ||
{ | ||
private $queryResults; | ||
|
||
public function setUp(): void | ||
{ | ||
$this->queryResults = file_get_contents('resultdata.json'); | ||
} | ||
|
||
public function testConstantsAreCorrectlySet(): void | ||
{ | ||
} | ||
} |