コード例 #1
0
ファイル: AtRuleSet.php プロジェクト: gabrielrosset/moodle
 public function __construct($sType, $sArgs = '', $iLineNo = 0)
 {
     parent::__construct($iLineNo);
     $this->sType = $sType;
     $this->sArgs = $sArgs;
 }
コード例 #2
0
ファイル: AtRuleSet.php プロジェクト: engbanna/RTLer
 public function __construct($sType, $sArgs = '')
 {
     parent::__construct();
     $this->sType = $sType;
     $this->sArgs = $sArgs;
 }
コード例 #3
0
ファイル: DeclarationBlock.php プロジェクト: jubinpatel/horde
 public function __construct()
 {
     parent::__construct();
     $this->aSelectors = array();
 }
コード例 #4
0
 public function __construct($iLineNo = 0)
 {
     parent::__construct($iLineNo);
     $this->aSelectors = array();
 }