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

Commit

Permalink
Made all classes either abstract or final
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewbdaly committed Sep 24, 2020
1 parent d4eb6e1 commit c450712
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/AzureBlobStorageAdapterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Matthewbdaly\LaravelAzureStorage\AzureBlobStorageAdapter;
use MicrosoftAzure\Storage\Blob\BlobRestProxy;

class AzureBlobStorageAdapterTest extends TestCase
final class AzureBlobStorageAdapterTest extends TestCase
{
/** @test */
public function it_correctly_generates_the_file_url()
Expand Down
2 changes: 1 addition & 1 deletion tests/ServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Illuminate\Support\Facades\Storage;

class ServiceProviderTest extends TestCase
final class ServiceProviderTest extends TestCase
{
/** @test */
public function it_sets_up_the_storage_correctly()
Expand Down
8 changes: 4 additions & 4 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

use Orchestra\Testbench\TestCase as BaseTestCase;

class TestCase extends BaseTestCase
abstract class TestCase extends BaseTestCase
{
protected function getPackageProviders($app)
{
return ['Matthewbdaly\LaravelAzureStorage\AzureStorageServiceProvider'];
protected function getPackageProviders($app)
{
return ['Matthewbdaly\LaravelAzureStorage\AzureStorageServiceProvider'];
}

/**
Expand Down

0 comments on commit c450712

Please sign in to comment.