Test Failed
Push — develop ( 27299e...c51b01 )
by Reüel
05:16
created

src/Channel.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * Channel
4
 *
5
 * @author    Pronamic <[email protected]>
6
 * @copyright 2005-2019 Pronamic
7
 * @license   GPL-3.0-or-later
8
 * @package   Pronamic\WordPress\Pay\Gateways\Adyen
9
 */
10
11
namespace Pronamic\WordPress\Pay\Gateways\Adyen;
12
13
use Pronamic\WordPress\Pay\Payments\PaymentStatus as Core_Statuses;
0 ignored issues
show
The type Pronamic\WordPress\Pay\Payments\PaymentStatus was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
14
15
/**
16
 * Channel
17
 *
18
 * @link https://docs.adyen.com/api-explorer/#/PaymentSetupAndVerificationService/v41/payments
19
 *
20
 * @author  Remco Tolsma
21
 * @version 1.0.0
22
 * @since   1.0.0
23
 */
24
class Channel {
25
	/**
26
	 * Channel iOS.
27
	 *
28
	 * @var string
29
	 */
30
	const IOS = 'iOS';
31
32
	/**
33
	 * Channel Android.
34
	 *
35
	 * @var string
36
	 */
37
	const ANDROID = 'Android';
38
39
	/**
40
	 * Channel web.
41
	 *
42
	 * @var string
43
	 */
44
	const WEB = 'Web';
45
}
46