Update
This commit is contained in:
15
tests/Fixtures/View/Components/Block.php
Normal file
15
tests/Fixtures/View/Components/Block.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Fixtures\View\Components;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Contracts\View\View;
|
||||
use Illuminate\View\Component;
|
||||
|
||||
class Block extends Component
|
||||
{
|
||||
public function render(): Closure|View|string
|
||||
{
|
||||
return static fn () => '';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user