Another bug fix release to initial final release:
* Fixed: Code explorer sorting
* Improved: Auto complete appearance on high DPI
* Fixed: Find Declaration now works for function parameter type hints (classes).
* Added: Grayscale icons for private class properties in Code Explorer
* Improved: PHP formatter checks PHP version and gives more informative error message on old versions
* Improved: Installer now always requests for install folder (not just upon the first install), to make it easy to install on USB
* Other minor fixes
Update: 2018 15.0.0.201
-
- Posts: 0
- Joined: Tue Jul 19, 2011 3:02 am
- Location: Cotacachi, Imbabura, Ecuador
Re: Update: 2018 15.0.0.201
Karlis, I have been 'playing around' with the PHP formatter and it does not produce the right (expected) results. I have been using the PSR-2 coding style guide.
Here is an example of what is produced:
if ( isset( $SITE['eMail'] ) )
{
$replyto = $SITE['eMail'];} <--
Here is an example of what should be produced (expected according to PR2):
if ( isset( $SITE['eMail'] ) )
{
$replyto = $SITE['eMail'];
} <--
Here is an example of what is produced:
if ( isset( $SITE['eMail'] ) )
{
$replyto = $SITE['eMail'];} <--
Here is an example of what should be produced (expected according to PR2):
if ( isset( $SITE['eMail'] ) )
{
$replyto = $SITE['eMail'];
} <--
Re: Update: 2018 15.0.0.201
You're right, this isn't completely correct, but fortunately it will happen only if user has placed the closing brace in the same line in the first place. I've added it to the bugs list, but it's probably not critical.
Blumentals Software Programmer