TestEmptyBlock.php

Namespace

Drupal\block_test\Plugin\Block

File

core/modules/block/tests/modules/block_test/src/Plugin/Block/TestEmptyBlock.php

View source
<?php

declare (strict_types=1);
namespace Drupal\block_test\Plugin\Block;

use Drupal\Core\Block\Attribute\Block;
use Drupal\Core\Block\BlockBase;
use Drupal\Core\StringTranslation\TranslatableMarkup;

/**
 * Provides a block that returns an empty array.
 */
class TestEmptyBlock extends BlockBase {
    
    /**
     * {@inheritdoc}
     */
    public function build() {
        return [];
    }

}

Classes

Title Deprecated Summary
TestEmptyBlock Provides a block that returns an empty array.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.