Commit 82356278a68de88ca9555b36f9fe459053edff2a

Authored by Benjamin Renard
1 parent 196268c9

Fix to replace 'DOY TIME' by 'DOYTIME' (more usable in command line)

src/Request/ParamsRequestImpl/Nodes/Requests/RequestOutputDownloadNodeClass.php
... ... @@ -20,7 +20,7 @@ abstract class RequestOutputDownloadTimeFormatEnum
20 20 {
21 21 const UNKNOWN = "";
22 22 const ISO = "ISO";
23   - const DOYTIME = "DOY TIME";
  23 + const DOYTIME = "DOYTIME";
24 24 const TIMESTAMP = "DOUBLE";
25 25 const SPACES = "SPACES";
26 26 const MS = "MS";
... ...
src/Request/TTRequestImpl/TTRequestDataClass.php
... ... @@ -4,7 +4,7 @@ abstract class TTRequestTimeFormatEnum
4 4 {
5 5 const UNKNOWN = "";
6 6 const ISO = "ISO";
7   - const DOYTIME = "DOY TIME";
  7 + const DOYTIME = "DOYTIME";
8 8 const TIMESTAMP = "DOUBLE";
9 9 const SPACES = "SPACES";
10 10 const MS = "MS";
... ...