Skip to content

Latest commit

 

History

History
52 lines (29 loc) · 1.17 KB

file.rst

File metadata and controls

52 lines (29 loc) · 1.17 KB

Resource\File

Usage Example

<?php
use JobRouter\AddOn\RestClient\Resource\File;

require_once 'vendor/autoload.php';

$file1 = new File('/path/to/file.pdf');

$file2 = new File('/path/to/file.pdf', 'invoice42.pdf');

$file3 = new File('path/to/file', 'invoice42.pdf', 'application/pdf');