public function TidewaysExtension::getOptions in XHProf 8
Returns the options supported by this extension.
Return value
array Keyed array of allowed profiling options for the extension.
Overrides ExtensionInterface::getOptions
File
- src/
Extension/ TidewaysExtension.php, line 22
Class
- TidewaysExtension
- Implements support for tideways extension.
Namespace
Drupal\xhprof\ExtensionCode
public function getOptions() {
return [
'FLAGS_CPU' => 'TIDEWAYS_FLAGS_CPU',
'FLAGS_MEMORY' => 'TIDEWAYS_FLAGS_MEMORY',
'FLAGS_NO_BUILTINS' => 'TIDEWAYS_FLAGS_NO_BUILTINS',
];
}