Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
Apply fixes from StyleCI (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewgoslett authored Feb 4, 2017
1 parent c0dcf70 commit 0cbeb8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion phpunit.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php

include __DIR__ . '/vendor/autoload.php';
include __DIR__ . '/vendor/autoload.php';
3 changes: 1 addition & 2 deletions src/GoogleCloudStorageServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class GoogleCloudStorageServiceProvider extends ServiceProvider
*/
public function boot()
{
$factory = $this->app->make('filesystem'); /** @var FilesystemManager $factory */
$factory = $this->app->make('filesystem'); /* @var FilesystemManager $factory */
$factory->extend('gcs', function ($app, $config) {
$storageClient = new StorageClient([
'projectId' => $config['project_id'],
Expand All @@ -29,7 +29,6 @@ public function boot()

return new Filesystem($adapter);
});

}

/**
Expand Down

0 comments on commit 0cbeb8b

Please sign in to comment.