@@ -23,25 +23,25 @@ discard block |
||
23 | 23 | */ |
24 | 24 | trait Mailcode_Traits_Formatting_HTMLHighlighting |
25 | 25 | { |
26 | - /** |
|
27 | - * Stored this way, so we can use isset() instead |
|
28 | - * of using in_array, which is some magnitudes slower. |
|
29 | - * The boolean value is not used otherwise. |
|
30 | - * |
|
31 | - * @var array<string,bool> |
|
32 | - */ |
|
26 | + /** |
|
27 | + * Stored this way, so we can use isset() instead |
|
28 | + * of using in_array, which is some magnitudes slower. |
|
29 | + * The boolean value is not used otherwise. |
|
30 | + * |
|
31 | + * @var array<string,bool> |
|
32 | + */ |
|
33 | 33 | private array $excludeTags = array( |
34 | 34 | 'style' => true, // NOTE: style tags are excluded natively on the parser level. |
35 | 35 | 'script' => true |
36 | 36 | ); |
37 | 37 | |
38 | - /** |
|
39 | - * Adds an HTML tag name to the list of tags within which |
|
40 | - * commands may not be highlighted. |
|
41 | - * |
|
42 | - * @param string $tagName Case-insensitive. |
|
43 | - * @return $this |
|
44 | - */ |
|
38 | + /** |
|
39 | + * Adds an HTML tag name to the list of tags within which |
|
40 | + * commands may not be highlighted. |
|
41 | + * |
|
42 | + * @param string $tagName Case-insensitive. |
|
43 | + * @return $this |
|
44 | + */ |
|
45 | 45 | public function excludeTag(string $tagName) : self |
46 | 46 | { |
47 | 47 | $tagName = strtolower($tagName); |
@@ -51,12 +51,12 @@ discard block |
||
51 | 51 | return $this; |
52 | 52 | } |
53 | 53 | |
54 | - /** |
|
55 | - * Adds several excluded tag names at once. |
|
56 | - * |
|
57 | - * @param string[] $tagNames |
|
58 | - * @return $this |
|
59 | - */ |
|
54 | + /** |
|
55 | + * Adds several excluded tag names at once. |
|
56 | + * |
|
57 | + * @param string[] $tagNames |
|
58 | + * @return $this |
|
59 | + */ |
|
60 | 60 | public function excludeTags(array $tagNames) : self |
61 | 61 | { |
62 | 62 | foreach($tagNames as $tagName) |
@@ -67,12 +67,12 @@ discard block |
||
67 | 67 | return $this; |
68 | 68 | } |
69 | 69 | |
70 | - /** |
|
71 | - * Whether the specified tag name is in the exclusion list. |
|
72 | - * |
|
73 | - * @param string $tagName |
|
74 | - * @return bool |
|
75 | - */ |
|
70 | + /** |
|
71 | + * Whether the specified tag name is in the exclusion list. |
|
72 | + * |
|
73 | + * @param string $tagName |
|
74 | + * @return bool |
|
75 | + */ |
|
76 | 76 | public function isTagExcluded(string $tagName) : bool |
77 | 77 | { |
78 | 78 | $tagName = strtolower($tagName); |
@@ -31,29 +31,29 @@ discard block |
||
31 | 31 | public const PACKAGE_NAME = 'Mailcode'; |
32 | 32 | |
33 | 33 | /** |
34 | - * @var Mailcode_Parser|NULL |
|
35 | - */ |
|
34 | + * @var Mailcode_Parser|NULL |
|
35 | + */ |
|
36 | 36 | protected $parser = null; |
37 | 37 | |
38 | - /** |
|
39 | - * @var Mailcode_Commands|NULL |
|
40 | - */ |
|
38 | + /** |
|
39 | + * @var Mailcode_Commands|NULL |
|
40 | + */ |
|
41 | 41 | protected $commands = null; |
42 | 42 | |
43 | - /** |
|
44 | - * @var Mailcode_Variables|NULL |
|
45 | - */ |
|
43 | + /** |
|
44 | + * @var Mailcode_Variables|NULL |
|
45 | + */ |
|
46 | 46 | protected $variables = null; |
47 | 47 | |
48 | - /** |
|
49 | - * @var Mailcode_Translator|NULL |
|
50 | - */ |
|
48 | + /** |
|
49 | + * @var Mailcode_Translator|NULL |
|
50 | + */ |
|
51 | 51 | protected $translator = null; |
52 | 52 | |
53 | - /** |
|
54 | - * Creates a new mailcode instance. |
|
55 | - * @return Mailcode |
|
56 | - */ |
|
53 | + /** |
|
54 | + * Creates a new mailcode instance. |
|
55 | + * @return Mailcode |
|
56 | + */ |
|
57 | 57 | public static function create() : Mailcode |
58 | 58 | { |
59 | 59 | return new Mailcode(); |
@@ -65,11 +65,11 @@ discard block |
||
65 | 65 | } |
66 | 66 | |
67 | 67 | /** |
68 | - * Parses the string to detect all commands contained within. |
|
69 | - * |
|
70 | - * @param string $string |
|
71 | - * @return Mailcode_Collection |
|
72 | - */ |
|
68 | + * Parses the string to detect all commands contained within. |
|
69 | + * |
|
70 | + * @param string $string |
|
71 | + * @return Mailcode_Collection |
|
72 | + */ |
|
73 | 73 | public function parseString(string $string) : Mailcode_Collection |
74 | 74 | { |
75 | 75 | return $this->getParser() |
@@ -77,11 +77,11 @@ discard block |
||
77 | 77 | ->getCollection(); |
78 | 78 | } |
79 | 79 | |
80 | - /** |
|
81 | - * Retrieves the string parser instance used to detect commands. |
|
82 | - * |
|
83 | - * @return Mailcode_Parser |
|
84 | - */ |
|
80 | + /** |
|
81 | + * Retrieves the string parser instance used to detect commands. |
|
82 | + * |
|
83 | + * @return Mailcode_Parser |
|
84 | + */ |
|
85 | 85 | public function getParser() : Mailcode_Parser |
86 | 86 | { |
87 | 87 | if(!isset($this->parser)) |
@@ -92,12 +92,12 @@ discard block |
||
92 | 92 | return $this->parser; |
93 | 93 | } |
94 | 94 | |
95 | - /** |
|
96 | - * Retrieves the commands collection, which is used to |
|
97 | - * access information on the available commands. |
|
98 | - * |
|
99 | - * @return Mailcode_Commands |
|
100 | - */ |
|
95 | + /** |
|
96 | + * Retrieves the commands collection, which is used to |
|
97 | + * access information on the available commands. |
|
98 | + * |
|
99 | + * @return Mailcode_Commands |
|
100 | + */ |
|
101 | 101 | public function getCommands() : Mailcode_Commands |
102 | 102 | { |
103 | 103 | if(!isset($this->commands)) |
@@ -140,12 +140,12 @@ discard block |
||
140 | 140 | return $this->variables; |
141 | 141 | } |
142 | 142 | |
143 | - /** |
|
144 | - * Creates the translator, which can be used to convert commands |
|
145 | - * to another supported syntax. |
|
146 | - * |
|
147 | - * @return Mailcode_Translator |
|
148 | - */ |
|
143 | + /** |
|
144 | + * Creates the translator, which can be used to convert commands |
|
145 | + * to another supported syntax. |
|
146 | + * |
|
147 | + * @return Mailcode_Translator |
|
148 | + */ |
|
149 | 149 | public function createTranslator() : Mailcode_Translator |
150 | 150 | { |
151 | 151 | if(!isset($this->translator)) |
@@ -156,12 +156,12 @@ discard block |
||
156 | 156 | return $this->translator; |
157 | 157 | } |
158 | 158 | |
159 | - /** |
|
160 | - * Creates the styler, which can be used to retrieve the |
|
161 | - * CSS required to style the highlighted commands in HTML. |
|
162 | - * |
|
163 | - * @return Mailcode_Styler |
|
164 | - */ |
|
159 | + /** |
|
160 | + * Creates the styler, which can be used to retrieve the |
|
161 | + * CSS required to style the highlighted commands in HTML. |
|
162 | + * |
|
163 | + * @return Mailcode_Styler |
|
164 | + */ |
|
165 | 165 | public function createStyler() : Mailcode_Styler |
166 | 166 | { |
167 | 167 | return new Mailcode_Styler(); |