| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 10 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | 1 | public function __construct() { |
|
| 27 | 1 | $this->id = 'adyen'; |
|
| 28 | 1 | $this->name = 'Adyen'; |
|
| 29 | 1 | $this->provider = 'adyen'; |
|
| 30 | 1 | $this->url = 'https://www.adyen.com/'; |
|
| 31 | 1 | $this->dashboard_url = array( |
|
| 32 | 1 | __( 'test', 'pronamic_ideal' ) => 'https://ca-test.adyen.com/ca/ca/login.shtml', |
|
| 33 | 1 | __( 'live', 'pronamic_ideal' ) => 'https://ca-live.adyen.com/ca/ca/login.shtml', |
|
| 34 | ); |
||
| 35 | |||
| 36 | // Notifications. |
||
| 37 | 1 | $notifications = new NotificationsController(); |
|
| 38 | |||
| 39 | 1 | $notifications->setup(); |
|
| 40 | 1 | } |
|
| 75 |