blob: 003c72e08b0bc848f545c606cfd0cc5055344499 (
plain)
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
|
<?php
class ezcGraphBoundings
{
public $x0 = 0;
public $y0 = 0;
public $x1 = false;
public $y1 = false;
/**
* Empty constructor
*/
public function __construct()
{
}
/**
* Throws a BasePropertyNotFound exception.
*/
public function __set( $name, $value )
{
throw new ezcBasePropertyNotFoundException( $name );
}
/**
* Throws a BasePropertyNotFound exception.
*/
public function __get( $name )
{
throw new ezcBasePropertyNotFoundException( $name );
}
}
?>
|