sintonia_webapp/app/Http/Controllers/TestControllerXdebug.php

14 lines
204 B
PHP

<?php
namespace App\Http\Controllers;
use JetBrains\PhpStorm\NoReturn;
class TestControllerXdebug
{
#[NoReturn] public function index(): bool
{
$tmp = 'test';
dd($tmp);
}
}