forked from WordPress/wordpress-develop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclass-basic-object.php
More file actions
43 lines (35 loc) · 788 Bytes
/
class-basic-object.php
File metadata and controls
43 lines (35 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/**
* Unit Tests: Basic_Object cloass
*
* @package WordPress
* @subpackage UnitTests
* @since 4.7.0
*/
trigger_error( __FILE__ . ' is deprecated since version 5.0.0 with no alternative available.' );
/**
* Class used to test accessing methods and properties
*
* @since 4.0.0
*/
class Basic_Object {
private $foo = 'bar';
public function __get( $name ) {
return $this->$name;
}
public function __set( $name, $value ) {
return $this->$name = $value;
}
public function __isset( $name ) {
return isset( $this->$name );
}
public function __unset( $name ) {
unset( $this->$name );
}
public function __call( $name, $arguments ) {
return call_user_func_array( array( $this, $name ), $arguments );
}
private function callMe() {
return 'maybe';
}
}