-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Values were summed multiple times if it matched several conditions whereas it should only be summed once. Fixes #704 Fixes #710
- Loading branch information
1 parent
ed6a3a0
commit 98d1047
Showing
4 changed files
with
80 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?php | ||
|
||
return [ | ||
[ | ||
2, | ||
[ | ||
[1], | ||
[1], | ||
[1], | ||
], | ||
[ | ||
['Y'], | ||
['Y'], | ||
['N'], | ||
], | ||
'=Y', | ||
[ | ||
['H'], | ||
['H'], | ||
['H'], | ||
], | ||
'=H', | ||
], | ||
[ | ||
1, | ||
[ | ||
[1], | ||
[1], | ||
[1], | ||
], | ||
[ | ||
['A'], | ||
['B'], | ||
['C'], | ||
], | ||
'=B', | ||
[ | ||
['C'], | ||
['B'], | ||
['A'], | ||
], | ||
'=B', | ||
], | ||
]; |