@@ -24,7 +24,7 @@ trait ArrayAssertions
2424 * @param int $expectedCount The expected number of elements.
2525 * @param string $message Optional custom error message.
2626 *
27- * @return self|FluentAssertions Returns the FluentAssertions instance for method chaining .
27+ * @return self Enables fluent chaining of assertion methods .
2828 */
2929 public function count (int $ expectedCount , string $ message = '' ): self
3030 {
@@ -45,7 +45,7 @@ public function count(int $expectedCount, string $message = ''): self
4545 * @param int $elementsCount The number of elements that should not match.
4646 * @param string $message Optional custom error message.
4747 *
48- * @return self|fluentAssertions Enables fluent chaining of assertion methods.
48+ * @return self Enables fluent chaining of assertion methods.
4949 */
5050 public function notCount (int $ elementsCount , string $ message = '' ): self
5151 {
@@ -65,7 +65,7 @@ public function notCount(int $elementsCount, string $message = ''): self
6565 *
6666 * @param array $values The associative array that should be contained within the actual array.
6767 *
68- * @return self|fluentAssertions Enables fluent chaining of assertion methods.
68+ * @return self Enables fluent chaining of assertion methods.
6969 */
7070 public function arrayContainsAssociativeArray (array $ values ): self
7171 {
@@ -108,7 +108,7 @@ protected function arrayContainsAssociativeArrayRecursive(array $data, array $va
108108 * @param int|string $key The key to check for existence.
109109 * @param string $message Optional custom error message.
110110 *
111- * @return self|fluentAssertions Enables fluent chaining of assertion methods.
111+ * @return self Enables fluent chaining of assertion methods.
112112 */
113113 public function arrayHasKey (int |string $ key , string $ message = '' ): self
114114 {
@@ -129,7 +129,7 @@ public function arrayHasKey(int|string $key, string $message = ''): self
129129 * @param int|string $key The key that should not exist.
130130 * @param string $message Optional custom error message.
131131 *
132- * @return self|fluentAssertions Enables fluent chaining of assertion methods.
132+ * @return self Enables fluent chaining of assertion methods.
133133 */
134134 public function arrayNotHasKey (int |string $ key , string $ message = '' ): self
135135 {
@@ -150,7 +150,7 @@ public function arrayNotHasKey(int|string $key, string $message = ''): self
150150 * @param mixed $value The value to check for.
151151 * @param string $message Optional custom error message.
152152 *
153- * @return self|fluentAssertions Enables fluent chaining of assertion methods.
153+ * @return self Enables fluent chaining of assertion methods.
154154 */
155155 public function contains (mixed $ value , string $ message = '' ): self
156156 {
@@ -171,7 +171,7 @@ public function contains(mixed $value, string $message = ''): self
171171 * @param mixed $value The value that should not be present.
172172 * @param string $message Optional custom error message.
173173 *
174- * @return self|fluentAssertions Enables fluent chaining of assertion methods.
174+ * @return self Enables fluent chaining of assertion methods.
175175 */
176176 public function doesNotContain (mixed $ value , string $ message = '' ): self
177177 {
@@ -192,7 +192,7 @@ public function doesNotContain(mixed $value, string $message = ''): self
192192 * @param int $size The expected size.
193193 * @param string $message Optional custom error message.
194194 *
195- * @return self|fluentAssertions Enables fluent chaining of assertion methods.
195+ * @return self Enables fluent chaining of assertion methods.
196196 */
197197 public function hasSize (int $ size , string $ message = '' ): self
198198 {
@@ -212,7 +212,7 @@ public function hasSize(int $size, string $message = ''): self
212212 *
213213 * @param string $message Optional custom error message.
214214 *
215- * @return self|fluentAssertions Enables fluent chaining of assertion methods.
215+ * @return self Enables fluent chaining of assertion methods.
216216 */
217217 public function isEmptyArray (string $ message = '' ): self
218218 {
@@ -232,7 +232,7 @@ public function isEmptyArray(string $message = ''): self
232232 *
233233 * @param string $message Optional custom error message.
234234 *
235- * @return self|fluentAssertions Enables fluent chaining of assertion methods.
235+ * @return self Enables fluent chaining of assertion methods.
236236 */
237237 public function isNotEmptyArray (string $ message = '' ): self
238238 {
0 commit comments