You are here

BlazySkinTest.php in Blazy 8

Namespace

Drupal\blazy_test

File

tests/modules/blazy_test/src/BlazySkinTest.php
View source
<?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',
      ],
    ];
  }

}

Classes

Namesort descending Description
BlazySkinTest Implements BlazySkinTestInterface.