Replaced CModel with actual model name

This commit is contained in:
DaSourcerer
2012-10-06 17:50:12 +02:00
parent 4e48424352
commit 79fdf1d8fb

View File

@@ -154,7 +154,7 @@ class <?php echo $this->controllerClass; ?> extends <?php echo $this->baseContro
* Returns the data model based on the primary key given in the GET variable.
* If the data model is not found, an HTTP exception will be raised.
* @param integer $id the ID of the model to be loaded
* @return CModel the loaded model
* @return <?php echo $this->modelClass; ?> the loaded model
* @throws CHttpException
*/
public function loadModel($id)
@@ -167,7 +167,7 @@ class <?php echo $this->controllerClass; ?> extends <?php echo $this->baseContro
/**
* Performs the AJAX validation.
* @param CModel $model the model to be validated
* @param <?php echo $this->modelClass; ?> $model the model to be validated
*/
protected function performAjaxValidation($model)
{