| 1 | <?php namespace Comodojo\Extender\Components; |
||
| 25 | class DefaultConfiguration { |
||
| 26 | |||
| 27 | private static $configuration = array( |
||
| 28 | 'encoding' => 'UTF-8', |
||
| 29 | 'looptime' => 1, |
||
| 30 | 'niceness' => 0, |
||
| 31 | 'multithread' => true, |
||
| 32 | 'fork-limit' => 0, |
||
| 33 | 'child-max-result-bytes' => 2048, |
||
| 34 | 'child-max-runtime' => 600 |
||
| 35 | ); |
||
| 36 | |||
| 37 | public static function get() { |
||
| 44 | |||
| 45 | } |
||
| 46 |