Matt Neimeyer
- 活动总数 13
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 6
-
Matt Neimeyer 创建了一个帖子, # + 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 {... -
Matt Neimeyer 创建了一个帖子, 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 ... -
Matt Neimeyer 创建了一个帖子, 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... -
-
Matt Neimeyer 创建了一个帖子, 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)).')'... -
Matt Neimeyer 创建了一个帖子, 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 ... -
Matt Neimeyer 创建了一个帖子, 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...