Code formatting

This commit is contained in:
Anton Terekhov
2011-10-13 14:55:06 +04:00
parent 642c5909aa
commit 3ebfac9db4
12 changed files with 92 additions and 86 deletions

View File

@ -17,6 +17,7 @@
abstract class AjaxAction extends Action
{
public $data = 1;
protected $encode = true;
function __construct()

View File

@ -12,8 +12,11 @@
class PagerAction extends Action
{
public $page = 1;
public $last_page = 1;
protected $offset = 0;
protected $limit;
public function __construct($limit = 20)

1
cache/CacheKey.php vendored
View File

@ -21,6 +21,7 @@ class CacheKey
* @var CacheKey
*/
protected $key;
protected $expire = 0;
/**

1
cache/Cacher.php vendored
View File

@ -19,7 +19,6 @@ class Cacher
*/
static protected $caches = array();
static public function get($cacher, $config = null)
{
if (!isset(self::$caches[$cacher])) {

View File

@ -13,7 +13,9 @@ class Captcha
{
protected $font_size = 38;
protected $width = 200;
protected $height = 70;