FsWithoutProcessDelegation.php 264 B

12345678910111213
  1. <?php
  2. namespace Nesk\Rialto\Tests\Implementation;
  3. use Nesk\Rialto\AbstractEntryPoint;
  4. class FsWithoutProcessDelegation extends AbstractEntryPoint
  5. {
  6. public function __construct()
  7. {
  8. parent::__construct(__DIR__.'/FsConnectionDelegate.js');
  9. }
  10. }