BaseMax / PHPAS

PHP Auto Style: A tool for format and beautify the style of PHP code with my style.
https://www.phpclasses.org/package/11216-PHP-Beautify-PHP-source-code-fixing-its-style.html
GNU General Public License v3.0
6 stars 3 forks source link

BUG: Beautifulizer multi-line define variable #4

Closed BaseMax closed 3 years ago

BaseMax commented 3 years ago

Source code/Input:

<?php
$name

    =4;

Output:

<?php
$name

=4;

Expected output:

<?php
$name = 4;
BaseMax commented 3 years ago

Probably solved.