build() public static method

public static build ( IntoKeyword $component, array $options = [] ) : string
$component IntoKeyword The component to be built.
$options array Parameters for building.
return string
コード例 #1
0
 public function testBuildOutfile()
 {
     $component = IntoKeyword::parse(new Parser(), $this->getTokensList('OUTFILE "/tmp/outfile.txt"'));
     $this->assertEquals('OUTFILE "/tmp/outfile.txt"', IntoKeyword::build($component));
 }