File tree Expand file tree Collapse file tree 16 files changed +130
-26
lines changed
Expand file tree Collapse file tree 16 files changed +130
-26
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,11 @@ abstract public function getName();
2727 */
2828 abstract public function getKeywords ();
2929
30+ /**
31+ * @return array
32+ */
33+ abstract public function getIdentifierOverrides ();
34+
3035 /**
3136 * @return array
3237 */
Original file line number Diff line number Diff line change @@ -105,6 +105,14 @@ public function getKeywords()
105105 ];
106106 }
107107
108+ /**
109+ * @return array
110+ */
111+ public function getIdentifierOverrides ()
112+ {
113+ return [];
114+ }
115+
108116 /**
109117 * @param $type
110118 * @return string
Original file line number Diff line number Diff line change @@ -132,6 +132,16 @@ public function getKeywords()
132132 ];
133133 }
134134
135+ /**
136+ * @return array
137+ */
138+ public function getIdentifierOverrides ()
139+ {
140+ return [
141+ 'Jwt ' => 'JWT '
142+ ];
143+ }
144+
135145 /**
136146 * @param $type
137147 * @return string
Original file line number Diff line number Diff line change @@ -43,6 +43,14 @@ public function getKeywords()
4343 ];
4444 }
4545
46+ /**
47+ * @return array
48+ */
49+ public function getIdentifierOverrides ()
50+ {
51+ return [];
52+ }
53+
4654 /**
4755 * @return array
4856 */
Original file line number Diff line number Diff line change @@ -24,6 +24,14 @@ public function getKeywords()
2424 return [];
2525 }
2626
27+ /**
28+ * @return array
29+ */
30+ public function getIdentifierOverrides ()
31+ {
32+ return [];
33+ }
34+
2735 /**
2836 * @param $type
2937 * @return string
Original file line number Diff line number Diff line change @@ -108,6 +108,14 @@ public function getKeywords()
108108 ];
109109 }
110110
111+ /**
112+ * @return array
113+ */
114+ public function getIdentifierOverrides ()
115+ {
116+ return [];
117+ }
118+
111119 /**
112120 * @param $type
113121 * @return string
Original file line number Diff line number Diff line change @@ -89,6 +89,14 @@ public function getKeywords()
8989 ];
9090 }
9191
92+ /**
93+ * @return array
94+ */
95+ public function getIdentifierOverrides ()
96+ {
97+ return [];
98+ }
99+
92100 /**
93101 * @param $type
94102 * @return string
Original file line number Diff line number Diff line change @@ -120,6 +120,14 @@ public function getKeywords()
120120 ];
121121 }
122122
123+ /**
124+ * @return array
125+ */
126+ public function getIdentifierOverrides ()
127+ {
128+ return [];
129+ }
130+
123131 /**
124132 * @return array
125133 */
Original file line number Diff line number Diff line change @@ -74,6 +74,14 @@ public function getKeywords()
7474 ];
7575 }
7676
77+ /**
78+ * @return array
79+ */
80+ public function getIdentifierOverrides ()
81+ {
82+ return [];
83+ }
84+
7785 /**
7886 * @return array
7987 */
Original file line number Diff line number Diff line change @@ -76,6 +76,14 @@ public function getKeywords()
7676 ];
7777 }
7878
79+ /**
80+ * @return array
81+ */
82+ public function getIdentifierOverrides ()
83+ {
84+ return [];
85+ }
86+
7987 /**
8088 * @return array
8189 */
You can’t perform that action at this time.
0 commit comments