Matt Neimeyer

Avatar
  • 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 {...
    • 2 followers
    • 1 comment
    • 0 votes
  • 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 ...
    • 2 followers
    • 1 comment
    • 0 votes
  • 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...
    • 2 followers
    • 1 comment
    • 0 votes
  • 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)).')'...
    • 2 followers
    • 3 comments
    • 0 votes
  • 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 ...
    • 2 followers
    • 1 comment
    • 0 votes
  • 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...
    • 2 followers
    • 1 comment
    • 0 votes