We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ee789f commit d3d5d62Copy full SHA for d3d5d62
src/Response.php
@@ -92,7 +92,7 @@ public function getRateLimitRemaining(): int {
92
* @return float Remaining daily credits
93
*/
94
public function getDailyCreditsLeft(): float {
95
- return reset($this->headers['x-foxentry-daily-credits-left']);
+ return reset($this->headers['foxentry-daily-credits-left']);
96
}
97
98
/**
@@ -101,7 +101,7 @@ public function getDailyCreditsLeft(): float {
101
* @return int Daily credits limit
102
103
public function getDailyCreditsLimit(): int {
104
- return reset($this->headers['x-foxentry-daily-credits-limit']);
+ return reset($this->headers['foxentry-daily-credits-limit']);
105
106
107
0 commit comments