-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
40 lines (32 loc) · 763 Bytes
/
index.php
File metadata and controls
40 lines (32 loc) · 763 Bytes
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
<?php
class Index
{
public function someDeliberatelyBadCodeStyle()
{
return 1;
return json_encode([ 'dog']);
}
protected function more() {
return [
'heloo', 'world','okay', 'nomore'
];
}
const test = 'here';
public function noVisibility() { }
private function oneMore($test = null) {
return function (... $args) {
return array_walk(
$this->more(),
function ($param) {
if (!$param) {
$this->tellAJudge();
}
}
);
};
}
function tellAJudge() {
RETURN TRUE;
}
}
array_map(function($test){},[]);