1a4f6381f4bb8c9042d1d56e60648de3ebb086e8
[yaffs-website] / web / modules / contrib / blazy / tests / modules / blazy_test / src / BlazySkinTest.php
1 <?php
2
3 namespace Drupal\blazy_test;
4
5 /**
6  * Implements BlazySkinTestInterface.
7  */
8 class BlazySkinTest implements BlazySkinTestInterface {
9
10   /**
11    * {@inheritdoc}
12    */
13   public function skins() {
14     return [
15       'default' => [
16         'name' => 'Default',
17         'provider' => 'blazy_test',
18       ],
19     ];
20   }
21
22   /**
23    * {@inheritdoc}
24    */
25   public function features() {
26     return [
27       'default' => [
28         'name' => 'Default',
29         'provider' => 'blazy_test',
30       ],
31     ];
32   }
33
34 }