diff --git a/src/EasyFooterPlugin.php b/src/EasyFooterPlugin.php index bf7a602..ba539c5 100644 --- a/src/EasyFooterPlugin.php +++ b/src/EasyFooterPlugin.php @@ -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 { @@ -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 { @@ -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 { @@ -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 { @@ -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 { @@ -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 { @@ -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 { @@ -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 {