Skip to content

Commit

Permalink
Update phpDocs
Browse files Browse the repository at this point in the history
  • Loading branch information
Devonab committed Dec 30, 2024
1 parent 2e00a6a commit 25a8b15
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/EasyFooterPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public function getRenderHook(): string
/**
* Configure whether to hide the footer from auth pages
*
* @return EasyFooterPlugin
* @return static EasyFooterPlugin
*/
public function hideFromAuthPages(bool $enabled = true): static
{
Expand All @@ -137,7 +137,7 @@ public function hideFromAuthPages(bool $enabled = true): static
*
* @param bool $showLogo Whether to show the GitHub logo
* @param bool $showUrl Whether to show the GitHub URL
* @return EasyFooterPlugin
* @return static EasyFooterPlugin
*/
public function withGithub(bool $showLogo = true, bool $showUrl = true): static
{
Expand All @@ -151,7 +151,7 @@ public function withGithub(bool $showLogo = true, bool $showUrl = true): static
/**
* Configure if the footer has a border
*
* @return EasyFooterPlugin
* @return static EasyFooterPlugin
*/
public function withBorder(bool $enabled = true): static
{
Expand All @@ -163,7 +163,7 @@ public function withBorder(bool $enabled = true): static
/**
* Configure the footer position
*
* @return EasyFooterPlugin
* @return static EasyFooterPlugin
*/
public function withFooterPosition(string $position): static
{
Expand All @@ -175,7 +175,7 @@ public function withFooterPosition(string $position): static
/**
* Enable load time display with optional prefix text
*
* @return EasyFooterPlugin
* @return static EasyFooterPlugin
*/
public function withLoadTime(?string $prefix = null, bool $enabled = true): static
{
Expand All @@ -189,7 +189,7 @@ public function withLoadTime(?string $prefix = null, bool $enabled = true): stat
* Add custom links to the footer
*
* @param array $links Array of links with 'title' and 'url' keys
* @return EasyFooterPlugin
* @return static EasyFooterPlugin
*/
public function withLinks(array $links): static
{
Expand Down Expand Up @@ -237,7 +237,7 @@ public function boot(Panel $panel): void
/**
* Create a new instance of the plugin
*
* @return EasyFooterPlugin
* @return static EasyFooterPlugin
*/
public static function make(): static
{
Expand All @@ -247,7 +247,7 @@ public static function make(): static
/**
* Get the current instance of the plugin
*
* @return EasyFooterPlugin
* @return static EasyFooterPlugin
*/
public static function get(): static
{
Expand Down

0 comments on commit 25a8b15

Please sign in to comment.