mirror of
https://github.com/php/php-src.git
synced 2026-04-14 19:41:05 +02:00
24 lines
518 B
PHP
24 lines
518 B
PHP
<?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) {}
|
|
}
|