Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove array_merge() from constructors when not needed #625

Closed
wants to merge 1 commit into from

Conversation

stloyd
Copy link
Member

@stloyd stloyd commented Oct 22, 2023

Change Log

Added

Fixed

Changed

Removed

  • Remove `array_merge()` from constructors when not needed

Deprecated

Security


Description

@@ -18,9 +19,13 @@ final class All implements Comparison
*/
private array $comparisons;

public function __construct(Comparison $comparison, Comparison ...$comparisons)
public function __construct(Comparison ...$comparisons)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I prefer to keep it like it is now. This way, the constructor enforces at least one Comparison, so there is no need to write a unit test covering this edge case to satisfy mutation tests.
It's an approach commonly used in Scala when at least one element is required.
This particular array_merge should also have no impact on the pipeline processing performance.

@stloyd stloyd closed this Oct 22, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants