From eab913d0bb01888379d8511c9deb58c9085e8513 Mon Sep 17 00:00:00 2001
From: Benjamin Crozat <benjamin@croz.at>
Date: Mon, 26 Sep 2016 08:57:10 +0200
Subject: [PATCH] Clean up

---
 src/ServiceProvider.php | 3 +--
 tests/TestCase.php      | 4 ++--
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/ServiceProvider.php b/src/ServiceProvider.php
index fae7c9a..559410f 100644
--- a/src/ServiceProvider.php
+++ b/src/ServiceProvider.php
@@ -6,9 +6,8 @@
 use League\Flysystem\Filesystem;
 use Dropbox\Client as DropboxClient;
 use League\Flysystem\Dropbox\DropboxAdapter;
-use Illuminate\Support\ServiceProvider as BaseServiceProvider;
 
-class ServiceProvider extends BaseServiceProvider
+class ServiceProvider extends \Illuminate\Support\ServiceProvider
 {
     /**
      * Bootstrap the application services.
diff --git a/tests/TestCase.php b/tests/TestCase.php
index ec719c7..2218b1a 100644
--- a/tests/TestCase.php
+++ b/tests/TestCase.php
@@ -5,7 +5,7 @@ abstract class TestCase extends Orchestra\Testbench\TestCase
     /**
      * Define environment setup.
      *
-     * @param  \Illuminate\Foundation\Application  $app
+     * @param  \Illuminate\Foundation\Application $app
      * @return void
      */
     protected function getEnvironmentSetUp($app)
@@ -20,7 +20,7 @@ protected function getEnvironmentSetUp($app)
     /**
      * Get package providers.
      *
-     * @param  \Illuminate\Foundation\Application  $app
+     * @param  \Illuminate\Foundation\Application $app
      *
      * @return array
      */