Differences From Artifact [3de82224f0]:

To Artifact [c4752f5492]:


27
28
29
30
31
32
33





34
35
36
37
38
39
40
41
42
43
44
		return (count($this->errors) > 0);
	}

	public function &getErrors()
	{
		return $this->errors;
	}






	public function getErrorMessages()
	{
		return;
	}

	public function __invoke($key)
	{
		return \KD2\Form::get($key);
	}
}







>
>
>
>
>











27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
		return (count($this->errors) > 0);
	}

	public function &getErrors()
	{
		return $this->errors;
	}

	public function addError($msg)
	{
		$this->errors[] = $msg;
	}

	public function getErrorMessages()
	{
		return;
	}

	public function __invoke($key)
	{
		return \KD2\Form::get($key);
	}
}