You are here

public function Kint::getInternalFunctions in Devel 4.x

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 89

Class

Kint
Provides a Kint dumper plugin.

Namespace

Drupal\devel\Plugin\Devel\Dumper

Code

public function getInternalFunctions() {
  return array_merge(parent::getInternalFunctions(), \Kint\Kint::$aliases);
}