__construct() public method

Transliteration system's constructor
public __construct ( $file )
Beispiel #1
0
 /**
  * Kana's constructor
  */
 public function __construct($system = '')
 {
     $file = __DIR__ . DIRECTORY_SEPARATOR . 'Kana' . DIRECTORY_SEPARATOR . ($system ? $system : 'hiragana') . '.yaml';
     parent::__construct($file);
 }