Failed Conditions
Push — develop ( 7824fe...dc653d )
by Remco
23:29 queued 24s
created

deactivate_plugin()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
/**
3
 * Plugin Name: Pronamic Pay Adyen Add-On
4
 * Plugin URI: https://www.pronamic.eu/plugins/pronamic-pay-adyen/
5
 * Description: Extend the Pronamic Pay plugin with the Adyen gateway to receive payments with Adyen through a variety of WordPress plugins.
6
 *
7
 * Version: 2.0.0
8
 * Requires at least: 4.7
9
 *
10
 * Author: Pronamic
11
 * Author URI: https://www.pronamic.eu/
12
 *
13
 * Text Domain: pronamic-pay-adyen
14
 * Domain Path: /languages/
15
 *
16
 * License: GPL-3.0-or-later
17
 *
18
 * GitHub URI: https://github.com/wp-pay-gateways/adyen
19
 *
20
 * @author    Pronamic <[email protected]>
21
 * @copyright 2005-2019 Pronamic
22
 * @license   GPL-3.0-or-later
23
 * @package   Pronamic\WordPress\Pay\Gateways\Adyen
24
 */
25
26
add_filter( 'pronamic_pay_gateways', function( $gateways ) {
27
	$gateways[] = '\Pronamic\WordPress\Pay\Gateways\Adyen\Integration';
28
29
	return $gateways;
30
} );
31