Skip to content

Commit

Permalink
Version 0.6.2.5
Browse files Browse the repository at this point in the history
- 0006864: [Attendee] Problème de valeur de retour en cas d'erreur
  • Loading branch information
tpayen committed Jul 13, 2022
1 parent d28b6ca commit 5d435a1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
ORM M2 - 0.6.2.5
------
- 0006864: [Attendee] Problème de valeur de retour en cas d'erreur

ORM M2 - 0.6.2.4
------
- 0006800: Pour une invitation interne, un participant ne peut pas modifier l'horaire
Expand Down
6 changes: 3 additions & 3 deletions Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ class Version {
/**
* Numéro de version
*/
const VERSION = '0.6.2.4';
const VERSION = '0.6.2.5';

/**
* Numéro de version normalisé
*/
const NORMALIZED_VERSION = '0.6.2.4';
const NORMALIZED_VERSION = '0.6.2.5';

/**
* Build
*/
const BUILD = '20220609104952';
const BUILD = '20220711165452';

}
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name" : "messagerie-melanie2/orm-m2",
"version" : "0.6.2.4",
"version_normalized" : "0.6.2.4",
"version" : "0.6.2.5",
"version_normalized" : "0.6.2.5",
"description" : "ORM pour l'accès aux données Mél",
"keywords" : [
"ORM",
Expand Down
4 changes: 2 additions & 2 deletions src/Api/Defaut/Attendee.php
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ protected function getMapResponse() {
if (isset(MappingMce::$MapAttendeeResponseObjectMelanie[$this->response]))
return MappingMce::$MapAttendeeResponseObjectMelanie[$this->response];
else
return MappingMce::$MapAttendeeResponseObjectMelanie[self::RESPONSE_NEED_ACTION];
return self::RESPONSE_NEED_ACTION;
}

/**
Expand All @@ -405,7 +405,7 @@ protected function getMapRole() {
if (isset(MappingMce::$MapAttendeeRoleObjectMelanie[$this->role]))
return MappingMce::$MapAttendeeRoleObjectMelanie[$this->role];
else
return MappingMce::$MapAttendeeRoleObjectMelanie[self::ROLE_REQ_PARTICIPANT];
return self::ROLE_REQ_PARTICIPANT;
}

/**
Expand Down

0 comments on commit 5d435a1

Please sign in to comment.