Completed
Branch 973/fix-visible-recaptcha (0580c7)
by
unknown
03:03 queued 30s
created
core/interfaces/EEI_Transaction.interface.php 1 patch
Indentation   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -6,63 +6,63 @@
 block discarded – undo
6 6
 interface EEI_Transaction extends EEI_Base
7 7
 {
8 8
 
9
-    /**
10
-     * @return EEI_Payment
11
-     */
12
-    public function last_payment();
9
+	/**
10
+	 * @return EEI_Payment
11
+	 */
12
+	public function last_payment();
13 13
 
14 14
 
15 15
 
16
-    /**
17
-     * Gets the total that should eb paid for this transaction
18
-     *
19
-     * @return float
20
-     */
21
-    public function total();
16
+	/**
17
+	 * Gets the total that should eb paid for this transaction
18
+	 *
19
+	 * @return float
20
+	 */
21
+	public function total();
22 22
 
23 23
 
24 24
 
25
-    /**
26
-     * Get the line item that represents the total for the transaction
27
-     *
28
-     * @return EEI_Line_Item
29
-     */
30
-    public function total_line_item();
25
+	/**
26
+	 * Get the line item that represents the total for the transaction
27
+	 *
28
+	 * @return EEI_Line_Item
29
+	 */
30
+	public function total_line_item();
31 31
 
32 32
 
33 33
 
34
-    /**
35
-     * Gets the primary registration for this transaction
36
-     *
37
-     * @return EEI_Registration
38
-     */
39
-    public function primary_registration();
34
+	/**
35
+	 * Gets the primary registration for this transaction
36
+	 *
37
+	 * @return EEI_Registration
38
+	 */
39
+	public function primary_registration();
40 40
 
41 41
 
42 42
 
43
-    /**
44
-     * Returns the balance due on the transaction
45
-     *
46
-     * @return float
47
-     */
48
-    public function remaining();
43
+	/**
44
+	 * Returns the balance due on the transaction
45
+	 *
46
+	 * @return float
47
+	 */
48
+	public function remaining();
49 49
 
50 50
 
51 51
 
52
-    /**
53
-     *        get Total Amount Paid to Date
54
-     *
55
-     * @access        public
56
-     * @return float
57
-     */
58
-    public function paid();
52
+	/**
53
+	 *        get Total Amount Paid to Date
54
+	 *
55
+	 * @access        public
56
+	 * @return float
57
+	 */
58
+	public function paid();
59 59
 
60 60
 
61 61
 
62
-    /**
63
-     * Retrieves all the pending payments on this transaction
64
-     *
65
-     * @return EEI_Payment[]
66
-     */
67
-    public function pending_payments();
62
+	/**
63
+	 * Retrieves all the pending payments on this transaction
64
+	 *
65
+	 * @return EEI_Payment[]
66
+	 */
67
+	public function pending_payments();
68 68
 }
Please login to merge, or discard this patch.
core/interfaces/EEI_Address.interface.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -6,59 +6,59 @@
 block discarded – undo
6 6
 interface EEI_Address
7 7
 {
8 8
 
9
-    public function address();
9
+	public function address();
10 10
 
11 11
 
12 12
 
13
-    public function address2();
13
+	public function address2();
14 14
 
15 15
 
16 16
 
17
-    public function city();
17
+	public function city();
18 18
 
19 19
 
20 20
 
21
-    /**
22
-     * @return EE_State
23
-     */
24
-    public function state_obj();
21
+	/**
22
+	 * @return EE_State
23
+	 */
24
+	public function state_obj();
25 25
 
26 26
 
27 27
 
28
-    public function state_ID();
28
+	public function state_ID();
29 29
 
30 30
 
31 31
 
32
-    public function state_name();
32
+	public function state_name();
33 33
 
34 34
 
35 35
 
36
-    public function state_abbrev();
36
+	public function state_abbrev();
37 37
 
38 38
 
39 39
 
40
-    public function state();
40
+	public function state();
41 41
 
42 42
 
43 43
 
44
-    /**
45
-     * @return EE_Country
46
-     */
47
-    public function country_obj();
44
+	/**
45
+	 * @return EE_Country
46
+	 */
47
+	public function country_obj();
48 48
 
49 49
 
50 50
 
51
-    public function country_ID();
51
+	public function country_ID();
52 52
 
53 53
 
54 54
 
55
-    public function country_name();
55
+	public function country_name();
56 56
 
57 57
 
58 58
 
59
-    public function country();
59
+	public function country();
60 60
 
61 61
 
62 62
 
63
-    public function zip();
63
+	public function zip();
64 64
 }
