PHP CS-Fixer

This commit is contained in:
Eric Espie
2026-01-09 11:04:38 +01:00
parent 9d4fc345bc
commit 1538596db8
9 changed files with 46 additions and 34 deletions

View File

@@ -5,7 +5,8 @@ namespace Combodo\iTop\Application\UI\Base\Layout\DashletPanel;
use Combodo\iTop\Application\UI\Base\UIBlock;
use utils;
class DashletEntry extends UIBlock {
class DashletEntry extends UIBlock
{
public const BLOCK_CODE = 'ibo-dashlet-entry';
public const DEFAULT_HTML_TEMPLATE_REL_PATH = 'base/layouts/dashlet-panel/dashlet-entry';
@@ -18,7 +19,6 @@ class DashletEntry extends UIBlock {
protected $sDashletPreferredWidth;
protected $sDashletPreferredHeight;
public function __construct(string $sDashletClass, string $sDashletLabel, string $sDashletDescription, string $sDashletIconRelUrl, ?string $sId = null)
{
parent::__construct($sId);
@@ -159,5 +159,4 @@ class DashletEntry extends UIBlock {
return $this;
}
}