From f6c4c1ef3f9c53a17d4c76fe7c5dd81017386df5 Mon Sep 17 00:00:00 2001 From: Alexander Makarov Date: Wed, 14 Aug 2013 13:16:12 +0400 Subject: [PATCH] explained why AR is used in an example for scenarios doc --- docs/guide/model.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/guide/model.md b/docs/guide/model.md index f4c540a..fec7ac3 100644 --- a/docs/guide/model.md +++ b/docs/guide/model.md @@ -143,6 +143,9 @@ class EmployeeController extends \yii\web\Controller } ``` +In the example above we are using [Active Record](active-record.md). For basic form models it's rarely needed to +use scenarios since form model is typically used for a single form. + Validation ----------