Skip to content

Commit 4a656b3

Browse files
authored
Merge pull request #4 from php-etl/fix/service-construct
removed clone method
2 parents 5052c72 + 127ece7 commit 4a656b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Service.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function __construct(
2424
) {
2525
$this->processor = new Processor();
2626
$this->configuration = new Configuration();
27-
$this->interpreter = clone $interpreter ?? new ExpressionLanguage();
27+
$this->interpreter = $interpreter ?? new ExpressionLanguage();
2828
}
2929

3030
public function configuration(): ConfigurationInterface

0 commit comments

Comments
 (0)