PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/MathTrig
Adrien Crivelli 4e2259c135
BREAKING `Worksheet::getRowDimension()` and `Worksheet::getColumnDimension()` cannot return null anymore
Both methods used to optionally return null if passed a
second argument. This second argument was removed entirely and the
method always returns a RowDimension or ColumnDimension respectively
(possibly creating it if needed).

This make the API more predictable and easier to do static analysis
with tools such as PHPStan.

If you relied on that second parameter, you should instead use the
`Worksheet::getRowDimensions()` or `Worksheet::getColumnDimensions()` and
check for existence yourself before calling the getters.
2021-04-25 17:02:36 +09:00
..
AbsTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
AcosTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
AcoshTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
AcotTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
AcothTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
AllSetupTeardown.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
ArabicTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
AsinTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
AsinhTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
Atan2Test.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
AtanTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
AtanhTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
BaseTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
CeilingMathTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
CeilingPreciseTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
CeilingTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
CombinATest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
CombinTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
CosTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
CoshTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
CotTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
CothTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
CscTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
CschTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
DegreesTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
EvenTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
ExpTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
FactDoubleTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
FactTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
FloorMathTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
FloorPreciseTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
FloorTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
GcdTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
IntTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
LcmTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
LnTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
Log10Test.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
LogTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
MInverseTest.php Tag deprecations for MathTrig, and eliminate calls to the deprecated methods (#2005) 2021-04-18 12:19:53 +02:00
MMultTest.php Tag deprecations for MathTrig, and eliminate calls to the deprecated methods (#2005) 2021-04-18 12:19:53 +02:00
MRoundTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
MUnitTest.php MathTrig - Change Names of funcWhatever to evaluate (#2008) 2021-04-20 22:43:29 +02:00
MdeTermTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
ModTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
MovedFunctionsTest.php Continue MathTrig Breakup - Completion! (#1985) 2021-04-05 16:39:03 +02:00
MultinomialTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
OddTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
PowerTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
ProductTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
QuotientTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
RadiansTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
RandBetweenTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
RandTest.php Continue MathTrig Breakup - Penultimate? (#1973) 2021-04-02 14:35:34 +02:00
RomanTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
RoundDownTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
RoundTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
RoundUpTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
SecTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
SechTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
SeriesSumTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
SignTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
SinTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
SinhTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
SqrtPiTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
SqrtTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
SubTotalTest.php BREAKING `Worksheet::getRowDimension()` and `Worksheet::getColumnDimension()` cannot return null anymore 2021-04-25 17:02:36 +09:00
SumIfTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
SumIfsTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
SumProductTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
SumSqTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
SumTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
SumX2MY2Test.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
SumX2PY2Test.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
SumXMY2Test.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
TanTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
TanhTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00
TruncTest.php Reduce PHPStan error in tests 2021-04-12 11:10:23 +09:00