Completed
Branch dependabot/npm_and_yarn/wordpr... (fada19)
by
unknown
19:36 queued 17:22
created
core/interfaces/EEI_Collection.interface.php 1 patch
Indentation   +54 added lines, -54 removed lines patch added patch discarded remove patch
@@ -14,70 +14,70 @@
 block discarded – undo
14 14
 interface EEI_Collection
15 15
 {
16 16
 
17
-    /**
18
-     * add
19
-     *
20
-     * attaches an object to the Collection
21
-     * and sets any supplied data associated with the current iterator entry
22
-     * by calling EEI_Collection::set_info()
23
-     *
24
-     * @access public
25
-     * @param object $object
26
-     * @param mixed  $info
27
-     * @return bool
28
-     */
29
-    public function add($object, $info = null);
17
+	/**
18
+	 * add
19
+	 *
20
+	 * attaches an object to the Collection
21
+	 * and sets any supplied data associated with the current iterator entry
22
+	 * by calling EEI_Collection::set_info()
23
+	 *
24
+	 * @access public
25
+	 * @param object $object
26
+	 * @param mixed  $info
27
+	 * @return bool
28
+	 */
29
+	public function add($object, $info = null);
30 30
 
31 31
 
32 32
 
33
-    /**
34
-     * set_info
35
-     *
36
-     * Sets the info associated with an object in the Collection
37
-     *
38
-     * @access public
39
-     * @param object $object
40
-     * @param mixed  $info
41
-     * @return bool
42
-     */
43
-    public function set_info($object, $info = null);
33
+	/**
34
+	 * set_info
35
+	 *
36
+	 * Sets the info associated with an object in the Collection
37
+	 *
38
+	 * @access public
39
+	 * @param object $object
40
+	 * @param mixed  $info
41
+	 * @return bool
42
+	 */
43
+	public function set_info($object, $info = null);
44 44
 
45 45
 
46 46
 
47
-    /**
48
-     * get_by_info
49
-     *
50
-     * finds and returns an object in the Collection based on the info that was set using set_info() or add()
51
-     *
52
-     * @access public
53
-     * @param mixed
54
-     * @return null | object
55
-     */
56
-    public function get_by_info($info);
47
+	/**
48
+	 * get_by_info
49
+	 *
50
+	 * finds and returns an object in the Collection based on the info that was set using set_info() or add()
51
+	 *
52
+	 * @access public
53
+	 * @param mixed
54
+	 * @return null | object
55
+	 */
56
+	public function get_by_info($info);
57 57
 
58 58
 
59 59
 
60
-    /**
61
-     * has
62
-     *
63
-     * returns TRUE or FALSE depending on whether the supplied object is within the Collection
64
-     *
65
-     * @access public
66
-     * @param object $object
67
-     * @return bool
68
-     */
69
-    public function has($object);
60
+	/**
61
+	 * has
62
+	 *
63
+	 * returns TRUE or FALSE depending on whether the supplied object is within the Collection
64
+	 *
65
+	 * @access public
66
+	 * @param object $object
67
+	 * @return bool
68
+	 */
69
+	public function has($object);
70 70
 
71 71
 
72 72
 
73
-    /**
74
-     * remove
75
-     *
76
-     * detaches an object from the Collection
77
-     *
78
-     * @access public
79
-     * @param $object
80
-     * @return void
81
-     */
82
-    public function remove($object);
73
+	/**
74
+	 * remove
75
+	 *
76
+	 * detaches an object from the Collection
77
+	 *
78
+	 * @access public
79
+	 * @param $object
80
+	 * @return void
81
+	 */
82
+	public function remove($object);
83 83
 }
Please login to merge, or discard this patch.
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.