89f6b7e587a95d67f880411cdf6c67b63c97e781
[mailer.git] / inc / classes / main / class_FrameworkArrayObject.php
1 <?php
2 /**
3  * Class for saving arrays as an object. We need this little extension for
4  * some common methods used in the whole application. Please see below if you
5  * need more details.
6  */
7 class FrameworkArrayObject extends ArrayObject {
8         /**
9          * Constructor for smooth coding style ;-)
10          *
11          * @param               $class  The class's real name
12          * @return      void
13          */
14         public function constructor ($class) {
15                 // $class will be ignored for backward compatiblity
16         }
17
18         /**
19          * Get real class' name back
20          *
21          * @return      $realClass      The class' real name
22          */
23         public function __toString () {
24                 return get_class($this);
25         }
26 }
27
28 // [EOF]
29 ?>