|
14 | 14 | * @method static p(...$arguments)
|
15 | 15 | * @method static img(...$arguments)
|
16 | 16 | * @method static span(...$arguments)
|
17 |
| - * @method static val(...$arguments) |
18 | 17 | * @method static ul(...$arguments)
|
19 | 18 | * @method static table(...$arguments)
|
20 | 19 | * @method static tbody(...$arguments)
|
@@ -1071,6 +1070,71 @@ public function __call($tag, $arguments): Html
|
1071 | 1070 | return call_user_func_array([$this, 'addElement'], $arguments);
|
1072 | 1071 | }
|
1073 | 1072 |
|
| 1073 | + public static function a(...$arguments) |
| 1074 | + { |
| 1075 | + return self::createElement(...$arguments); |
| 1076 | + } |
| 1077 | + |
| 1078 | + public static function button(...$arguments) |
| 1079 | + { |
| 1080 | + return self::createElement(...$arguments); |
| 1081 | + } |
| 1082 | + |
| 1083 | + public static function div(...$arguments) |
| 1084 | + { |
| 1085 | + return self::createElement(...$arguments); |
| 1086 | + } |
| 1087 | + |
| 1088 | + public static function input(...$arguments) |
| 1089 | + { |
| 1090 | + return self::createElement(...$arguments); |
| 1091 | + } |
| 1092 | + |
| 1093 | + public static function li(...$arguments) |
| 1094 | + { |
| 1095 | + return self::createElement(...$arguments); |
| 1096 | + } |
| 1097 | + |
| 1098 | + public static function p(...$arguments) |
| 1099 | + { |
| 1100 | + return self::createElement(...$arguments); |
| 1101 | + } |
| 1102 | + |
| 1103 | + public static function img(...$arguments) |
| 1104 | + { |
| 1105 | + return self::createElement(...$arguments); |
| 1106 | + } |
| 1107 | + |
| 1108 | + public static function span(...$arguments) |
| 1109 | + { |
| 1110 | + return self::createElement(...$arguments); |
| 1111 | + } |
| 1112 | + |
| 1113 | + public static function ul(...$arguments) |
| 1114 | + { |
| 1115 | + return self::createElement(...$arguments); |
| 1116 | + } |
| 1117 | + |
| 1118 | + public static function table(...$arguments) |
| 1119 | + { |
| 1120 | + return self::createElement(...$arguments); |
| 1121 | + } |
| 1122 | + |
| 1123 | + public static function tbody(...$arguments) |
| 1124 | + { |
| 1125 | + return self::createElement(...$arguments); |
| 1126 | + } |
| 1127 | + |
| 1128 | + public static function td(...$arguments) |
| 1129 | + { |
| 1130 | + return self::createElement(...$arguments); |
| 1131 | + } |
| 1132 | + |
| 1133 | + public static function tr(...$arguments) |
| 1134 | + { |
| 1135 | + return self::createElement(...$arguments); |
| 1136 | + } |
| 1137 | + |
1074 | 1138 | /**
|
1075 | 1139 | * Create a new element.
|
1076 | 1140 | *
|
|
0 commit comments