Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1432004
Paren.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
602 B
Referenced Files
None
Subscribers
None
Paren.php
View Options
<?php
/**
* @private
*/
class
Less_Tree_Paren
extends
Less_Tree
implements
Less_Tree_HasValueProperty
{
/** @var Less_Tree */
public
$value
;
/**
* @param Less_Tree $value
*/
public
function
__construct
(
$value
)
{
$this
->
value
=
$value
;
}
public
function
accept
(
$visitor
)
{
$this
->
value
=
$visitor
->
visitObj
(
$this
->
value
);
}
/**
* @see Less_Tree::genCSS
*/
public
function
genCSS
(
$output
)
{
$output
->
add
(
'('
);
$this
->
value
->
genCSS
(
$output
);
$output
->
add
(
')'
);
}
public
function
compile
(
$env
)
{
return
new
self
(
$this
->
value
->
compile
(
$env
)
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 21:19 (1 d, 2 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b8/10/607481ae23c0c0deadeda7cf42f4
Default Alt Text
Paren.php (602 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment