1 parent 13600b9 commit 2e7aa6bCopy full SHA for 2e7aa6b
2 files changed
src/Layout/Controls.php
@@ -43,7 +43,7 @@ public function setTabs(Tabs $tabs)
43
return $this;
44
}
45
46
- public function isEmpty()
+ public function isEmpty(): bool
47
{
48
if (! parent::isEmpty()) {
49
return false;
src/Widget/Ball.php
@@ -91,7 +91,7 @@ protected function assembleCssClasses(): array
91
*
92
* @return $this
93
*/
94
- public function addHtml(ValidHtml ...$content): Ball
+ public function addHtml(ValidHtml ...$content): static
95
96
if (count($content) === 1 && $content[0] instanceof Text) {
97
$content[0] = new HtmlElement('span', null, $content[0]);
0 commit comments