src/PmDashboardItemInterface.php
<?php
declare(strict_types=1);
namespace Drupal\pm;
/**
* Interface for pm_dashboard_item plugins.
*/
interface PmDashboardItemInterface {
/**
* Returns the translated plugin label.
*/
public function label(): string;
}