Add missing ID param to VectorComponentMenuListItem constructor

Bug: T324638
Change-Id: I6aa81f9f9166a23100da8920069235ecba4f7594
This commit is contained in:
Jan Drewniak 2023-01-26 16:33:03 -05:00 committed by Jdlrobson
parent 58b130a29d
commit 1bcd760ecf

View file

@ -20,6 +20,7 @@ class VectorComponentMenuListItem implements VectorComponent {
public function __construct( VectorComponentIconLink $link, string $class = '', string $id = '' ) { public function __construct( VectorComponentIconLink $link, string $class = '', string $id = '' ) {
$this->link = $link; $this->link = $link;
$this->class = $class; $this->class = $class;
$this->id = $id;
} }
/** /**