FOF30\Less\Formatter\Classic::property PHP Method

property() public method

Return the code for a property
public property ( string $name, string $value ) : string
$name string The name of the porperty
$value string The value of the porperty
return string The CSS code
    public function property($name, $value)
    {
        return $name . $this->assignSeparator . $value . ";";
    }