1 <?php
2 /**
3 * @package FrameworkOnFramework
4 * @subpackage less
5 * @copyright Copyright (C) 2010-2016 Nicholas K. Dionysopoulos / Akeeba Ltd. All rights reserved.
6 * @license GNU General Public License version 2 or later; see LICENSE.txt
7 */
8 // Protect from unauthorized access
9 defined('FOF_INCLUDED') or die;
10
11 /**
12 * This class is taken verbatim from:
13 *
14 * lessphp v0.3.9
15 * http://leafo.net/lessphp
16 *
17 * LESS css compiler, adapted from http://lesscss.org
18 *
19 * Copyright 2012, Leaf Corcoran <leafot@gmail.com>
20 * Licensed under MIT or GPLv3, see LICENSE
21 *
22 * @package FrameworkOnFramework
23 * @since 2.0
24 */
25 class FOFLessFormatterLessjs extends FOFLessFormatterClassic
26 {
27 public $disableSingle = true;
28
29 public $breakSelectors = true;
30
31 public $assignSeparator = ": ";
32
33 public $selectorSeparator = ",";
34 }
35