make() 공개 메소드

public make ( string $string ) : HTMLPurifier_AttrDef
$string string
리턴 HTMLPurifier_AttrDef
예제 #1
0
 public function test_make()
 {
     $factory = new HTMLPurifier_AttrDef_HTML_Pixels();
     $this->def = $factory->make('30');
     $this->assertDef('25');
     $this->assertDef('35', '30');
 }