forked from LiveCarta/PayPal-PHP-SDK
Removed Deprecated Getter and Setters
- Removed Deprecated Getter Setters from all Model Classes - All Camelcase getters and setters are removed. Please use first letter uppercase syntax - E.g. instead of using get_notify_url(), use getNotifyUrl() instead
This commit is contained in:
@@ -66,7 +66,7 @@ class FormatConverterTest extends \PHPUnit_Framework_TestCase
|
||||
*/
|
||||
public function testFormatToTwoDecimalPlaces($input, $expected)
|
||||
{
|
||||
$result = FormatConverter::formatToTwoDecimalPlaces($input);
|
||||
$result = FormatConverter::formatToNumber($input);
|
||||
$this->assertEquals($expected, $result);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user