Dozent LMS developer documentation

  • Go To DozentLMS.com
Skip to content
Filter by type:
Search
Browse: Home / Classes / Model / Model::__set()

Model::__set( string $key, mixed $value )

Dynamically set attributes on the model.


Parameters

$key

(string) (Required)

$value

(mixed) (Required)


Return

(void)


Source

File: Model/Model.php

	public function __set( $key, $value ) {
		$this->columns[ $key ] = $value;
	}

Expand full source code Collapse full source code

© 2023, Dozent LMS