Smutty

MVC Framework

View Code: Smutty_Object

Browse: All · Classes · Plugins

1
<?php
2
3
/**
4
* this is the root of all classes in smutty. it provides
5
* the basic functionality for error reporting that we
6
* require.
7
*
8
*/
9
10
class Smutty_Object {
11
12
/**
13
* converts this object to a string
14
*
15
* @return String describes the class
16
*
17
*/
18
19
public function __toString() {
20
return 'Smutty_Object: ' . get_class($this);
21
}
22
23
}
24
25
?>

The code shown here is the code that is currently running this site. If you want to view the latest SVN version of the code then go to the Subversion repository.