-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathtyped-property.php.faces
78 lines (73 loc) · 1.18 KB
/
typed-property.php.faces
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
;; -*- mode: emacs-lisp -*-
(("<?php" . php-php-tag)
("
")
("class" . php-keyword)
(" ")
("Typed" . font-lock-type-face)
("
{
")
("private" . php-keyword)
(" ")
("?string" . php-class)
(" ")
("$" . php-variable-sigil)
("string" . php-variable-name)
(";
")
("private" . php-keyword)
(" ")
("Hoge" . php-class)
(" ")
("$" . php-variable-sigil)
("hoge" . php-variable-name)
(";
")
("public" . php-keyword)
(" ")
("function" . php-keyword)
(" ")
("__construct" . php-function-name)
("(")
("$" . php-variable-sigil)
("var" . php-variable-name)
(" = ")
("null" . php-constant)
(")
{
")
("$" . php-$this-sigil)
("this" . php-$this)
("->" . php-object-op)
("string" . php-property-name)
(" = ")
("$" . php-variable-sigil)
("var" . php-variable-name)
(";
}
")
("public" . php-keyword)
(" ")
("function" . php-keyword)
(" ")
("print" . php-function-name)
("()
{
var_dump(")
("$" . php-$this-sigil)
("this" . php-$this)
("->" . php-object-op)
("string" . php-property-name)
(");
}
}
(")
("new" . php-keyword)
(" ")
("Typed" . font-lock-type-face)
(")")
("->" . php-object-op)
("print" . php-method-call)
("();
"))