Yaffs site version 1.1
[yaffs-website] / web / modules / contrib / blazy / tests / modules / blazy_test / src / BlazySkinTest.php
diff --git a/web/modules/contrib/blazy/tests/modules/blazy_test/src/BlazySkinTest.php b/web/modules/contrib/blazy/tests/modules/blazy_test/src/BlazySkinTest.php
new file mode 100644 (file)
index 0000000..1a4f638
--- /dev/null
@@ -0,0 +1,34 @@
+<?php
+
+namespace Drupal\blazy_test;
+
+/**
+ * Implements BlazySkinTestInterface.
+ */
+class BlazySkinTest implements BlazySkinTestInterface {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function skins() {
+    return [
+      'default' => [
+        'name' => 'Default',
+        'provider' => 'blazy_test',
+      ],
+    ];
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function features() {
+    return [
+      'default' => [
+        'name' => 'Default',
+        'provider' => 'blazy_test',
+      ],
+    ];
+  }
+
+}