![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/vendor/braintree/braintree_php/lib/Braintree/ |
<?php namespace Braintree; use InvalidArgumentException; /** * Upload documents to Braintree in exchange for a DocumentUpload object. * * An example of creating a document upload with all available fields: * $result = Braintree\DocumentUpload::create([ * "kind" => Braintree\DocumentUpload::EVIDENCE_DOCUMENT, * "file" => $pngFile * ]); * * See our {@link https://developer.paypal.com/braintree/docs/reference/response/document-upload developer docs} for information on attributes */ class DocumentUpload extends Base { /* DocumentUpload Kind */ const EVIDENCE_DOCUMENT = "evidence_document"; protected function _initialize($documentUploadAttribs) { $this->_attributes = $documentUploadAttribs; } /** * Creates a DocumentUpload object * * @param mixed $params containing: * kind - The kind of document * file - The open file to upload * * @throws InvalidArgumentException if the params are not expected * * @return Result\Successful|Result\Error */ public static function create($params) { return Configuration::gateway()->documentUpload()->create($params); } /** * Creates an instance of a DocumentUpload from given attributes * * @param array $attributes response object attributes * * @return DocumentUpload */ public static function factory($attributes) { $instance = new self(); $instance->_initialize($attributes); return $instance; } }