page_tester-1.0.x-dev/src/TestsPluginBase.php
src/TestsPluginBase.php
<?php
declare(strict_types=1);
namespace Drupal\page_tester;
use Drupal\Component\Plugin\PluginBase;
/**
* Base class for tests plugins.
*/
abstract class TestsPluginBase extends PluginBase implements TestsInterface {
/**
* {@inheritdoc}
*/
public function label(): string {
// Cast the label to a string since it is a TranslatableMarkup object.
return (string) $this->pluginDefinition['label'];
}
}
