for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Pronamic\WordPress\Pay\Gateways\Ingenico;
/**
* Title: Ingenico data helper class
* Description:
* Copyright: 2005-2021 Pronamic
* Company: Pronamic
*
* @author Remco Tolsma
* @version 2.0.0
* @since 1.1.0
*/
abstract class DataHelper {
* Data
* @var array
protected $data;
* Constructs and initialize a Ogone data default helper class
* @param Data $data Data.
public function __construct( Data $data ) {
$this->data = $data;
$data
Pronamic\WordPress\Pay\Gateways\Ingenico\Data
array
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..
}
* Set field
* @param string $name Name.
* @param string $value Value.
* @return mixed
public function set_field( $name, $value ) {
$this->data->set_field( $name, $value );
return $this;
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..