Ejemplo n.º 1
0
 public function execCmd($cmd, $request)
 {
     $cmd = AECToolbox::camelize($cmd);
     $method = 'cmd' . $cmd;
     if (!method_exists($this, $method)) {
         return false;
     }
     return $this->{$method}($request);
 }