We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b58876 commit af636bfCopy full SHA for af636bf
tests/Unit/ProviderTest.php
@@ -2,7 +2,6 @@
2
3
namespace BayAreaWebPro\SimpleCsv\Tests\Unit;
4
5
-use BayAreaWebPro\SimpleCsv\SimpleCsv;
6
use BayAreaWebPro\SimpleCsv\SimpleCsvService;
7
use BayAreaWebPro\SimpleCsv\SimpleCsvServiceProvider;
8
use BayAreaWebPro\SimpleCsv\Tests\TestCase;
@@ -27,7 +26,7 @@ public function test_facade_can_resolve_instance()
27
26
public function test_service_can_be_resolved()
28
{
29
$csv = app('simple-csv');
30
- $this->assertTrue(($csv instanceof SimpleCsvService));
+ $this->assertInstanceOf(SimpleCsvService::class, $csv);
31
}
32
33
public function test_declares_provided()
0 commit comments