Please login to merge, or discard this patch.
core/interfaces/ResettableInterface.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,8 +14,8 @@
 block discarded – undo
14 14
 interface ResettableInterface
15 15
 {
16 16
 
17
-    /**
18
-     * @return mixed
19
-     */
20
-    public static function reset();
17
+	/**
18
+	 * @return mixed
19
+	 */
20
+	public static function reset();
21 21
 }
Please login to merge, or discard this patch.
core/interfaces/EEI_Event.interface.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,5 +6,5 @@
 block discarded – undo
6 6
 interface EEI_Event
7 7
 {
8 8
 
9
-    public function name();
9
+	public function name();
10 10
 }
Please login to merge, or discard this patch.
core/interfaces/relations/EEI_Related_Scope.interface.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -15,24 +15,24 @@
 block discarded – undo
15 15
 interface EEI_Related_Scope
16 16
 {
17 17
 
18
-    /**
19
-     * Used to return the related scope object.
20
-     * @return object  This may not necessarily be a EE_Base_Class object.
21
-     */
22
-    public function get_related_scope_object();
18
+	/**
19
+	 * Used to return the related scope object.
20
+	 * @return object  This may not necessarily be a EE_Base_Class object.
21
+	 */
22
+	public function get_related_scope_object();
23 23
 
24 24
 
25 25
 
26
-    /**
27
-     * Return the name representing the related_scope_object (i.e. Event Title, or Ticket Name).
28
-     * @return string
29
-     */
30
-    public function get_related_scope_name();
26
+	/**
27
+	 * Return the name representing the related_scope_object (i.e. Event Title, or Ticket Name).
28
+	 * @return string
29
+	 */
30
+	public function get_related_scope_name();
31 31
 
32 32
 
33
-    /**
34
-     * Return the related scope ID.
35
-     * @return mixed int|string
36
-     */
37
-    public function get_ID();
33
+	/**
34
+	 * Return the related scope ID.
35
+	 * @return mixed int|string
36
+	 */
37
+	public function get_ID();
38 38
 }
Please login to merge, or discard this patch.
core/interfaces/relations/EEI_Event_Relation.interface.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -12,23 +12,23 @@
 block discarded – undo
12 12
 {
13 13
 
14 14
 
15
-    /**
16
-     * Used to return the event object that can be derived from the EE_Base_Class object.
17
-     * @return EE_Event
18
-     */
19
-    public function get_related_event();
15
+	/**
16
+	 * Used to return the event object that can be derived from the EE_Base_Class object.
17
+	 * @return EE_Event
18
+	 */
19
+	public function get_related_event();
20 20
 
21 21
 
22
-    /**
23
-     * Used to return the name of the event that can be derived from the EE_Base_Class object.
24
-     * @return string
25
-     */
26
-    public function get_event_name();
22
+	/**
23
+	 * Used to return the name of the event that can be derived from the EE_Base_Class object.
24
+	 * @return string
25
+	 */
26
+	public function get_event_name();
27 27
 
28 28
 
29
-    /**
30
-     * Used to return the EVT_ID for the related event.
31
-     * @return string
32
-     */
33
-    public function get_event_ID();
29
+	/**
30
+	 * Used to return the EVT_ID for the related event.
31
+	 * @return string
32
+	 */
33
+	public function get_event_ID();
34 34
 }
Please login to merge, or discard this patch.
core/interfaces/EEI_Deletable.interface.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -13,13 +13,13 @@
 block discarded – undo
13 13
 
14 14
 
15 15
 
