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

Apply fixes from StyleCI #9

Merged
merged 1 commit into from
Feb 4, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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