コード例 #1
0
ファイル: Proxy.php プロジェクト: REZ1DENT3/morphy
 function __get($propName)
 {
     if ($propName == 'fsa') {
         $this->fsa = Fsa::create($this->storage, false);
         unset($this->storage);
         return $this->fsa;
     }
     // TODO
     throw new \Exception("Unknown prop name '{$propName}'");
 }
コード例 #2
0
ファイル: Decorator.php プロジェクト: REZ1DENT3/morphy
 function unpackTranses($transes)
 {
     return $this->fsa->unpackTranses($transes);
 }