From 350dbfb52c39520992ba9f3d29b5b0cc5562fda7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Am=C3=A9rico?= Date: Fri, 27 Dec 2024 16:51:35 +0000 Subject: [PATCH] Changed the translation property to protected in order to be possible extend the class and use the property --- src/Http/Controllers/LanguageTranslationController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Http/Controllers/LanguageTranslationController.php b/src/Http/Controllers/LanguageTranslationController.php index e657dc8a..4c55a993 100644 --- a/src/Http/Controllers/LanguageTranslationController.php +++ b/src/Http/Controllers/LanguageTranslationController.php @@ -11,7 +11,7 @@ class LanguageTranslationController extends Controller { - private $translation; + protected Translation $translation; public function __construct(Translation $translation) {