@@ -59,7 +59,7 @@ public function boot(): void
5959 *
6060 * @return void
6161 */
62- protected function setupConfig (): void
62+ private function setupConfig (): void
6363 {
6464 $ source = realpath ($ raw = __DIR__ .'/../config/markdown.php ' ) ?: $ raw ;
6565
@@ -77,7 +77,7 @@ protected function setupConfig(): void
7777 *
7878 * @return void
7979 */
80- protected function enableCompiler (): void
80+ private function enableCompiler (): void
8181 {
8282 $ app = $ this ->app ;
8383
@@ -95,7 +95,7 @@ protected function enableCompiler(): void
9595 *
9696 * @return void
9797 */
98- protected function enablePhpEngine (): void
98+ private function enablePhpEngine (): void
9999 {
100100 $ app = $ this ->app ;
101101
@@ -114,7 +114,7 @@ protected function enablePhpEngine(): void
114114 *
115115 * @return void
116116 */
117- protected function enableBladeEngine (): void
117+ private function enableBladeEngine (): void
118118 {
119119 $ app = $ this ->app ;
120120
@@ -129,7 +129,7 @@ protected function enableBladeEngine(): void
129129 $ app ->view ->addExtension ('md.blade.php ' , 'blademd ' );
130130 }
131131
132- protected function enableBladeDirective (): void
132+ private function enableBladeDirective (): void
133133 {
134134 $ app = $ this ->app ;
135135
@@ -164,7 +164,7 @@ public function register(): void
164164 *
165165 * @return void
166166 */
167- protected function registerEnvironment (): void
167+ private function registerEnvironment (): void
168168 {
169169 $ this ->app ->singleton ('markdown.environment ' , function (Container $ app ): Environment {
170170 $ config = $ app ->config ->get ('markdown ' );
@@ -188,7 +188,7 @@ protected function registerEnvironment(): void
188188 *
189189 * @return void
190190 */
191- protected function registerMarkdown (): void
191+ private function registerMarkdown (): void
192192 {
193193 $ this ->app ->singleton ('markdown.converter ' , function (Container $ app ): MarkdownConverter {
194194 $ environment = $ app ['markdown.environment ' ];
@@ -205,7 +205,7 @@ protected function registerMarkdown(): void
205205 *
206206 * @return void
207207 */
208- protected function registerCompiler (): void
208+ private function registerCompiler (): void
209209 {
210210 $ this ->app ->singleton ('markdown.compiler ' , function (Container $ app ): CommonMarkCompiler {
211211 $ converter = $ app ['markdown.converter ' ];
@@ -223,7 +223,7 @@ protected function registerCompiler(): void
223223 *
224224 * @return void
225225 */
226- protected function registerDirective (): void
226+ private function registerDirective (): void
227227 {
228228 $ this ->app ->singleton ('markdown.directive ' , function (Container $ app ): CommonMarkDirective {
229229 $ converter = $ app ['markdown.converter ' ];
0 commit comments