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 }