Skip to content
This repository has been archived by the owner on Mar 22, 2019. It is now read-only.

Commit

Permalink
Merge pull request #7 from arloopa/analysis-8brY4a
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
mhamlet authored Feb 20, 2017
2 parents 1014512 + 930c2cd commit 77e017d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Vuforia/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public function delete(string $path, $body = null): ResponseInterface
* @param string $method
* @param string $path
* @param string $body
* @return ResponseInterface
*
* @throws AuthenticationFailureException
* @throws BadImageException
* @throws DateRangeErrorException
Expand All @@ -119,6 +119,8 @@ public function delete(string $path, $body = null): ResponseInterface
* @throws TargetNameExistException
* @throws TargetStatusProcessingException
* @throws UnknownTargetException
*
* @return ResponseInterface
*/
private function call($method, string $path, $body = null): ResponseInterface
{
Expand All @@ -135,7 +137,7 @@ private function call($method, string $path, $body = null): ResponseInterface
$headers = array();

$date = new DateTime('now', new DateTimeZone('GMT'));
$headers['Date'] = $date->format('D, d M Y H:i:s') . ' GMT';
$headers['Date'] = $date->format('D, d M Y H:i:s').' GMT';

$headers['Content-Type'] = 'application/json';

Expand Down

0 comments on commit 77e017d

Please sign in to comment.