Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ public function title()
*
* @return string|void
*/
public function favicon($favicon = null)
public static function favicon($favicon = null)
{
if (is_null($favicon)) {
return static::$favicon;
Expand Down
4 changes: 2 additions & 2 deletions src/Widgets/Box.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function __construct($title = '', $content = '', $footer = '')
/**
* Set box content.
*
* @param string $content
* @param string|Renderable $content
*
* @return $this
*/
Expand All @@ -80,7 +80,7 @@ public function content($content)
/**
* Set box footer.
*
* @param string $footer
* @param string|Renderable $footer
*
* @return $this
*/
Expand Down