mirror of
https://github.com/php/php-src.git
synced 2026-04-18 21:41:22 +02:00
28 lines
552 B
PHP
28 lines
552 B
PHP
<?php
|
|
|
|
/** @generate-function-entries */
|
|
|
|
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) {}
|
|
}
|