You are here

AdBlockInterface.php in Google AdSense integration 8

Namespace

Drupal\adsense

File

src/AdBlockInterface.php
View source
<?php

namespace Drupal\adsense;


/**
 * Interface for adsense ad blocks.
 */
interface AdBlockInterface {

  /**
   * Create ad object.
   *
   * @return AdsenseAdBase
   *   The created ad.
   */
  public function createAd();

}

Interfaces

Namesort descending Description
AdBlockInterface Interface for adsense ad blocks.