@@ -100,7 +100,7 @@ final public function splitTo(Obfuscator $beforeSplitPoint, Obfuscator $afterSpl
100100 private Obfuscator $ _afterSplitPoint ;
101101
102102 // phpcs:ignore PEAR.Commenting.FunctionComment.Missing
103- function __construct (callable $ splitStart , int $ splitLength , Obfuscator $ beforeSplitPoint , Obfuscator $ afterSplitPoint )
103+ public function __construct (callable $ splitStart , int $ splitLength , Obfuscator $ beforeSplitPoint , Obfuscator $ afterSplitPoint )
104104 {
105105 $ this ->_splitStart = $ splitStart ;
106106 $ this ->_splitLength = $ splitLength ;
@@ -151,7 +151,7 @@ public static function atFirst(string $s): SplitPoint
151151 private int $ _splitLength ;
152152
153153 // phpcs:ignore PEAR.Commenting.FunctionComment.Missing
154- function __construct (string $ splitAt )
154+ public function __construct (string $ splitAt )
155155 {
156156 $ this ->_splitAt = $ splitAt ;
157157 $ this ->_splitLength = mb_strlen ($ splitAt );
@@ -192,7 +192,7 @@ public static function atLast(string $s): SplitPoint
192192 private int $ _splitLength ;
193193
194194 // phpcs:ignore PEAR.Commenting.FunctionComment.Missing
195- function __construct (string $ splitAt )
195+ public function __construct (string $ splitAt )
196196 {
197197 $ this ->_splitAt = $ splitAt ;
198198 $ this ->_splitLength = mb_strlen ($ splitAt );
@@ -238,7 +238,7 @@ public static function atNth(string $s, int $occurrence): SplitPoint
238238 private int $ _splitLength ;
239239
240240 // phpcs:ignore PEAR.Commenting.FunctionComment.Missing
241- function __construct (string $ splitAt , int $ occurrence )
241+ public function __construct (string $ splitAt , int $ occurrence )
242242 {
243243 $ this ->_splitAt = $ splitAt ;
244244 $ this ->_occurrence = $ occurrence ;
0 commit comments