JezK
Edit File: InvalidCastException.php
<?php /** * Exception thrown when an invalid cast type is used. * * @package Framework * @subpackage Exceptions * @since 1.0.0 */ namespace Kirki\Framework\Exceptions; \defined('ABSPATH') || exit; use RuntimeException; class InvalidCastException extends RuntimeException { /** * The model class name. * * @var string * * @since 1.0.0 */ protected $model; /** * The attribute key. * * @var string * * @since 1.0.0 */ protected $key; /** * The cast type. * * @var string * * @since 1.0.0 */ protected $cast_type; /** * Create a new InvalidCastException instance. * * @param object $model The model instance. * @param string $key The attribute key. * @param string $cast_type The cast type. * * @return void * * @since 1.0.0 */ public function __construct($model, $key, $cast_type) { $class_name = \get_class($model); parent::__construct(\sprintf('Invalid cast type for attribute %s on model %s: %s', $key, $class_name, $cast_type)); $this->model = $class_name; $this->key = $key; $this->cast_type = $cast_type; } }