From 2992f6e5baf6a8d06a72f12208f81bc4de54013a Mon Sep 17 00:00:00 2001 From: Italo Date: Thu, 21 Dec 2023 17:04:58 -0300 Subject: [PATCH] Fixes stub accidental autocompletion on IDEs --- .stubs/{stubs.php => stubs} | 0 src/ReCaptchaServiceProvider.php | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename .stubs/{stubs.php => stubs} (100%) diff --git a/.stubs/stubs.php b/.stubs/stubs similarity index 100% rename from .stubs/stubs.php rename to .stubs/stubs diff --git a/src/ReCaptchaServiceProvider.php b/src/ReCaptchaServiceProvider.php index c175834..5bb9a7b 100644 --- a/src/ReCaptchaServiceProvider.php +++ b/src/ReCaptchaServiceProvider.php @@ -17,7 +17,7 @@ class ReCaptchaServiceProvider extends ServiceProvider // These constants point to publishable files/directories. public const CONFIG = __DIR__.'/../config/recaptcha.php'; public const LANG = __DIR__.'/../lang'; - public const STUBS = __DIR__.'/../.stubs/stubs.php'; + public const STUBS = __DIR__.'/../.stubs/stubs'; public const META = __DIR__.'/../.phpstorm.meta.php'; public const VIEWS = __DIR__.'/../resources/views';