PluginProbe
User Access Manager / 2.3.2
User Access Manager v2.3.2
2.3.20 2.3.19 2.3.18 2.3.17 2.3.16 2.3.15 2.3.14 2.3.13 trunk 0.6 0.6.1 0.6.2 0.7 0.7 Beta 0.7.0.1 0.8 0.8.0.1 0.8.0.2 0.9 0.9.1 0.9.1.1 0.9.1.2 0.9.1.3 0.9.1.4 1.0 All 136 releases
← All changes | src/Wrapper/Php.php +6 -63 2.3.152.3.2 View file →
@@ -46,22 +46,14 @@
46 46
47 47 /**
48 48 * @see ini_get()
49 49 */
50 - public function iniGet(string $variableName): int|string|false
50 + public function iniGet(string $variableName): int|string
51 51 {
52 52 return ini_get($variableName);
53 53 }
54 54
55 55 /**
56 - * @see header()
57 - */
58 - public function header(string $header, bool $replace = true, int $responseCode = 0): void
59 - {
60 - header($header, $replace, $responseCode);
61 - }
62 -
63 - /**
64 56 * @see set_time_limit()
65 57 */
66 58 public function setTimeLimit(int $seconds): bool
67 59 {
@@ -70,9 +62,9 @@
70 62
71 63 /**
72 64 * @see fread()
73 65 */
74 - public function fread($handle, int $length): false|string
66 + public function fread($handle, int $length): bool|string
75 67 {
76 68 return fread($handle, $length);
77 69 }
78 70
@@ -99,41 +91,17 @@
99 91
100 92 /**
101 93 * @see file_put_contents()
102 94 */
103 - public function filePutContents(string $filename, mixed $data, int $flags = 0, $context = null): false|int
95 + public function filePutContents(string $filename, mixed $data, int $flags = 0, $context = null): bool|int
104 96 {
105 97 return file_put_contents($filename, $data, $flags, $context);
106 98 }
107 99
108 100 /**
109 - * @see is_file()
110 - */
111 - public function isFile(string $filename): bool
112 - {
113 - return is_file($filename);
114 - }
115 -
116 - /**
117 - * @see filemtime()
118 - */
119 - public function fileMTime(string $filename): int|false
120 - {
121 - return filemtime($filename);
122 - }
123 -
124 - /**
125 - * @see file_get_contents()
126 - */
127 - public function fileGetContents(string $filename): string|false
128 - {
129 - return @file_get_contents($filename);
130 - }
131 -
132 - /**
133 101 * @see igbinary_serialize()
134 102 */
135 - public function igbinarySerialize(mixed $value): ?string
103 + public function igbinarySerialize(mixed $value): string
136 104 {
137 105 return igbinary_serialize($value);
138 106 }
139 107
@@ -149,11 +117,10 @@
149 117 * @see mkdir()
150 118 */
151 119 public function mkdir(string $pathname, int $mode = 0777, bool $recursive = false, $context = null): bool
152 120 {
153 - return ($context !== null)
154 - ? mkdir($pathname, $mode, $recursive, $context)
155 - : mkdir($pathname, $mode, $recursive);
121 + return ($context !== null) ?
122 + mkdir($pathname, $mode, $recursive, $context) : mkdir($pathname, $mode, $recursive);
156 123 }
157 124
158 125 /**
159 126 * @see connection_status()
@@ -168,30 +135,6 @@
168 135 */
169 136 public function fClose($handle): bool
170 137 {
171 138 return fclose($handle);
172 - }
173 -
174 - /**
175 - * @see fseek()
176 - */
177 - public function fseek($handle, int $offset, int $whence = SEEK_SET): int
178 - {
179 - return fseek($handle, $offset, $whence);
180 - }
181 -
182 - /**
183 - * @see flush()
184 - */
185 - public function flush(): void
186 - {
187 - flush();
188 - }
189 -
190 - /**
191 - * @see finfo_close()
192 - */
193 - public function fInfoClose($fileInfo): bool
194 - {
195 - return finfo_close($fileInfo);
196 139 }
197 140 }