- 
                Notifications
    You must be signed in to change notification settings 
- Fork 38
Doc config
        Bart van Hoekelen edited this page Dec 11, 2018 
        ·
        9 revisions
      
    // Add namespace at the top
use Performance\Config;
// Set config item
Config::setConsoleLive(true);| Config item | default | explanation | 
|---|---|---|
| Config::setConsoleLive() | false | Determined if the console results are live or not | 
| Config::setPointLabelLTrim() | false | You can specify the left characters you want to strip form the point label | 
| Config::setPointLabelRTrim() | false | You can specify the right characters you want to strip form the point label | 
| Config::setEnableTool() | true | You can enable or disable the performance tool by boolean or ENV variable | 
| Config::setQueryLog() | false | Track database events using the laravel query log | 
| Config::setPresenter() | auto | Force to use specified presenter (web er console) | 
| Config::setPointLabelNice() | false | Formate the point label from 'CamelCase' to 'Camel Case' | 
| Config::setRunInformation() | false | Display current username and php process id | 
| Config::setClearScreen() | true | Clean terminal screen before test | 
Return to wiki home page