-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
72 lines (52 loc) · 2 KB
/
index.php
File metadata and controls
72 lines (52 loc) · 2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<title>CodeLeaf</title>
<link href="public/assets/css/style.css" type="text/css" rel="stylesheet" />
<!-- Catalyst (required library) -->
<script src="public/assets/js/Catalyst/Core.min.js" type="text/javascript"></script>
<script src="public/assets/js/Catalyst/Selection.min.js" type="text/javascript"></script>
<!-- CodeLeaf -->
<script src="public/assets/js/CodeLeaf/Core.min.js" type="text/javascript"></script>
<script src="public/assets/js/CodeLeaf/Bundle.min.js" type="text/javascript"></script>
<script src="public/assets/js/CodeLeaf/Tokenizer.min.js" type="text/javascript"></script>
<script src="public/assets/js/CodeLeaf/Editor.min.js" type="text/javascript"></script>
<!-- CodeLeaf Bundles -->
<script src="public/assets/js/CodeLeaf/Bundles/Generic.min.js" type="text/javascript"></script>
<script src="public/assets/js/CodeLeaf/Bundles/PHP.min.js" type="text/javascript"></script>
</head><body id="top" class="no-javascript y<?php echo date('Y'); ?> m<?php echo date('m'); ?> d<?php echo date('d'); ?>">
<div id="wrapper">
<pre role="application" class="codeleaf">
<?php
namespace Vehichle;
use Manufacturer, Bugatti;
class Veyron extends Car implements Chassi {
use Engine;
public static function make() {
return __CLASS__;
}
/**
* throttle
*
* Implemented method must create a new throttle control and add items to dashboard.
*
* @param Pedal $pedal
* @param array $dashboardItems Items to add to {@see Dashboard}.
*
* @return bool
*/
abstract public function throttle(Pedal $pedal, Array $dashboardItems);
}</pre>
</div>
<script type="text/javascript">
(function() {
var view = query('pre.codeleaf').pop();
var editor = this.editor = new CodeLeaf.Editor(view, {
bundle: 'PHP'
});
}).call(window);
</script>
</body></html>