Skip to content

Commit

Permalink
Fix BuilderContract
Browse files Browse the repository at this point in the history
  • Loading branch information
MaestroError committed Mar 4, 2024
1 parent 3d4840c commit a1cc219
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Contracts/BuilderContract.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ public function setString(string $str): void;
/**
* Retrieves all matches of the set pattern within the target string.
*
* @return array An array of all matches found.
* @return mixed An array of all matches found, a Laravel's collection or NULL.
*/
public function get(): ?array;
public function get(): mixed;

/**
* Checks if the entire target string exactly matches the set pattern.
Expand Down

0 comments on commit a1cc219

Please sign in to comment.