Advertisement
AlexDeb

str

Jan 17th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.84 KB | None | 0 0
  1. <?php
  2.  
  3. class Profile
  4. {
  5.  
  6.     public $id;
  7.  
  8.     /**
  9.      * @return mixed
  10.      */
  11.     public function getId()
  12.     {
  13.         return $this->id;
  14.     }
  15.  
  16.     /**
  17.      * @param mixed $id
  18.      */
  19.     public function setId($id)
  20.     {
  21.         $this->id = $id;
  22.     }
  23.  
  24.  
  25. }
  26.  
  27. class Common
  28. {
  29.  
  30. }
  31.  
  32.  
  33. class Segment
  34. {
  35.  
  36. }
  37.  
  38.  
  39. class Advertisement
  40. {
  41.  
  42.  
  43. }
  44.  
  45.  
  46. class Application
  47. {
  48.  
  49. }
  50.  
  51.  
  52. class Channels
  53. {
  54.  
  55. }
  56.  
  57. class Demographic
  58. {
  59.  
  60. }
  61.  
  62.  
  63. class Device
  64. {
  65.     public $deviceArray = array();
  66.  
  67.  
  68.     /**
  69.      * @return array
  70.      */
  71.     public function getDeviceArray()
  72.     {
  73.         return $this->deviceArray;
  74.     }
  75.  
  76.     /**
  77.      * @param array $deviceArray
  78.      */
  79.     public function setDeviceArray($deviceArray)
  80.     {
  81.         $this->deviceArray = $deviceArray;
  82.     }
  83.  
  84.  
  85. }
  86.  
  87.  
  88. class General
  89. {
  90.  
  91. }
  92.  
  93.  
  94. class Geo
  95. {
  96.  
  97. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement