value pairs, the * fake (whole) FILES values * @param FauxRequest $request The associated faux request * @param string $key name of upload param */ public function __construct( $data, $request, $key ) { $this->request = $request; $this->doesExist = isset( $data[$key] ); if ( $this->doesExist ) { $this->fileInfo = $data[$key]; } } }