mirror of
https://github.com/php/php-src.git
synced 2024-12-19 23:11:42 +08:00
25 lines
517 B
PHP
25 lines
517 B
PHP
|
<?php
|
||
|
|
||
|
class CURLFile {
|
||
|
public function __construct(
|
||
|
string $filename,
|
||
|
string $mimetype = UNKNOWN,
|
||
|
string $postname = UNKNOWN
|
||
|
) {}
|
||
|
|
||
|
/** @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) {}
|
||
|
}
|