Completed
Branch BUG-8957-add-countries (d46858)
by
unknown
31:05 queued 15:34
created

EE_Base::__set()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
c 0
b 0
f 0
nc 1
nop 2
dl 0
loc 1
rs 10
1
<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed');
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.0
13
 *
14
 * ------------------------------------------------------------------------
15
 *
16
 * EE_Base
17
 *
18
 * @package			Event Espresso
19
 * @subpackage	core/
20
 * @author				Brent Christensen
21
 *
22
 * ------------------------------------------------------------------------
23
 */
24
class EE_Base {
25
26
	/**
27
	 *		@ override magic methods
28
	 *		@ return void
29
	 */
30
	public function __get($a) { return FALSE; }
31
	public function __set($a,$b) { return FALSE; }
32
	public function __isset($a) { return FALSE; }
33
	public function __unset($a) { return FALSE; }
34
	public function __clone() { return FALSE; }
35
	public function __wakeup() { return FALSE; }
36
	public function __destruct() { return FALSE; }
37
38
}
39
// End of file EE_Base.core.php
40
// Location: /core/EE_Base.core.php