Skip to content

Commit

Permalink
Applied fixes from StyleCI (#469)
Browse files Browse the repository at this point in the history
  • Loading branch information
overtrue authored Jul 22, 2016
1 parent faf2289 commit 71e8cb0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Card/Card.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public function showQRCode($ticket = null)
'reason' => $response->getReasonPhrase(),
'headers' => $response->getHeaders(),
'body' => strval($response->getBody()),
'url' => self::API_SHOW_QRCODE . '?' . http_build_query($params),
'url' => self::API_SHOW_QRCODE.'?'.http_build_query($params),
];
}

Expand All @@ -153,7 +153,7 @@ public function showQRCode($ticket = null)
*/
public function getQRCodeUrl($ticket)
{
return self::API_SHOW_QRCODE . '?ticket=' . $ticket;
return self::API_SHOW_QRCODE.'?ticket='.$ticket;
}

/**
Expand All @@ -165,7 +165,7 @@ public function getQRCodeUrl($ticket)
*/
public function getAPITicket($refresh = false)
{
$key = self::TICKET_CACHE_PREFIX . $this->getAccessToken()->getAppId();
$key = self::TICKET_CACHE_PREFIX.$this->getAccessToken()->getAppId();

$ticket = $this->getCache()->fetch($key);

Expand Down

0 comments on commit 71e8cb0

Please sign in to comment.