1
0
Fork 0
mirror of https://github.com/archtechx/livewire-access.git synced 2025-12-12 12:24:03 +00:00

implicit access

This commit is contained in:
Samuel Štancl 2021-03-17 17:47:55 +01:00
parent a5e58a14d8
commit 8df06ae2c3
9 changed files with 184 additions and 22 deletions

16
tests/TestCase.php Normal file
View file

@ -0,0 +1,16 @@
<?php
namespace Lean\LivewireAccess\Tests;
use Livewire\LivewireServiceProvider;
use Orchestra\Testbench\TestCase as TestbenchTestCase;
class TestCase extends TestbenchTestCase
{
protected function getPackageProviders($app)
{
return [
LivewireServiceProvider::class,
];
}
}