Example #1
0
 /**
  * @param $path
  * @return \Timiki\Bundle\RpcServerBundle\Server\Handler
  * @throws \Timiki\Bundle\RpcServerBundle\Server\Exceptions\InvalidMappingException
  */
 public static function getHandler($path = null)
 {
     $mapper = self::getMapper($path);
     $handler = new Handler();
     $handler->setMapper($mapper);
     return $handler;
 }