Skip to content

Commit

Permalink
add failing test case
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Jan 8, 2022
1 parent d7bf81e commit 8f18542
Showing 1 changed file with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php

namespace Rector\Tests\DowngradePhp80\Rector\FuncCall\DowngradeNumberFormatNoFourthArgRector\Fixture;

class Fixture
{
public function run()
{
return number_format(1000, 2, ',');
}
}

?>
-----
<?php

namespace Rector\Tests\DowngradePhp80\Rector\FuncCall\DowngradeNumberFormatNoFourthArgRector\Fixture;

class Fixture
{
public function run()
{
return number_format(1000, 2, ',', ',');
}
}

?>

0 comments on commit 8f18542

Please sign in to comment.