Subversion Repositories PHPX

Compare Revisions

Last modification

Regard whitespace Rev 49 → Rev 48

/trunk/Db/Mapper.php
1,6 → 1,5
<?php
 
require_once __DIR__ . '/../AbstractModel.php';
require_once __DIR__ . '/Table.php';
 
/**
8,7 → 7,7
*
* @author Thomas Lahn
*/
abstract class Mapper extends AbstractModel
abstract class Mapper
{
/**
* Class name of the associated table model
65,16 → 64,6
}
 
/**
* Returns the <code>Table</code> for this object.
*
* @return Table
*/
public function getTable ()
{
return $this->getDbTable();
}
 
/**
* Sorts an array of objects by the property of the nested object.
* To be used with the u*sort() functions.
*