You are here

MobileDeviceDetectionInterface.php in Mobile Device Detection 8

File

src/Object/MobileDeviceDetectionInterface.php
View source
<?php

namespace Drupal\mobile_device_detection\Object;

interface MobileDeviceDetectionInterface {

  /**
   * {@inheritdoc}
   */
  public function isMobile();

  /**
   * {@inheritdoc}
   */
  public function isTablet();

  /**
   * {@inheritdoc}
   */
  public function getObject();

}

Interfaces