blob: 14d775d29377629dccc839753b75eb9bec39dafe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
/** @generate-function-entries */
class CURLFile
{
public function __construct(string $filename, ?string $mimetype = null, ?string $postname = null) {}
/** @return string */
public function getFilename() {}
/** @return string */
public function getMimeType() {}
/** @return string */
public function getPostFilename() {}
/** @return void */
public function setMimeType(string $mime) {}
/** @return void */
public function setPostFilename(string $postname) {}
}
|