Skip to content

Commit d6f6a62

Browse files
committed
Merge pull request #2 from alkallio/dev
Missing static keyword added
2 parents 01d4275 + 550c13a commit d6f6a62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Client.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ protected static function getHeaders()
8080
* Get API url
8181
* @return string
8282
*/
83-
protected function prepareAPI()
83+
protected static function prepareAPI()
8484
{
8585
if (static::$API !== null) {
8686
return static::$API;
@@ -94,7 +94,7 @@ protected function prepareAPI()
9494
* @param \stdClass|null $additional Additional headers
9595
* @return \stdClass
9696
*/
97-
protected function prepareHeaders(\stdClass $additional = null)
97+
protected static function prepareHeaders(\stdClass $additional = null)
9898
{
9999
if ($additional === null) {
100100
$additional = new \stdClass();

0 commit comments

Comments
 (0)