You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SAE_2A_FA-Reseau_ALICA/php/modeles/MembreModele.php

68 lines
1.1 KiB

<?php
namespace modeles;
class MembreModele extends UtilisateurModele
{
/**
* @description modifier photo de profil
*/
public function updateProfilPhoto() : bool
{
// TO DO
return false;
}
/**
* @description ajouter formation
*/
public function addFormation() : bool
{
// TO DO
return false;
}
/**
* @description modifier formation
*/
public function updateFormation() : bool
{
// TO DO
return false;
}
/**
* @description ajouter Experience
*/
public function addExperience() : bool
{
// TO DO
return false;
}
/**
* @description modifier experience
*/
public function updateExpereience() : bool
{
// TO DO
return false;
}
/**
* @description changer mot de passe
* @param string $oldHash ancien hash
* @param string $newHash nouveau hash
*/
public function updatePasswd(string $oldHash,string $newHash) : bool
{
// TO DO
return false;
}
}