15 lines
261 B
PHP
15 lines
261 B
PHP
<?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 () => '';
|
|
}
|
|
} |