public function JmesRuntimeFactory::createCompilerRuntime in Feeds extensible parsers 8
Creates a runtime object of type \JmesPath\CompilerRuntime.
Parameters
string $directory: The compile directory.
1 call to JmesRuntimeFactory::createCompilerRuntime()
- JmesRuntimeFactory::createRuntime in src/
JmesRuntimeFactory.php - Creates a runtime object.
File
- src/
JmesRuntimeFactory.php, line 49
Class
- JmesRuntimeFactory
- Defines a factory for generating JMESPath runtime objects.
Namespace
Drupal\feeds_exCode
public function createCompilerRuntime($directory) {
return new CompilerRuntime($directory);
}