column = (string) $column; $this->model = $model; parent::__construct(sprintf( "Can't require column '%s' in model '%s'. Column not found.", $column, get_class($model) )); } /** * Get the column name * * @return string */ public function getColumn() { return $this->column; } /** * Get the target model * * @return Model */ public function getModel() { return $this->model; } }