Issues (54)

example/Contract/PicUploadTest.php (2 issues)

Labels
Severity
1
<?php
2
include_once '../../vendor/autoload.php';
3
4
use tinymeng\Chinaums\Factory;
5
6
date_default_timezone_set('PRC');
7
8
$config = [
9
    'gateway' => 'https://selfapply-test.chinaums.com',
10
    // 'gateway' => 'https://yinshangpai.chinaums.com',
11
    // 商户号
12
    'accesser_id' => '300015',
13
    // 回调验证需要的md5key
14
    'private_key' => 'udik876ehjde32dU61edsxsf'
15
];
16
$data = [
17
    'request_date' => date('YmdHis'),//请求时间
18
    'pic_base64' => 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAMAAABiM0N1AAAAmVBMVEUAAAAAygEAygEAzw0A3DIAygEAygEAzQUAygEAygEAygIA0AoAygEAygEAygIAywMAzwgA1BIA/2AAygMA2RsAygEAygEAygIAywIAywQAzAQAywQAywYAygEAygEAygEAyQEAygIAygIAygIAywIAygIAzQcAygEAygEAygEAygIAygIAygIAzAYAywMAywMAzAMAygIAyQFOdEr4AAAAMnRSTlMA+/ETBdm8LtvPchjIwZhOHA0CWwnn4YZ1Rj03JvTt67GhnJGLeSLVt6t+bWcrYVdKppctVJsAAAJbSURBVFjD7dfXmqJAEIbhv8FAEAUUc85Zp+7/4lZ9lBWrEbrZPZv3cEYL+ewGxK9Chs39zLMiQ4hRtKnMV1cX6tbOdkxMe9Y0ocDdbyiNmDZKyKc/FfRV1DHzjPEo2yhzlD+lfIxuiHShM6LcatX0xhVSIVZpdSJStGtB4iJIme2DOQrS0GaTmqSn7CKhJ0iTl9yeI90PdEz0LtmkpXJF0pI0iBlbkSeNQONOXLk6f10OKqTKOsRp3Log5/mNKX9RjTCu2zXuHy/A3VYtzc8AsYZFD6tHIVJgLH3EqnGTdghgqZImQMy8xYn1AJQ/jllLvQBdQiAZJzYHhpQ0QC+SpdkNABYn1gbObBBclt9YrAEW552PBSX94OYgEodzAiAZh+nD+zwH/3HMzVuaUmJfOgZJnGHRhwXuWvXn7bAP8DhcFxN2zzKfb9m80vA4XAf8fFd4eu0nHodbSgZFnwN4HK4DQxZOolGmb/aQ/L8M5pR1qXEge0UjKw7XxII4L0cctiGa0j+zOFlM+NKbOouTwQJgEyeGGXH4MgK6JFHPiMP3LODKDip6wDUjDlswc5IQXo3yO+JuLaigyXNTzaig42vhTqgQO2RPWVrEALEdFbDCXy2btFVCvPG1M9kBEqpsku5j7SkiDdYazLCscV4uJIIpKdoFkOuorZ8DUtWo8M8s1V03PuKbvOvS2Af4xs15GeumjVHZvJNZD5nmrwDdtXld1gR7UPE6/RA5tOlOLEw8lKrN/Xxbs62y7W3rq0s1RB6v59LpEEU5tzGbHoo70/hQwr8QlPDrP/oD+JVFlunvag4AAAAASUVORK5CYII=',
19
    'request_seq' => uniqid(), 
20
];
21
Factory::config($config);
22
// $response = Factory::Contract()->PicUpload()->request($data);
23
$response = Factory::Contract()->PicUpload($data);
0 ignored issues
show
The call to tinymeng\Chinaums\Factory::Contract() has too few arguments starting with config. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

23
$response = Factory::/** @scrutinizer ignore-call */ Contract()->PicUpload($data);

This check compares calls to functions or methods with their respective definitions. If the call has less arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress. Please note the @ignore annotation hint above.

Loading history...
24
echo 'response:' . $response . PHP_EOL;
0 ignored issues
show
Are you sure $response of type tinymeng\Chinaums\Service\Contract\PicUpload can be used in concatenation? Consider adding a __toString()-method. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

24
echo 'response:' . /** @scrutinizer ignore-type */ $response . PHP_EOL;
Loading history...
25