This commit is contained in:
thinkphp
2016-11-17 22:25:38 +08:00

View File

@@ -20,9 +20,13 @@ class Controller
{ {
use \traits\controller\Jump; use \traits\controller\Jump;
// 视图类实例 /**
* @var \think\View 视图类实例
*/
protected $view; protected $view;
// Request实例 /**
* @var \think\Request Request实例
*/
protected $request; protected $request;
// 验证失败是否抛出异常 // 验证失败是否抛出异常
protected $failException = false; protected $failException = false;