Completed
Branch ADMIN-REFRESH (093308)
by
unknown
02:56 queued 27s
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_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.