|
1
|
<?php |
|
2
|
|
|
3
|
|
|
4
|
namespace JFB_Modules\Gateways\Paypal\Scenarios_Connectors; |
|
5
|
|
|
6
|
// If this file is called directly, abort. |
|
7
|
if ( ! defined( 'WPINC' ) ) { |
|
8
|
die; |
|
9
|
} |
|
10
|
|
|
11
|
trait Pay_Now { |
|
12
|
|
|
13
|
public static function scenario_id() { |
|
14
|
return 'PAY_NOW'; |
|
15
|
} |
|
16
|
|
|
17
|
} |
|
18
|
|