Skip to content

Commit 3eddc27

Browse files
committed
Fix chainable
1 parent 4169211 commit 3eddc27

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Windows/Window.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,11 +187,15 @@ public function maximizable($maximizable = true): static
187187
public function minimized(): static
188188
{
189189
$this->afterOpen(fn () => WindowFacade::minimize($this->id));
190+
191+
return $this;
190192
}
191193

192194
public function maximized(): static
193195
{
194196
$this->afterOpen(fn () => WindowFacade::maximize($this->id));
197+
198+
return $this;
195199
}
196200

197201
public function closable($closable = true): static

0 commit comments

Comments
 (0)