1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 21:41:22 +02:00
Files
archived-php-src/ext/curl/curl_file.stub.php
Máté Kocsis 305b17e85f Do not include the same stub multiple times
Closes GH-5322
2020-04-03 14:23:54 +02:00

26 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) {}
}