function Kint::getInternalFunctions

Same name and namespace in other branches
  1. 4.x src/Plugin/Devel/Dumper/Kint.php \Drupal\devel\Plugin\Devel\Dumper\Kint::getInternalFunctions()

Returns a list of internal functions.

The list returned from this method can be used to exclude internal functions from the backtrace output.

Return value

array An array of internal functions.

Overrides DevelDumperBase::getInternalFunctions

1 call to Kint::getInternalFunctions()
Kint::configure in src/Plugin/Devel/Dumper/Kint.php
Configures kint with more sane values.

File

src/Plugin/Devel/Dumper/Kint.php, line 95

Class

Kint
Provides a Kint dumper plugin.

Namespace

Drupal\devel\Plugin\Devel\Dumper

Code

protected function getInternalFunctions() : array {
    return array_merge(parent::getInternalFunctions(), KintOriginal::$aliases);
}