@@ -96,8 +96,6 @@ public function __construct(array $a, array $b, ?callable $junkCallback = null,
9696 * Set the options.
9797 *
9898 * @param array $options The options
99- *
100- * @return self
10199 */
102100 public function setOptions (array $ options ): self
103101 {
@@ -110,8 +108,6 @@ public function setOptions(array $options): self
110108
111109 /**
112110 * Reset cached results.
113- *
114- * @return self
115111 */
116112 public function resetCachedResults (): self
117113 {
@@ -126,8 +122,6 @@ public function resetCachedResults(): self
126122 *
127123 * @param string[] $a an array containing the lines to compare against
128124 * @param string[] $b an array containing the lines to compare
129- *
130- * @return self
131125 */
132126 public function setSequences (array $ a , array $ b ): self
133127 {
@@ -139,8 +133,6 @@ public function setSequences(array $a, array $b): self
139133 * when calling the calculation methods, we need to recalculate them.
140134 *
141135 * @param string[] $a the sequence to set as the first sequence
142- *
143- * @return self
144136 */
145137 public function setSeq1 (array $ a ): self
146138 {
@@ -157,8 +149,6 @@ public function setSeq1(array $a): self
157149 * when calling the calculation methods, we need to recalculate them.
158150 *
159151 * @param string[] $b the sequence to set as the second sequence
160- *
161- * @return self
162152 */
163153 public function setSeq2 (array $ b ): self
164154 {
@@ -543,8 +533,6 @@ private function linesAreDifferent(int $aIndex, int $bIndex): bool
543533 /**
544534 * Generate the internal arrays containing the list of junk and non-junk
545535 * characters for the second ($b) sequence.
546- *
547- * @return self
548536 */
549537 private function chainB (): self
550538 {
@@ -599,8 +587,6 @@ private function chainB(): self
599587 * Checks if a particular character is in the junk dictionary
600588 * for the list of junk characters.
601589 *
602- * @param string $b
603- *
604590 * @return bool $b True if the character is considered junk. False if not.
605591 */
606592 private function isBJunk (string $ b ): bool
0 commit comments