Matt Neimeyer
- Total activity 13
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 6
-
Created # + PHP leads to extra whitespace in CSS
If I have the following code in a <style> block inside a PHP file... .greenbuttons { color: #<?php cfg('green'); ?>; } ... and I hit Ctrl-Alt-L to reformat the file I end up with... .greenbuttons {... -
Created 3rd Party Libraries
Is there a way to mark a directory as excluded for inspection but included for code completion?My "external" folder has 3rd party libraries in it that I don't want to fix up but if I just mark the ... -
Created Possible to Suppress Specific Deprecated Warnings?
Is there a way to suppress the deprecated warning for certain PHP elements but not others? I know I could go to Settings -> Editor -> Inspections -> PHP -> General -> Deprecated and turn them all o... -
Created Embedded SQL syntax error looks right to me...
The following statement is getting flagged with a syntax error:$query = 'INSERT INTO saved_orders ('.implode(', ', array_keys($FieldArray)).') VALUES ('.implode(', ', array_values($FieldArray)).')'... -
Created Embedded SQL Quotes Removed by Formatter
I feel like I have to have set something wrong somewhere... I'm cleaning up a project I inherited. and if I have a line like such... $query = 'SELECT * FROM a WHERE b = "c"';After formatting ... -
Created Simple methods in one line bug?
I'm not sure if this is by design or a bug...When I select to "Keep when reformatting -> Simple methods in one line" but also set "Braces placement -> In function declaration" to "Next line shifted...