Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
FauxRequestUpload
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
6
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 4
0.00% covered (danger)
0.00%
0 / 1
6
1<?php
2/**
3 * Object to access a fake $_FILES array for testing purpose
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 */
22
23namespace MediaWiki\Request;
24
25/**
26 * Object to fake the $_FILES array
27 *
28 * @ingroup HTTP
29 * @since 1.37
30 */
31class FauxRequestUpload extends WebRequestUpload {
32
33    /**
34     * Constructor. Should only be called by MediaWiki\Request\FauxRequest
35     *
36     * @param array $data Array of *non*-urlencoded key => value pairs, the
37     *   fake (whole) FILES values
38     * @param FauxRequest $request The associated faux request
39     * @param string $key name of upload param
40     */
41    public function __construct( $data, $request, $key ) {
42        $this->request = $request;
43        $this->doesExist = isset( $data[$key] );
44        if ( $this->doesExist ) {
45            $this->fileInfo = $data[$key];
46        }
47    }
48
49}
50
51/** @deprecated class alias since 1.40 */
52class_alias( FauxRequestUpload::class, 'FauxRequestUpload' );