Skip to content

Commit 15430f8

Browse files
committed
feat: add pluginId field
1 parent 57782c5 commit 15430f8

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/Core/Framework/Plugin/AvailableOpensourcePlugin/AvailableOpensourcePluginEntity.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ class AvailableOpensourcePluginEntity extends Entity
3232

3333
protected string $availableVersion;
3434

35+
protected string $pluginId;
36+
3537
protected PluginEntity $plugin;
3638

3739
public function getName(): string
@@ -134,6 +136,16 @@ public function setAvailableVersion(string $availableVersion): void
134136
$this->availableVersion = $availableVersion;
135137
}
136138

139+
public function getPluginId(): string
140+
{
141+
return $this->pluginId;
142+
}
143+
144+
public function setPluginId(string $pluginId): void
145+
{
146+
$this->pluginId = $pluginId;
147+
}
148+
137149
public function getPlugin(): PluginEntity
138150
{
139151
return $this->plugin;

0 commit comments

Comments
 (0)