AuthAction.php
330 Bytes
<?php
/**
* Created by PhpStorm.
* User: Zip
* Date: 15/6/23
* Time: 上午11:32
*/
namespace Action;
class AuthAction extends RootAction
{
public function init()
{
parent::init();
$this->_auth();
$this->_assign('_pid', $this->_pid);
$this->_assign('_token', $this->_token);
}
}