Skip to content

Commit 11bc65e

Browse files
committed
docs: remove '```' in doc comments
1 parent 3d6dbab commit 11bc65e

1 file changed

Lines changed: 4 additions & 12 deletions

File tree

app/Config/Autoload.php

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,10 @@ class Autoload extends AutoloadConfig
3131
* else you will need to modify all of those classes for this to work.
3232
*
3333
* Prototype:
34-
* ```
3534
* $psr4 = [
3635
* 'CodeIgniter' => SYSTEMPATH,
37-
* 'App' => APPPATH
36+
* 'App' => APPPATH
3837
* ];
39-
* ```
4038
*
4139
* @var array<string, string>
4240
*/
@@ -56,11 +54,9 @@ class Autoload extends AutoloadConfig
5654
* were being autoloaded through a namespace.
5755
*
5856
* Prototype:
59-
* ```
6057
* $classmap = [
6158
* 'MyClass' => '/path/to/class/file.php'
6259
* ];
63-
* ```
6460
*
6561
* @var array<string, string>
6662
*/
@@ -75,11 +71,9 @@ class Autoload extends AutoloadConfig
7571
* or for loading functions.
7672
*
7773
* Prototype:
78-
* ```
79-
* $files = [
80-
* '/path/to/my/file.php',
81-
* ];
82-
* ```
74+
* $files = [
75+
* '/path/to/my/file.php',
76+
* ];
8377
*
8478
* @var string[]
8579
* @phpstan-var list<string>
@@ -91,11 +85,9 @@ class Autoload extends AutoloadConfig
9185
* Helpers
9286
* -------------------------------------------------------------------
9387
* Prototype:
94-
* ```
9588
* $helpers = [
9689
* 'form',
9790
* ];
98-
* ```
9991
*
10092
* @var string[]
10193
* @phpstan-var list<string>

0 commit comments

Comments
 (0)