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

src/ResponseObject.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * Response
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
 * Response object
17
 *
18
 * @author  Remco Tolsma
19
 * @version 1.0.0
20
 * @since   1.0.0
21
 */
22
abstract class ResponseObject {
23
	/**
24
	 * Originale response object.
25
	 *
26
	 * @var object|null
27
	 */
28
	private $original_object;
29
30
	/**
31
	 * Get original object.
32
	 *
33
	 * @return object|null
34
	 */
35
	public function get_original_object() {
36
		return $this->original_object;
37
	}
38
39
	/**
40
	 * Set original object.
41
	 *
42
	 * @param object|null $object Object.
43
	 * @return void
44
	 */
45 12
	public function set_original_object( $object ) {
46 12
		$this->original_object = $object;
47 12
	}
48
49
	/**
50
	 * Get JSON.
51
	 *
52
	 * @return object
53
	 */
54 2
	public function get_json() {
55 2
		if ( null !== $this->original_object ) {
56 1
			return $this->original_object;
57
		}
58
59 1
		return (object) array();
60
	}
61
}
62