Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/cartforge.co/vendor/wikimedia/less.php/lib/Less/Tree/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/cartforge.co/vendor/wikimedia/less.php/lib/Less/Tree/Value.php
<?php
/**
 * @private
 */
class Less_Tree_Value extends Less_Tree {

	public $type = 'Value';
	public $value;

	/**
	 * @param array<Less_Tree> $value
	 */
	public function __construct( $value ) {
		$this->value = $value;
	}

	public function accept( $visitor ) {
		$this->value = $visitor->visitArray( $this->value );
	}

	public function compile( $env ) {
		$ret = [];
		$i = 0;
		foreach ( $this->value as $i => $v ) {
			$ret[] = $v->compile( $env );
		}
		if ( $i > 0 ) {
			return new Less_Tree_Value( $ret );
		}
		return $ret[0];
	}

	/**
	 * @see Less_Tree::genCSS
	 */
	function genCSS( $output ) {
		$len = count( $this->value );
		for ( $i = 0; $i < $len; $i++ ) {
			$this->value[$i]->genCSS( $output );
			if ( $i + 1 < $len ) {
				$output->add( Less_Environment::$_outputMap[','] );
			}
		}
	}

}

Spamworldpro Mini