-
Notifications
You must be signed in to change notification settings - Fork 0
/
funserialize.phpstub
121 lines (96 loc) · 2.01 KB
/
funserialize.phpstub
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?php
// The following functions are handled by Psalm already and so were excluded:
// file_get_contents(), file_put_contents(), unlink(), mkdir(), rmdir(),
// readfile(), fopen(), parse_ini_file(), file(), copy(), rename()
/**
* @psalm-taint-sink file $filename
*/
function is_readable($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function file_exists($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function filesize($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function is_executable($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function is_writable($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function is_file($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function is_link($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function is_dir($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function fileatime($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function filectime($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function filemtime($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function touch($filename, $time, $atime) { }
/**
* @psalm-taint-sink file $filename
*/
function stat($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function lstat($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function fileperms($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function filetype($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function fileinode($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function fileowner($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function filegroup($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function getimagesize($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function exif_read_data($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function exif_read_data($filename) { }
/**
* @psalm-taint-sink file $filename
*/
function md5_file($filename) { }