Source code raw phps
<?php
interface Observed {
const O_ERROR = 0;
public function attach(Observer $obj);
public function detach(Observer $obj);
public function notify($msg, $type);
}
Comments
There is currently no comment here.