Overview

Namespaces

  • PHP
  • XSLTBenchmarking
    • Reports
    • RunnerConsole
    • TestsGenerator
    • TestsRunner

Classes

  • EasyXmlGeneratorDriver
  • Generator
  • Params
  • SimpleTemplatingDriver
  • SmartyTemplatingDriver
  • SmartyXmlGeneratorDriver
  • Templating
  • Test
  • ToxgeneTemplatingDriver
  • ToxgeneXmlGeneratorDriver
  • XmlGenerator
  • XmlParamsDriver

Interfaces

  • IParamsDriver
  • ITemplatingDriver
  • IXmlGeneratorDriver
  • Overview
  • Namespace
  • Class
  • Tree
  • Todo
 1: <?php
 2: 
 3: /**
 4:  * XSLT Benchmarking
 5:  * @link https://github.com/masicek/XSLT-Benchmarking
 6:  * @author Viktor Mašíček <viktor@masicek.net>
 7:  * @license "New" BSD License
 8:  */
 9: 
10: namespace XSLTBenchmarking\TestsGenerator;
11: 
12: /**
13:  * Inerface for drivers for generating XML files.
14:  *
15:  * @author Viktor Mašíček <viktor@masicek.net>
16:  */
17: interface IXmlGeneratorDriver
18: {
19: 
20: 
21:     /**
22:      * Object configuration
23:      *
24:      * @param string $tmpDirectory The path of the temporary directory
25:      */
26:     public function __construct($tmpDirectory);
27: 
28: 
29:     /**
30:      * Generate xml file
31:      *
32:      * @param string $outputPath The path of the output xml file
33:      * @param array $settings The list of settings specific by selected xml generator
34:      *
35:      * @return void
36:      */
37:     public function generate($outputPath, $templateDir, array $settings);
38: 
39: 
40: }
41: 
XSTL Benchmarking API documentation generated by ApiGen.
Generated using the TokenReflection library.