From 7017e720d7860a928561aec82f254bfd906f1c3a Mon Sep 17 00:00:00 2001 From: aymm Date: Thu, 11 Mar 2021 15:56:01 +0000 Subject: [PATCH] Formatting --- src/APnutI.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/APnutI.php b/src/APnutI.php index 7b2e46c..0280c08 100644 --- a/src/APnutI.php +++ b/src/APnutI.php @@ -145,21 +145,21 @@ class APnutI switch ($k) { case 'X-RateLimit-Remaining': $this->rate_limit_remaining = (int)$v; - break; + break; case 'X-RateLimit-Limit': $this->rate_limit = (int)$v; - break; + break; case 'X-RateLimit-Reset': $this->rate_limit_reset = (int)$v; - break; + break; case 'X-OAuth-Scopes': $this->scope = $v; $this->scopes = explode(',', $v); - break; + break; case 'location': case 'Location': $this->redirectTarget = $v; - break; + break; } } return $content;