summaryrefslogtreecommitdiff
path: root/ext/curl/curl_file.stub.php
blob: 28a218c69836f4f3fc75be7bc2e518bc9c2865bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?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) {}
}