16
-    /**
17
-     * delete
18
-     *
19
-     * used for deleting the current object from the wherever the object is persisted ( ie: from the database, cache, session, etc )
20
-     *
21
-     * @access public
22
-     * @return bool | int
23
-     */
24
-    public function delete();
16
+	/**
17
+	 * delete
18
+	 *
19
+	 * used for deleting the current object from the wherever the object is persisted ( ie: from the database, cache, session, etc )
20
+	 *
21
+	 * @access public
22
+	 * @return bool | int
23
+	 */
24
+	public function delete();
25 25
 }
Please login to merge, or discard this patch.
core/interfaces/EEI_Request_Stack_Core_App.interface.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -6,12 +6,12 @@
 block discarded – undo
6 6
 interface EEI_Request_Stack_Core_App
7 7
 {
8 8
 
9
-    /**
10
-     * gives the core app a chance to handle the response after the request stack has fully processed
11
-     *
12
-     * @deprecated 4.9.53
13
-     * @param EE_Request $request
14
-     * @param EE_Response   $response
15
-     */
16
-    public function handle_response(EE_Request $request, EE_Response $response);
9
+	/**
10
+	 * gives the core app a chance to handle the response after the request stack has fully processed
11
+	 *
12
+	 * @deprecated 4.9.53
13
+	 * @param EE_Request $request
14
+	 * @param EE_Response   $response
15
+	 */
16
+	public function handle_response(EE_Request $request, EE_Response $response);
17 17
 }
Please login to merge, or discard this patch.
core/interfaces/EEI_Repository.interface.php 1 patch
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -13,33 +13,33 @@
 block discarded – undo
13 13
 
14 14
 
15 15
 
16
-    /**
17
-     * persist
18
-     *
19
-     * used for persisting the current object ( ie: to the database, cache, session, etc )
20
-     * can be supplied with a "persistence callback" on a per method call basis,
21
-     * or the $persist_method property can be set in the class constructor,
22
-     * for providing how to persist an object such as session caching, etc...
23
-     * an array of arguments can also be supplied that will be passed along to the object's persistence method
24
-     *
25
-     * @access public
26
-     * @param string $persistence_callback  name of method found on object that can be used for persisting the object
27
-     * @param array  $persistence_arguments arrays of arguments that will be passed to the object's persistence method
28
-     * @return bool | int
29
-     * @throws \EE_Error
30
-     */
31
-    public function persist($persistence_callback = '', $persistence_arguments = array());
16
+	/**
17
+	 * persist
18
+	 *
19
+	 * used for persisting the current object ( ie: to the database, cache, session, etc )
20
+	 * can be supplied with a "persistence callback" on a per method call basis,
21
+	 * or the $persist_method property can be set in the class constructor,
22
+	 * for providing how to persist an object such as session caching, etc...
23
+	 * an array of arguments can also be supplied that will be passed along to the object's persistence method
24
+	 *
25
+	 * @access public
26
+	 * @param string $persistence_callback  name of method found on object that can be used for persisting the object
27
+	 * @param array  $persistence_arguments arrays of arguments that will be passed to the object's persistence method
28
+	 * @return bool | int
29
+	 * @throws \EE_Error
30
+	 */
31
+	public function persist($persistence_callback = '', $persistence_arguments = array());
32 32
 
33 33
 
34 34
 
35
-    /**
36
-     * persist_all
37
-     *
38
-     * calls \EEI_Repository::persist() on all objects within the repository
39
-     *
40
-     * @access public
41
-     * @param string $persistence_callback name of method found on object that can be used for persisting it
42
-     * @return bool | int
43
-     */
44
-    public function persist_all($persistence_callback = '');
35
+	/**
36
+	 * persist_all
37
+	 *
38
+	 * calls \EEI_Repository::persist() on all objects within the repository
39
+	 *
40
+	 * @access public
41
+	 * @param string $persistence_callback name of method found on object that can be used for persisting it
42
+	 * @return bool | int
43
+	 */
44
+	public function persist_all($persistence_callback = '');
45 45
 }
Please login to merge, or discard this patch.