Skip to content

Commit d251fcd

Browse files
fix(theme): add missing methods
fix #50
1 parent 4f92e9b commit d251fcd

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/Theme.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,11 @@ public function setVersion(string $version): self
140140
return $this;
141141
}
142142

143+
public function getVersion(): string
144+
{
145+
return $this->version;
146+
}
147+
143148
/**
144149
* Set theme description.
145150
*/
@@ -150,6 +155,11 @@ public function setDescription(string $description): self
150155
return $this;
151156
}
152157

158+
public function getDescription(): string
159+
{
160+
return $this->description;
161+
}
162+
153163
/**
154164
* Set theme name.
155165
*/

0 commit comments

Comments
 (0)