Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / simple_sitemap / src / Plugin / simple_sitemap / UrlGenerator / UrlGeneratorInterface.php
1 <?php
2
3 namespace Drupal\simple_sitemap\Plugin\simple_sitemap\UrlGenerator;
4
5 /**
6  * Interface UrlGeneratorInterface
7  * @package Drupal\simple_sitemap\Plugin\simple_sitemap\UrlGenerator
8  */
9 interface UrlGeneratorInterface {
10
11   public function generate();
12
13   /**
14    * @return mixed
15    */
16   public function getDataSets();
17 }