Update: 2018 15.0.0.201

New release and update announcements
Post Reply
User avatar
Karlis
Site Admin
Posts: 3605
Joined: Mon Jul 15, 2002 5:24 pm
Location: Riga, Latvia, Europe
Contact:

Update: 2018 15.0.0.201

Post by Karlis »

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
Karlis Blumentals
Blumentals Software
www.blumentals.net
gemini190647
Posts: 0
Joined: Tue Jul 19, 2011 3:02 am
Location: Cotacachi, Imbabura, Ecuador

Re: Update: 2018 15.0.0.201

Post by gemini190647 »

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'];
} <--
User avatar
Aivars
Blumentals Software Developer
Posts: 2462
Joined: Thu Aug 22, 2002 1:40 pm
Location: Latvia

Re: Update: 2018 15.0.0.201

Post by Aivars »

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
Post Reply