JohnKary\PHPUnit\Listener\SpeedTrapListener::loadOptions PHP Method

loadOptions() protected method

Populate options into class internals.
protected loadOptions ( array $options )
$options array
    protected function loadOptions(array $options)
    {
        $this->slowThreshold = isset($options['slowThreshold']) ? $options['slowThreshold'] : 500;
        $this->reportLength = isset($options['reportLength']) ? $options['reportLength'] : 10;
    }