[User Error] Uncaught InvalidArgumentException: Injected property name does't have a value or callable value source provided

GET /kursy-i-szkolenia/submit?id=128

Line 524 in /home/medicalmomen/ftp/medicalmoment.pl/framework/view/SSViewer.php

Source

515 			$source = self::$globalProperties[$property];  //get the method call
516 		}
517 
518 		if ($source) {
519 			$res = array();
520 
521 			// Look up the value - either from a callable, or from a directly provided value
522 			if (isset($source['callable'])) $res['value'] = call_user_func_array($source['callable'], $params);
523 			elseif (isset($source['value'])) $res['value'] = $source['value'];
524 			else throw new InvalidArgumentException("Injected property $property does't have a value or callable " .
525 				"value source provided");
526 
527 			// If we want to provide a casted object, look up what type object to use
528 			if ($cast) {
529 				// If the handler returns an object, then we don't need to cast.
530 				if(is_object($res['value'])) {

Trace