コード例 #1
0
 /**
  * @param Device $device
  */
 public function register(DeviceInterface $device)
 {
     $this->container[$device->getHandle()] = $device;
 }
コード例 #2
0
ファイル: Notification.php プロジェクト: scotwells/gcm
 public function hasDevice(DeviceInterface $device)
 {
     return array_key_exists($device->getRegistrationId(), $this->deviceMap);
 }