gluon-web-remote

Web remote Administration for big size of gluon routers
git clone git://archive.git.mtrnord.blog/MTRNord/gluon-web-remote.git
Log | Files | Refs | README

ResourceHolder.php (297B)


      1 <?php
      2 
      3 namespace Ssh;
      4 
      5 /**
      6  * Interface that must be implemented by that handle a resource
      7  *
      8  * @author Antoine Hérault <antoine.herault@gmail.com>
      9  */
     10 interface ResourceHolder
     11 {
     12     /**
     13      * Returns the underlying resource
     14      *
     15      * @return resource
     16      */
     17     function getResource();
     18 }