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
파일 보기 프로젝트 열기: zizaco/factory-muff

공개 메소드들

메소드 설명
__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