*/ class owa extends owa_caller { function __construct($config = null) { return parent::__construct($config); } /** * OWA Singleton Method * * Makes a singleton instance of OWA using the config array */ function singleton($config = null) { static $owa; if( empty( $owa ) ) { $owa = new owa($config); } return $owa; } } ?>