This repository has been archived by the owner on Nov 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/1.1.8: Updated `CHANGELOG.md` and generated documentation Fix for broken tests Added docblock StyleCI fix Fixes #14 Fix for StyleCI Added `Http\UrlParserTrait`, moved methods from `SecureRequestMiddleware` and updated tests.
- Loading branch information
Showing
44 changed files
with
557 additions
and
415 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
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
10 changes: 5 additions & 5 deletions
10
...Elogram/Http/OAuth2/ProviderInterface.rst → ...ttp/OAuth2/Providers/AdapterInterface.rst
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
12 changes: 6 additions & 6 deletions
12
...os/Elogram/Http/OAuth2/LeagueProvider.rst → ...m/Http/OAuth2/Providers/LeagueAdapter.rst
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,10 @@ | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Larabros\\Elogram\\Http\\OAuth2\\Providers | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
.. php:namespace: Larabros\\Elogram\\Http\\OAuth2\\Providers | ||
.. toctree:: | ||
|
||
AdapterInterface | ||
LeagueAdapter |
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,30 @@ | ||
--------------------------------------- | ||
Larabros\\Elogram\\Http\\UrlParserTrait | ||
--------------------------------------- | ||
|
||
.. php:namespace: Larabros\\Elogram\\Http | ||
.. php:trait:: UrlParserTrait | ||
Adds utility classes for parsing parts of a URL. | ||
|
||
.. php:method:: getPath(UriInterface $uri) | ||
Gets the path from a ``UriInterface`` instance after removing the version | ||
prefix. | ||
|
||
:type $uri: UriInterface | ||
:param $uri: | ||
:returns: string | ||
|
||
.. php:method:: getQueryParams(UriInterface $uri, $exclude = ['sig'], $params = []) | ||
Gets the query parameters as an array from a ``UriInterface`` instance. | ||
|
||
:type $uri: UriInterface | ||
:param $uri: | ||
:type $exclude: array | ||
:param $exclude: | ||
:type $params: array | ||
:param $params: | ||
:returns: array |
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 |
---|---|---|
|
@@ -11,3 +11,4 @@ Larabros\\Elogram\\Http | |
OAuth2/index | ||
Response | ||
Sessions/index | ||
UrlParserTrait |
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,20 @@ | ||
--------------------------------------------------- | ||
Larabros\\Elogram\\Repositories\\AbstractRepository | ||
--------------------------------------------------- | ||
|
||
.. php:namespace: Larabros\\Elogram\\Repositories | ||
.. php:class:: AbstractRepository | ||
An abstract repository class. Any new endpoints should extend this class. | ||
|
||
.. php:attr:: client | ||
protected AdapterInterface | ||
|
||
.. php:method:: __construct(AdapterInterface $client) | ||
Creates a new instance of :php:class:`AbstractRepository`. | ||
|
||
:type $client: AdapterInterface | ||
:param $client: |
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
Oops, something went wrong.