Guest User

Untitled

a guest
Jun 25th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.14 KB | None | 0 0
  1.  
  2. <?
  3. interface IAbstractResolverClass {
  4.  
  5. }
  6. abstract class IAbstractServiceClass implements IAbstractResolverClass  {
  7.  
  8.     private $ServiceAutority;
  9.     private $ServiceProperty;
  10.     private $ServicePermission;
  11.     private $login;
  12.     private $password;
  13. }
  14.  
  15. class ServiceUser implements IAbstractServiceClass{
  16.  
  17. public function __construct($Autority, $Property, $Permission)
  18.     {
  19.         $this->ServiceAutority = $Autority;
  20.         $this->ServiceProperty = $Property;
  21.         $this->ServicePermission = $Permission;
  22.     }  
  23. public function __set($Autority, $Property, $Permission)
  24.     {
  25.      
  26.     }
  27. public function __get($Autority, $Property, $Permission)
  28.     {
  29.        
  30.     }
  31. }
  32. }
  33.       class ClientUser implements ServiceUser {  
  34.  
  35.  }
  36.  
  37.       class Admin implements ServiceUser {
  38.  
  39.  }
  40.  
  41.       class ClientServiceProperty {
  42.  
  43.      private $_properties = array();
  44.  
  45.      function _get($property) {
  46.  
  47.  }
  48.      function _set($property) {
  49.  
  50.  }
  51. }
  52.  
  53.          class ServiceUserPermission {
  54.  
  55.      private $_properties = array();
  56.  
  57.      function _get($property) {
  58.  
  59.    }
  60.  
  61.      function _set($property) {
  62.  
  63.  }
  64. }
  65.  
  66. ?>
Add Comment
Please, Sign In to add comment