-
Notifications
You must be signed in to change notification settings - Fork 2
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
Oliver Wycisk
committed
Jan 10, 2018
1 parent
6d5668a
commit 6b3796e
Showing
10 changed files
with
179 additions
and
15 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# L2Domain controller | ||
|
||
Please forgive me. | ||
|
||
I will write this docs soon! |
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,5 @@ | ||
# Address controller | ||
|
||
Please forgive me. | ||
|
||
I will write this docs soon! |
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,5 @@ | ||
# Device controller | ||
|
||
Please forgive me. | ||
|
||
I will write this docs soon! |
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,5 @@ | ||
# Folder controller | ||
|
||
Please forgive me. | ||
|
||
I will write this docs soon! |
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,43 @@ | ||
# Response | ||
|
||
The `colq2\PhpIPAMClient\Connection\Respose` Object is used to handle the Response from the server. | ||
Also this is the return of the `call` function of the `PhpIPAMClient`. | ||
|
||
The object has 6 attributes: | ||
* code | ||
* success | ||
* message | ||
* data | ||
* time | ||
* body | ||
|
||
## Code | ||
HTTP status code. | ||
|
||
Get: | ||
`$response->getCode()` | ||
|
||
## Success | ||
Determines if the request was successful. | ||
|
||
`$response->isSuccess()` | ||
|
||
## Message | ||
Is only set when a request fails. It contains the error message. | ||
|
||
`$response->getMessage()` | ||
|
||
## Data | ||
Contains the returned data as an array. | ||
|
||
`$response->getData()` | ||
|
||
## Time | ||
Contains how long the server took to handle the request. | ||
|
||
`$response->getTime()` | ||
|
||
## Body | ||
This is the raw body which was sent by the server. It is json encoded. | ||
|
||
`$response->getBody()` |
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,5 @@ | ||
# Section controller | ||
|
||
Please forgive me. | ||
|
||
I will write this docs soon! |
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,5 @@ | ||
# Subnet controller | ||
|
||
Please forgive me. | ||
|
||
I will write this docs soon! |
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,5 @@ | ||
# VLAN controller | ||
|
||
Please forgive me. | ||
|
||
I will write this docs soon! |
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,5 @@ | ||
# VRF controller | ||
|
||
Please forgive me. | ||
|
||
I will write this docs soon! |