make() public méthode

public make ( string $string ) : HTMLPurifier_AttrDef
$string string
Résultat HTMLPurifier_AttrDef
Exemple #1
0
 public function test_make()
 {
     $factory = new HTMLPurifier_AttrDef_HTML_Pixels();
     $this->def = $factory->make('30');
     $this->assertDef('25');
     $this->assertDef('35', '30');
 }