Exemple #1
0
 public static function updateLastName($id, $newName, $oldName)
 {
     if (strcmp($newName, $oldName) === 0) {
         return;
     }
     self::validateName($newName);
     StudentFetcher::updateLastName($id, $newName);
 }