Skip to content

Commit 753333b

Browse files
committed
Fixed return type for get method
1 parent 02707b0 commit 753333b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Patterns/BuilderPattern.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function end(array|callable $config = []): BuilderContract {
5656
return $this->builder->setOptions($config); // Return the Builder object
5757
}
5858

59-
public function get(): ?array {
59+
public function get(): mixed {
6060
return $this->builder->get();
6161
}
6262

0 commit comments

Comments
 (0)