Php
Typed Properties
You should specify property types whenever possible. Don’t use a docblock when you can use typed properties.
UserController.php
namespace App\Http\Controllers;
class UserController extends Controller {
public function __construct(
public string $username,
public bool $status
)
{
...
}
}
