-
Notifications
You must be signed in to change notification settings - Fork 5
/
test.php
45 lines (38 loc) · 807 Bytes
/
test.php
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
<?php
/**
* This file is for comparing the theme to the actual Netbeans theme.
*
* <pre>
* Example doc block tags
* </pre>
*/
namespace Test\Test;
use Test;
class ClassName
{
/**
* An example internal property.
*
* @var $internal
*/
private $internal;
public $publicProperty;
public function __construct($options = array())
{
// Some construction action happening
$this->publicProperty = $options['test'];
return false;
}
}
?>
<html>
<title>Example Html</title>
<body>
<label for="testInput">Test Input</label>
<input name="testInput" type="text" value="Just an input value" />
<p>
<!-- A comment -->
Here is some <strong>text!</strong>
</p>
</body>
</html>