Pheasant::registerMapper PHP Method

registerMapper() public method

Registers the mapper for a class
public registerMapper ( $class, $mapper )
    public function registerMapper($class, $mapper)
    {
        $this->_mappers[ltrim($class, '\\')] = $mapper;
        return $this;
    }