From 690501388ef21cb5b3a9b8bf13b4c58392e0afc4 Mon Sep 17 00:00:00 2001 From: Christian Wenzel Date: Thu, 19 May 2016 22:56:31 +0200 Subject: [PATCH] Fix comments on the code --- Classes/StorageFactory.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Classes/StorageFactory.php b/Classes/StorageFactory.php index 80bc6e9..f6dd2ff 100644 --- a/Classes/StorageFactory.php +++ b/Classes/StorageFactory.php @@ -28,10 +28,10 @@ class StorageFactory protected $credentialProfiles; /** -     * @Flow\Inject -     * @var \TYPO3\Flow\Utility\Environment -     */ -    protected $environment; + * @Flow\Inject + * @var \TYPO3\Flow\Utility\Environment + */ + protected $environment; /** * Creates a new Storage instance and authenticates agains the Google API @@ -66,7 +66,7 @@ public function create($credentialsProfileName = 'default') $temporaryTargetPathAndFilename = $this->environment->getPathToTemporaryDirectory() . 'Flownative_Google_CloudStorage_Temp'; $googleClient = new \Google_Client(); - $googleClient->setClassConfig('Google_Cache_File', 'directory',  $temporaryTargetPathAndFilename); + $googleClient->setClassConfig('Google_Cache_File', 'directory',$temporaryTargetPathAndFilename); $googleClient->setAssertionCredentials($credentials); if ($googleClient->isAccessTokenExpired()) { $googleClient->getRefreshToken();