Completed
Branch BUG-7537 (42ca46)
by
unknown
129:55 queued 113:40
created
core/libraries/payment_methods/EE_Gateway.lib.php 1 patch
Indentation   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -1,35 +1,35 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Event Espresso
4
- *
5
- * Event Registration and Management Plugin for WordPress
6
- *
7
- * @ package			Event Espresso
8
- * @ author				Seth Shoultes
9
- * @ copyright		(c) 2008-2011 Event Espresso  All Rights Reserved.
10
- * @ license			http://eventespresso.com/support/terms-conditions/   * see Plugin Licensing *
11
- * @ link					http://www.eventespresso.com
12
- * @ version		 	4.2
13
- *
14
- * ------------------------------------------------------------------------
15
- *
16
- * EE_Gateway
17
- *
18
- * Abstract base class for all gateways
19
- *
20
- * @package			Event Espresso
21
- * @subpackage		core/libraries/payment_methods
22
- * @author			Mike Nelson
23
- *
24
- * ------------------------------------------------------------------------
25
- * Class for processing payments. This has been designed in a way so that other WP Plugins
26
- * can use this class for processing payments, and theoreitcally any of its children, provided they implement the
27
- * interfaces it uses.
28
- * The necessary interfaces to be implemented are contained in core/libaries/payment_methods/EEI_Payment_Method_Interfaces.php and
29
- * EEI_Interfaces. After constructing a gateway object, you need to set all the properties which reference many of the
30
- * needed helpers and models (see all the methods starting with "set_", eg seg_line_item_helper which should be passed an object
31
- * which implements EEHI_Line_Item_Helper; etc).
32
- */
3
+	 * Event Espresso
4
+	 *
5
+	 * Event Registration and Management Plugin for WordPress
6
+	 *
7
+	 * @ package			Event Espresso
8
+	 * @ author				Seth Shoultes
9
+	 * @ copyright		(c) 2008-2011 Event Espresso  All Rights Reserved.
10
+	 * @ license			http://eventespresso.com/support/terms-conditions/   * see Plugin Licensing *
11
+	 * @ link					http://www.eventespresso.com
12
+	 * @ version		 	4.2
13
+	 *
14
+	 * ------------------------------------------------------------------------
15
+	 *
16
+	 * EE_Gateway
17
+	 *
18
+	 * Abstract base class for all gateways
19
+	 *
20
+	 * @package			Event Espresso
21
+	 * @subpackage		core/libraries/payment_methods
22
+	 * @author			Mike Nelson
23
+	 *
24
+	 * ------------------------------------------------------------------------
25
+	 * Class for processing payments. This has been designed in a way so that other WP Plugins
26
+	 * can use this class for processing payments, and theoreitcally any of its children, provided they implement the
27
+	 * interfaces it uses.
28
+	 * The necessary interfaces to be implemented are contained in core/libaries/payment_methods/EEI_Payment_Method_Interfaces.php and
29
+	 * EEI_Interfaces. After constructing a gateway object, you need to set all the properties which reference many of the
30
+	 * needed helpers and models (see all the methods starting with "set_", eg seg_line_item_helper which should be passed an object
31
+	 * which implements EEHI_Line_Item_Helper; etc).
32
+	 */
33 33
 abstract class EE_Gateway{
34 34
 	/**
35 35
 	 * a constant used as a possible value for $_currencies_supported to indicate
Please login to merge, or discard this patch.