This commit is contained in:
Romain Neutron
2012-04-26 00:55:53 +02:00
parent edbfff226e
commit ade22295ad
631 changed files with 92375 additions and 101763 deletions

View File

@@ -17,22 +17,19 @@
*/
abstract class sphinx_charsetTableAbstract
{
protected $table;
protected $name;
protected $table;
public function get_name()
{
return $this->name;
}
protected $name;
public function get_name()
{
return $this->name;
}
public function get_table()
{
if (is_null($this->table))
throw new Exception('Invalid charsetTable object');
return $this->table;
}
public function get_table()
{
if (is_null($this->table))
throw new Exception('Invalid charsetTable object');
return $this->table;
}
}