summaryrefslogtreecommitdiff
path: root/tests/examplefiles/test.php
diff options
context:
space:
mode:
authorMiikka Salminen <miikka.salminen@gmail.com>2016-02-03 21:28:17 +0200
committerMiikka Salminen <miikka.salminen@gmail.com>2016-02-03 21:28:17 +0200
commitbf473c43f167865086b69446509840960d1cfa90 (patch)
tree6b96b25bb95017cd3be64fee0f236e98952dd835 /tests/examplefiles/test.php
parent8194c67d27cc253f9ba4e2aa0f085a2f4cccf26c (diff)
downloadpygments-git-bf473c43f167865086b69446509840960d1cfa90.tar.gz
Adds an entry to changelog. Adds magic method and variable lexing for PHP along with corresponding changes in a test file.
Diffstat (limited to 'tests/examplefiles/test.php')
-rw-r--r--tests/examplefiles/test.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/examplefiles/test.php b/tests/examplefiles/test.php
index 2ce4023e..794961c1 100644
--- a/tests/examplefiles/test.php
+++ b/tests/examplefiles/test.php
@@ -505,6 +505,30 @@ function &byref() {
return $x;
}
+// Test highlighting of magic methods and variables
+class MagicClass {
+ public $magic_str;
+ public $ordinary_str;
+
+ public function __construct($some_var) {
+ $this->magic_str = __FILE__;
+ $this->ordinary_str = $some_var;
+ }
+
+ public function __toString() {
+ return $this->magic_str;
+ }
+
+ public function nonMagic() {
+ return $this->ordinary_str;
+ }
+}
+
+$magic = new MagicClass(__DIR__);
+__toString();
+$magic->nonMagic();
+$magic->__toString();
+
echo <<<EOF
Test the heredocs...