From 5e789c4587e37b46327bdc4d3d40a1ad337aa6cb Mon Sep 17 00:00:00 2001 From: Michael Keiluweit Date: Fri, 31 Oct 2025 08:14:16 +0100 Subject: [PATCH] fixed backslashes --- development/tell_me_about/controller_as_service.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/development/tell_me_about/controller_as_service.rst b/development/tell_me_about/controller_as_service.rst index bf552ec9..2d4aac94 100644 --- a/development/tell_me_about/controller_as_service.rst +++ b/development/tell_me_about/controller_as_service.rst @@ -22,9 +22,10 @@ Instead, consider using service decoration as described below. Controller Class ---------------- -New service controllers are very similar to standard controllers; they must extend -`OxidEsales\EshopCommunity\Core\Controller\BaseController` or -implement `OxidEsales\EshopCommunity\Internal\Framework\Controller\ViewControllerInterface`. +New service controllers are very similar to standard controllers; they must either extend +`OxidEsales\\EshopCommunity\\Core\\Controller\\BaseController` +or implement +`OxidEsales\\EshopCommunity\\Internal\\Framework\\Controller\\ViewControllerInterface`. |example|