class Rouge::Lexers::PHP

def self.detect?(text)

def self.detect?(text)
  return true if text.shebang?('php')
  return false if /^<\?hh/ =~ text
  return true if /^<\?php/ =~ text
end