Improve : set and setp return $this
This commit is contained in:
parent
3792b5dd97
commit
081bc8ac4e
1 changed files with 2 additions and 0 deletions
|
|
@ -134,6 +134,7 @@ abstract class Data_SQL
|
|||
{
|
||||
if (array_key_exists($p_string, $this->type)) {
|
||||
$this->$p_string=$p_value;
|
||||
return $this;
|
||||
} else
|
||||
throw new Exception(__FILE__.":".__LINE__.$p_string.'Erreur attribut inexistant '.$p_string);
|
||||
}
|
||||
|
|
@ -161,6 +162,7 @@ abstract class Data_SQL
|
|||
if (array_key_exists($p_string, $this->name)) {
|
||||
$idx=$this->name[$p_string];
|
||||
$this->$idx=$p_value;
|
||||
return $this;
|
||||
} else
|
||||
throw new Exception(__FILE__.":".__LINE__.$p_string.'Erreur attribut inexistant '.$p_string);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue