PHP code example of juliangut / php-cs-fixer-custom-fixers
1. Go to this page and download the library: Download juliangut/php-cs-fixer-custom-fixers library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
juliangut / php-cs-fixer-custom-fixers example snippets
diff
class Foo
{
- private float $value = .5;
+ private float $value = 0.5;
}