mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-10 19:43:16 +00:00
Fix CS
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user