Skip to content

Commit

Permalink
Some checks and clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Crozat committed Aug 29, 2016
1 parent 24de57a commit 9274b54
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.DS_Store
/vendor
vendor
Thumbs.db
11 changes: 1 addition & 10 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,8 @@
language: php

php:
- 5.6
- 7.0

env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""

before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source

script:
- composer install
- phpunit
42 changes: 21 additions & 21 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/DropboxDriverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ class DropboxDriverTest extends TestCase
/** @test */
public function it_adds_a_new_storage()
{
$this->assertInstanceOf(Illuminate\Filesystem\FilesystemAdapter::class, Storage::disk('dropbox'));
$this->assertInstanceOf('Illuminate\Filesystem\FilesystemAdapter', Storage::disk('dropbox'));
}
}
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ protected function getEnvironmentSetUp($app)
protected function getPackageProviders($app)
{
return [
BC\Laravel\DropboxDriver\ServiceProvider::class,
'BC\Laravel\DropboxDriver\ServiceProvider',
];
}
}

0 comments on commit 9274b54

Please sign in to comment.