PHP Класс League\FactoryMuffin\Exceptions\FlushMethodNotFoundException

This is thrown when the flush method of a model does not exist. This class extends MethodNotFoundException and ModelException, so you may want to try to catch one of those exceptions instead, if you want to be more general.
Автор: Graham Campbell ([email protected])
Наследование: extends League\FactoryMuffin\Exceptions\MethodNotFoundException
Показать файл Открыть проект

Открытые методы

Метод Описание
__construct ( string $class, string $method, string | null $message = null ) : void Create a new flush method not found exception instance.

Описание методов

__construct() публичный метод

Create a new flush method not found exception instance.
public __construct ( string $class, string $method, string | null $message = null ) : void
$class string The model class name.
$method string The method name.
$message string | null The exception message.
Результат void