Skip to content
Snippets Groups Projects

[RTFixed] Dev#176783 task#189903

Merged Henri-Damien LAURENT requested to merge dev#176783_task#189903 into master
All threads resolved!
Compare and Show latest version
1 file
+ 11
11
Preferences
Compare changes
@@ -566,8 +566,8 @@ class Class_WebService_SIGB_Emprunteur {
/**
* @return string
*/
public function getName(){
return $this->_name;
public function getName() :string {
return $this->_name ?? '';
}
@@ -585,8 +585,8 @@ class Class_WebService_SIGB_Emprunteur {
}
public function getEmail() {
return $this->_email;
public function getEmail() :string {
return $this->_email ?? '';
}
@@ -596,7 +596,7 @@ class Class_WebService_SIGB_Emprunteur {
}
public function getNom() : string{
public function getNom() : string {
return $this->_nom ?? '';
}
@@ -607,7 +607,7 @@ class Class_WebService_SIGB_Emprunteur {
}
public function getPrenom() : string{
public function getPrenom() : string {
return $this->_prenom ?? '';
}
@@ -618,19 +618,19 @@ class Class_WebService_SIGB_Emprunteur {
}
public function getLogin() : string{
return $this->_login;
public function getLogin() : string {
return $this->_login ?? '';
}
public function setPreviousLogin(string $old_login) : self {
$this->_old_login = $old_login;
return $this;;
return $this;
}
public function getPreviousLogin() {
return $this->_old_login;
public function getPreviousLogin() :string {
return $this->_old_login ?? '';
}