MIF_E31210863/app/Exceptions/OutOfStockException.php

14 lines
179 B
PHP

<?php
namespace App\Exceptions;
use Exception;
class OutOfStockException extends Exception
{
public function report()
{
\Log::debug('The product is out of stock');
}
}