1<?php
2
3class Observer {
4  function run($params) {
5    // By default, do nothing
6  }
7}
8
9?>