mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
23 lines
538 B
PHP
23 lines
538 B
PHP
<?php
|
|
|
|
/** @generate-function-entries */
|
|
|
|
class CURLFile
|
|
{
|
|
public function __construct(string $filename, ?string $mime_type = null, ?string $posted_filename = null) {}
|
|
|
|
/** @return string */
|
|
public function getFilename() {}
|
|
|
|
/** @return string */
|
|
public function getMimeType() {}
|
|
|
|
/** @return string */
|
|
public function getPostFilename() {}
|
|
|
|
/** @return void */
|
|
public function setMimeType(string $mime_type) {}
|
|
|
|
/** @return void */
|
|
public function setPostFilename(string $posted_filename) {}
|
|
}
|