Protected Attributes |
| $indent = " " |
| $padding = 0 |
| $tokens = array() |
Detailed Description
Definition at line 276 of file cssmin.php.
Constructor & Destructor Documentation
aCssFormatter::__construct |
( |
array |
$tokens, |
|
|
|
$indent = null , |
|
|
|
$padding = null |
|
) |
| |
Constructor.
- Parameters
-
array | $tokens | Array of CssToken |
string | $indent | Indent string [optional] |
integer | $padding | Declaration value padding [optional] |
Definition at line 303 of file cssmin.php.
{
$this->tokens = $tokens;
$this->indent = !is_null($indent) ? $indent : $this->indent;
$this->padding = !is_null($padding) ? $padding : $this->padding;
}
Member Function Documentation
aCssFormatter::__toString |
( |
| ) |
|
|
abstract |
The documentation for this class was generated from the following file:
- common/extensions/ExtendedClientScript/cssmin/cssmin.php