| 1 |
<?php |
| 2 |
|
| 3 |
namespace Minify; |
| 4 |
|
| 5 |
use Minify_CacheInterface; |
| 6 |
|
| 7 |
class Config |
| 8 |
{ |
| 9 |
/** |
| 10 |
* @var bool |
| 11 |
*/ |
| 12 |
public $enableBuilder = false; |
| 13 |
|
| 14 |
/** |
| 15 |
* @var bool |
| 16 |
*/ |
| 17 |
public $enableStatic = false; |
| 18 |
|
| 19 |
/** |
| 20 |
* @var bool |
| 21 |
*/ |
| 22 |
public $concatOnly = false; |
| 23 |
|
| 24 |
/** |
| 25 |
* @var string |
| 26 |
*/ |
| 27 |
public $builderPassword = 'admin'; |
| 28 |
|
| 29 |
/** |
| 30 |
* @var bool|object |
| 31 |
*/ |
| 32 |
public $errorLogger = false; |
| 33 |
|
| 34 |
/** |
| 35 |
* @var bool |
| 36 |
*/ |
| 37 |
public $allowDebugFlag = false; |
| 38 |
|
| 39 |
/** |
| 40 |
* @var string|Minify_CacheInterface |
| 41 |
*/ |
| 42 |
public $cachePath = ''; |
| 43 |
|
| 44 |
/** |
| 45 |
* @var string |
| 46 |
*/ |
| 47 |
public $documentRoot = ''; |
| 48 |
|
| 49 |
/** |
| 50 |
* @var bool |
| 51 |
*/ |
| 52 |
public $cacheFileLocking = true; |
| 53 |
|
| 54 |
/** |
| 55 |
* @var array |
| 56 |
*/ |
| 57 |
public $serveOptions = array(); |
| 58 |
|
| 59 |
/** |
| 60 |
* @var array |
| 61 |
*/ |
| 62 |
public $symlinks = array(); |
| 63 |
|
| 64 |
/** |
| 65 |
* @var int |
| 66 |
*/ |
| 67 |
public $uploaderHoursBehind = 0; |
| 68 |
|
| 69 |
/** |
| 70 |
* @var array |
| 71 |
*/ |
| 72 |
public $envArgs = array(); |
| 73 |
|
| 74 |
/** |
| 75 |
* @var callable[] |
| 76 |
*/ |
| 77 |
public $factories = array(); |
| 78 |
} |
| 79 |
|