Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
15 lines
385 B
Plaintext
15 lines
385 B
Plaintext
Prism.languages.insertBefore('php', 'variable', {
|
|
'this': {
|
|
pattern: /\$this\b/,
|
|
alias: 'keyword'
|
|
},
|
|
'global': /\$(?:GLOBALS|HTTP_RAW_POST_DATA|_(?:COOKIE|ENV|FILES|GET|POST|REQUEST|SERVER|SESSION)|argc|argv|http_response_header|php_errormsg)\b/,
|
|
'scope': {
|
|
pattern: /\b[\w\\]+::/,
|
|
inside: {
|
|
'keyword': /\b(?:parent|self|static)\b/,
|
|
'punctuation': /::|\\/
|
|
}
|
|
}
|
|
});
|