Advertisement
Guest User

1111111

a guest
Jan 17th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.13 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("deviceManufacturer: " => "google inc.",
  66.         "deviceModel: " => "sm-g890a",
  67.         "deviceOs: " => "android",
  68.         "deviceOsVersion: " => "6.0.1",
  69.         "deviceLanguage: " => "English",
  70.         "languages: " => "en",
  71.         "ifaSet: " => "2160baa1-6220-4b2e-9239-0103abb31c94",
  72.         "userIdSet: " => "2160baa1-6220-4b2e-9239-0103abb31c94"
  73.     )/**
  74.  * @return array
  75.  */public function getDeviceArray()
  76. {
  77.     return $this->deviceArray;
  78. }/**
  79.  * @param array $deviceArray
  80.  */public function setDeviceArray($deviceArray)
  81. {
  82.     $this->deviceArray = $deviceArray;
  83. }
  84.  
  85.  
  86.  
  87. }
  88.  
  89.  
  90. class General
  91. {
  92.  
  93. }
  94.  
  95.  
  96. class Geo
  97. {
  98.  
  99. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement