[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/_test/tests/Remote/Mock/ -> JsonRpcServer.php (source)

   1  <?php
   2  
   3  namespace dokuwiki\test\Remote\Mock;
   4  
   5  class JsonRpcServer extends \dokuwiki\Remote\JsonRpcServer
   6  {
   7  
   8      /** @inheritdoc */
   9      public function __construct()
  10      {
  11          parent::__construct();
  12          $this->remote->getCoreMethods(new ApiCore()); // use the mock API core
  13      }
  14  
  15  }