Skip to content
Snippets Groups Projects
RestaurantExceptionEnum.php 96 B
Newer Older
<?php

namespace App\Exception;

enum RestaurantExceptionEnum: int
{
    case NotFound = 404;
}