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
diff --git a/web/modules/contrib/simple_sitemap/src/Plugin/simple_sitemap/UrlGenerator/UrlGeneratorInterface.php b/web/modules/contrib/simple_sitemap/src/Plugin/simple_sitemap/UrlGenerator/UrlGeneratorInterface.php
new file mode 100644 (file)
index 0000000..03d6a14
--- /dev/null
@@ -0,0 +1,17 @@
+<?php
+
+namespace Drupal\simple_sitemap\Plugin\simple_sitemap\UrlGenerator;
+
+/**
+ * Interface UrlGeneratorInterface
+ * @package Drupal\simple_sitemap\Plugin\simple_sitemap\UrlGenerator
+ */
+interface UrlGeneratorInterface {
+
+  public function generate();
+
+  /**
+   * @return mixed
+   */
+  public function getDataSets();
+}