[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * UnicodeDescriptor 5 * 6 * @package Less 7 * @subpackage tree 8 */ 9 class Less_Tree_UnicodeDescriptor extends Less_Tree{ 10 11 public $value; 12 public $type = 'UnicodeDescriptor'; 13 14 public function __construct($value){ 15 $this->value = $value; 16 } 17 18 /** 19 * @see Less_Tree::genCSS 20 */ 21 public function genCSS( $output ){ 22 $output->add( $this->value ); 23 } 24 25 public function compile(){ 26 return $this; 27 } 28 } 29
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Aug 11 10:00:09 2016 | Cross-referenced by PHPXref 0.7.1 |