diff options
author | polo <ordipolo@gmx.fr> | 2025-10-03 15:42:22 +0200 |
---|---|---|
committer | polo <ordipolo@gmx.fr> | 2025-10-03 15:42:22 +0200 |
commit | 9f88389d78755d7c69c29e9db8f114fd1dbef034 (patch) | |
tree | 2158ac1292fcd973563adf2a5836b13354fc8207 /src/view/AbstractBuilder.php | |
parent | d6d7351259e104ab10b5dda3483c281830ce4ff3 (diff) | |
download | cms-9f88389d78755d7c69c29e9db8f114fd1dbef034.zip |
regression AbstractBuilder->render inaccessible, séparation dans Director __construct/makeMenuAndPaths
Diffstat (limited to 'src/view/AbstractBuilder.php')
-rw-r--r-- | src/view/AbstractBuilder.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/AbstractBuilder.php b/src/view/AbstractBuilder.php index dd83a42..ab5e389 100644 --- a/src/view/AbstractBuilder.php +++ b/src/view/AbstractBuilder.php | |||
@@ -49,7 +49,7 @@ abstract class AbstractBuilder | |||
49 | return str_replace('_', '', ucwords($input, '_')); | 49 | return str_replace('_', '', ucwords($input, '_')); |
50 | } | 50 | } |
51 | 51 | ||
52 | protected function render(): string // = getHTML() | 52 | public function render(): string // = getHTML(), nécéssite d'être public |
53 | { | 53 | { |
54 | return $this->html; | 54 | return $this->html; |
55 | } | 55 | } |