Completed
Push — master ( 0f6f03...286ddc )
by Mikaël
70:56 queued 35:53
created
samples/findInternalRDVPointRetraitAcheminementByID.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@  discard block
 block discarded – undo
2 2
 /**
3 3
  * Composer autoload
4 4
  */
5
-require_once __DIR__ . '/../vendor/autoload.php';
6
-require_once __DIR__ . '/settings.inc.php';
5
+require_once __DIR__.'/../vendor/autoload.php';
6
+require_once __DIR__.'/settings.inc.php';
7 7
 /**
8 8
  * Used classes
9 9
  */
@@ -31,10 +31,10 @@  discard block
 block discarded – undo
31 31
  * Debug informations provided by the utility methods
32 32
  */
33 33
 if (true) {
34
-    echo 'XML Request: ' . $find->getLastRequest() . "\r\n";
35
-    echo 'Headers Request: ' . $find->getLastRequestHeaders() . "\r\n";
36
-    echo 'XML Response: ' . $find->getLastResponse() . "\r\n";
37
-    echo 'Headers Response: ' . $find->getLastResponseHeaders() . "\r\n";
34
+    echo 'XML Request: '.$find->getLastRequest()."\r\n";
35
+    echo 'Headers Request: '.$find->getLastRequestHeaders()."\r\n";
36
+    echo 'XML Response: '.$find->getLastResponse()."\r\n";
37
+    echo 'Headers Response: '.$find->getLastResponseHeaders()."\r\n";
38 38
 }
39 39
 /**
40 40
  * Sample call for getProductInter operation/method
@@ -44,19 +44,19 @@  discard block
 block discarded – undo
44 44
      * @var ColissimoPickupPoint\StructType\RdvPointRetraitAcheminementByIDResult
45 45
      */
46 46
     $return = $result->getReturn();
47
-    echo PHP_EOL . sprintf('<br />ErrorCode: %s', $return->getErrorCode());
48
-    echo PHP_EOL . sprintf('<br />ErrorMessage: %s', $return->getErrorMessage());
49
-    echo PHP_EOL . sprintf('<br />Rdv: %s', $return->getRdv());
47
+    echo PHP_EOL.sprintf('<br />ErrorCode: %s', $return->getErrorCode());
48
+    echo PHP_EOL.sprintf('<br />ErrorMessage: %s', $return->getErrorMessage());
49
+    echo PHP_EOL.sprintf('<br />Rdv: %s', $return->getRdv());
50 50
     if ($return->getErrorCode() <= 0) {
51 51
         $pointRetraitAcheminement = $return->getPointRetraitAcheminement();
52
-        echo PHP_EOL . "\t\t" . sprintf('<br />Distance %dm', $pointRetraitAcheminement->getDistanceEnMetre());
53
-        echo PHP_EOL . "\t\t" . sprintf('<br />Location %s, %s, %s, %s (%s)',
52
+        echo PHP_EOL."\t\t".sprintf('<br />Distance %dm', $pointRetraitAcheminement->getDistanceEnMetre());
53
+        echo PHP_EOL."\t\t".sprintf('<br />Location %s, %s, %s, %s (%s)',
54 54
             $pointRetraitAcheminement->getNom(),
55 55
             $pointRetraitAcheminement->getAdresse1(),
56 56
             $pointRetraitAcheminement->getLocalite(),
57 57
             $pointRetraitAcheminement->getLibellePays(),
58 58
             $pointRetraitAcheminement->getIndiceDeLocalisation());
59
-        echo PHP_EOL . "\t\t" . sprintf("<br />Open hours \r\n\t\t\t<br />Monday: %s, \r\n\t\t\t<br />Tuesday: %s, \r\n\t\t\t<br />Wednesday: %s, \r\n\t\t\t<br />Thursday: %s \r\n\t\t\t<br />Friday: %s, \r\n\t\t\t<br />Saturday: %s, \r\n\t\t\t<br />Sunday: %s",
59
+        echo PHP_EOL."\t\t".sprintf("<br />Open hours \r\n\t\t\t<br />Monday: %s, \r\n\t\t\t<br />Tuesday: %s, \r\n\t\t\t<br />Wednesday: %s, \r\n\t\t\t<br />Thursday: %s \r\n\t\t\t<br />Friday: %s, \r\n\t\t\t<br />Saturday: %s, \r\n\t\t\t<br />Sunday: %s",
60 60
             $pointRetraitAcheminement->getHorairesOuvertureLundi(),
61 61
             $pointRetraitAcheminement->getHorairesOuvertureMardi(),
62 62
             $pointRetraitAcheminement->getHorairesOuvertureMercredi(),
@@ -66,5 +66,5 @@  discard block
 block discarded – undo
66 66
             $pointRetraitAcheminement->getHorairesOuvertureDimanche());
67 67
     }
68 68
 } else {
69
-    echo PHP_EOL . 'An error occurred: ' . $find->getLastErrorForMethod('ColissimoPickupPoint\ServiceType\Find::findInternalRDVPointRetraitAcheminementByID')->getMessage() . PHP_EOL;
69
+    echo PHP_EOL.'An error occurred: '.$find->getLastErrorForMethod('ColissimoPickupPoint\ServiceType\Find::findInternalRDVPointRetraitAcheminementByID')->getMessage().PHP_EOL;
70 70
 }
Please login to merge, or discard this patch.
samples/findInternalPointRetraitAcheminementByID.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@  discard block
 block discarded – undo
2 2
 /**
3 3
  * Composer autoload
4 4
  */
5
-require_once __DIR__ . '/../vendor/autoload.php';
6
-require_once __DIR__ . '/settings.inc.php';
5
+require_once __DIR__.'/../vendor/autoload.php';
6
+require_once __DIR__.'/settings.inc.php';
7 7
 /**
8 8
  * Used classes
9 9
  */
@@ -31,10 +31,10 @@  discard block
 block discarded – undo
31 31
  * Debug informations provided by the utility methods
32 32
  */
33 33
 if (true) {
34
-    echo 'XML Request: ' . $find->getLastRequest() . "\r\n";
35
-    echo 'Headers Request: ' . $find->getLastRequestHeaders() . "\r\n";
36
-    echo 'XML Response: ' . $find->getLastResponse() . "\r\n";
37
-    echo 'Headers Response: ' . $find->getLastResponseHeaders() . "\r\n";
34
+    echo 'XML Request: '.$find->getLastRequest()."\r\n";
35
+    echo 'Headers Request: '.$find->getLastRequestHeaders()."\r\n";
36
+    echo 'XML Response: '.$find->getLastResponse()."\r\n";
37
+    echo 'Headers Response: '.$find->getLastResponseHeaders()."\r\n";
38 38
 }
39 39
 /**
40 40
  * Sample call for getProductInter operation/method
@@ -44,18 +44,18 @@  discard block
 block discarded – undo
44 44
      * @var ColissimoPickupPoint\StructType\PointRetraitAcheminementByIDResult
45 45
      */
46 46
     $return = $result->getReturn();
47
-    echo PHP_EOL . sprintf('<br />ErrorCode: %s', $return->getErrorCode());
48
-    echo PHP_EOL . sprintf('<br />ErrorMessage: %s', $return->getErrorMessage());
47
+    echo PHP_EOL.sprintf('<br />ErrorCode: %s', $return->getErrorCode());
48
+    echo PHP_EOL.sprintf('<br />ErrorMessage: %s', $return->getErrorMessage());
49 49
     if ($return->getErrorCode() <= 0) {
50 50
         $pointRetraitAcheminement = $return->getPointRetraitAcheminement();
51
-        echo PHP_EOL . "\t\t" . sprintf('<br />Distance %dm', $pointRetraitAcheminement->getDistanceEnMetre());
52
-        echo PHP_EOL . "\t\t" . sprintf('<br />Location %s, %s, %s, %s (%s)',
51
+        echo PHP_EOL."\t\t".sprintf('<br />Distance %dm', $pointRetraitAcheminement->getDistanceEnMetre());
52
+        echo PHP_EOL."\t\t".sprintf('<br />Location %s, %s, %s, %s (%s)',
53 53
             $pointRetraitAcheminement->getNom(),
54 54
             $pointRetraitAcheminement->getAdresse1(),
55 55
             $pointRetraitAcheminement->getLocalite(),
56 56
             $pointRetraitAcheminement->getLibellePays(),
57 57
             $pointRetraitAcheminement->getIndiceDeLocalisation());
58
-        echo PHP_EOL . "\t\t" . sprintf("<br />Open hours \r\n\t\t\t<br />Monday: %s, \r\n\t\t\t<br />Tuesday: %s, \r\n\t\t\t<br />Wednesday: %s, \r\n\t\t\t<br />Thursday: %s \r\n\t\t\t<br />Friday: %s, \r\n\t\t\t<br />Saturday: %s, \r\n\t\t\t<br />Sunday: %s",
58
+        echo PHP_EOL."\t\t".sprintf("<br />Open hours \r\n\t\t\t<br />Monday: %s, \r\n\t\t\t<br />Tuesday: %s, \r\n\t\t\t<br />Wednesday: %s, \r\n\t\t\t<br />Thursday: %s \r\n\t\t\t<br />Friday: %s, \r\n\t\t\t<br />Saturday: %s, \r\n\t\t\t<br />Sunday: %s",
59 59
             $pointRetraitAcheminement->getHorairesOuvertureLundi(),
60 60
             $pointRetraitAcheminement->getHorairesOuvertureMardi(),
61 61
             $pointRetraitAcheminement->getHorairesOuvertureMercredi(),
@@ -65,5 +65,5 @@  discard block
 block discarded – undo
65 65
             $pointRetraitAcheminement->getHorairesOuvertureDimanche());
66 66
     }
67 67
 } else {
68
-    echo PHP_EOL . 'An error occurred: ' . $find->getLastErrorForMethod('ColissimoPickupPoint\ServiceType\Find::findInternalPointRetraitAcheminementByID')->getMessage() . PHP_EOL;
68
+    echo PHP_EOL.'An error occurred: '.$find->getLastErrorForMethod('ColissimoPickupPoint\ServiceType\Find::findInternalPointRetraitAcheminementByID')->getMessage().PHP_EOL;
69 69
 }
Please login to merge, or discard this patch.
samples/findRDVPointRetraitAcheminement.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@  discard block
 block discarded – undo
2 2
 /**
3 3
  * Composer autoload
4 4
  */
5
-require_once __DIR__ . '/../vendor/autoload.php';
6
-require_once __DIR__ . '/settings.inc.php';
5
+require_once __DIR__.'/../vendor/autoload.php';
6
+require_once __DIR__.'/settings.inc.php';
7 7
 /**
8 8
  * Used classes
9 9
  */
@@ -31,10 +31,10 @@  discard block
 block discarded – undo
31 31
  * Debug informations provided by the utility methods
32 32
  */
33 33
 if (true) {
34
-    echo 'XML Request: ' . $find->getLastRequest() . "\r\n";
35
-    echo 'Headers Request: ' . $find->getLastRequestHeaders() . "\r\n";
36
-    echo 'XML Response: ' . $find->getLastResponse() . "\r\n";
37
-    echo 'Headers Response: ' . $find->getLastResponseHeaders() . "\r\n";
34
+    echo 'XML Request: '.$find->getLastRequest()."\r\n";
35
+    echo 'Headers Request: '.$find->getLastRequestHeaders()."\r\n";
36
+    echo 'XML Response: '.$find->getLastResponse()."\r\n";
37
+    echo 'Headers Response: '.$find->getLastResponseHeaders()."\r\n";
38 38
 }
39 39
 /**
40 40
  * Sample call for getProductInter operation/method
@@ -44,23 +44,23 @@  discard block
 block discarded – undo
44 44
      * @var ColissimoPickupPoint\StructType\RdvPointRetraitAcheminementResult
45 45
      */
46 46
     $return = $result->getReturn();
47
-    echo PHP_EOL . sprintf('<br />ErrorCode: %s', $return->getErrorCode());
48
-    echo PHP_EOL . sprintf('<br />ErrorMessage: %s', $return->getErrorMessage());
49
-    echo PHP_EOL . sprintf('<br />Rdv: %s', $return->getRdv());
50
-    echo PHP_EOL . sprintf('<br />QualiteReponse: %s', $return->getQualiteReponse());
51
-    echo PHP_EOL . sprintf('<br />WsRequestId: %s', $return->getWsRequestId());
47
+    echo PHP_EOL.sprintf('<br />ErrorCode: %s', $return->getErrorCode());
48
+    echo PHP_EOL.sprintf('<br />ErrorMessage: %s', $return->getErrorMessage());
49
+    echo PHP_EOL.sprintf('<br />Rdv: %s', $return->getRdv());
50
+    echo PHP_EOL.sprintf('<br />QualiteReponse: %s', $return->getQualiteReponse());
51
+    echo PHP_EOL.sprintf('<br />WsRequestId: %s', $return->getWsRequestId());
52 52
     if ($return->getErrorCode() <= 0) {
53
-        echo PHP_EOL . '<br />ListePointRetraitAcheminement';
53
+        echo PHP_EOL.'<br />ListePointRetraitAcheminement';
54 54
         foreach ($return->getListePointRetraitAcheminement() as $index => $pointRetraitAcheminement) {
55
-            echo PHP_EOL . "\t" . sprintf('<br />Point retrait #%d', $index);
56
-            echo PHP_EOL . "\t\t" . sprintf('<br />Distance %dm', $pointRetraitAcheminement->getDistanceEnMetre());
57
-            echo PHP_EOL . "\t\t" . sprintf('<br />Location %s, %s, %s, %s (%s)',
55
+            echo PHP_EOL."\t".sprintf('<br />Point retrait #%d', $index);
56
+            echo PHP_EOL."\t\t".sprintf('<br />Distance %dm', $pointRetraitAcheminement->getDistanceEnMetre());
57
+            echo PHP_EOL."\t\t".sprintf('<br />Location %s, %s, %s, %s (%s)',
58 58
                 $pointRetraitAcheminement->getNom(),
59 59
                 $pointRetraitAcheminement->getAdresse1(),
60 60
                 $pointRetraitAcheminement->getLocalite(),
61 61
                 $pointRetraitAcheminement->getLibellePays(),
62 62
                 $pointRetraitAcheminement->getIndiceDeLocalisation());
63
-            echo PHP_EOL . "\t\t" . sprintf("<br />Open hours \r\n\t\t\t<br />Monday: %s, \r\n\t\t\t<br />Tuesday: %s, \r\n\t\t\t<br />Wednesday: %s, \r\n\t\t\t<br />Thursday: %s \r\n\t\t\t<br />Friday: %s, \r\n\t\t\t<br />Saturday: %s, \r\n\t\t\t<br />Sunday: %s",
63
+            echo PHP_EOL."\t\t".sprintf("<br />Open hours \r\n\t\t\t<br />Monday: %s, \r\n\t\t\t<br />Tuesday: %s, \r\n\t\t\t<br />Wednesday: %s, \r\n\t\t\t<br />Thursday: %s \r\n\t\t\t<br />Friday: %s, \r\n\t\t\t<br />Saturday: %s, \r\n\t\t\t<br />Sunday: %s",
64 64
                 $pointRetraitAcheminement->getHorairesOuvertureLundi(),
65 65
                 $pointRetraitAcheminement->getHorairesOuvertureMardi(),
66 66
                 $pointRetraitAcheminement->getHorairesOuvertureMercredi(),
@@ -71,5 +71,5 @@  discard block
 block discarded – undo
71 71
         }
72 72
     }
73 73
 } else {
74
-    echo PHP_EOL . 'An error occurred: ' . $find->getLastErrorForMethod('ColissimoPickupPoint\ServiceType\Find::findRDVPointRetraitAcheminement')->getMessage() . PHP_EOL;
74
+    echo PHP_EOL.'An error occurred: '.$find->getLastErrorForMethod('ColissimoPickupPoint\ServiceType\Find::findRDVPointRetraitAcheminement')->getMessage().PHP_EOL;
75 75
 }
Please login to merge, or discard this patch.
samples/findPointRetraitAcheminementByID.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@  discard block
 block discarded – undo
2 2
 /**
3 3
  * Composer autoload
4 4
  */
5
-require_once __DIR__ . '/../vendor/autoload.php';
6
-require_once __DIR__ . '/settings.inc.php';
5
+require_once __DIR__.'/../vendor/autoload.php';
6
+require_once __DIR__.'/settings.inc.php';
7 7
 /**
8 8
  * Used classes
9 9
  */
@@ -31,10 +31,10 @@  discard block
 block discarded – undo
31 31
  * Debug informations provided by the utility methods
32 32
  */
33 33
 if (true) {
34
-    echo 'XML Request: ' . $find->getLastRequest() . "\r\n";
35
-    echo 'Headers Request: ' . $find->getLastRequestHeaders() . "\r\n";
36
-    echo 'XML Response: ' . $find->getLastResponse() . "\r\n";
37
-    echo 'Headers Response: ' . $find->getLastResponseHeaders() . "\r\n";
34
+    echo 'XML Request: '.$find->getLastRequest()."\r\n";
35
+    echo 'Headers Request: '.$find->getLastRequestHeaders()."\r\n";
36
+    echo 'XML Response: '.$find->getLastResponse()."\r\n";
37
+    echo 'Headers Response: '.$find->getLastResponseHeaders()."\r\n";
38 38
 }
39 39
 /**
40 40
  * Sample call for getProductInter operation/method
@@ -44,18 +44,18 @@  discard block
 block discarded – undo
44 44
      * @var ColissimoPickupPoint\StructType\PointRetraitAcheminementByIDResult
45 45
      */
46 46
     $return = $result->getReturn();
47
-    echo PHP_EOL . sprintf('<br />ErrorCode: %s', $return->getErrorCode());
48
-    echo PHP_EOL . sprintf('<br />ErrorMessage: %s', $return->getErrorMessage());
47
+    echo PHP_EOL.sprintf('<br />ErrorCode: %s', $return->getErrorCode());
48
+    echo PHP_EOL.sprintf('<br />ErrorMessage: %s', $return->getErrorMessage());
49 49
     if ($return->getErrorCode() <= 0) {
50 50
         $pointRetraitAcheminement = $return->getPointRetraitAcheminement();
51
-        echo PHP_EOL . "\t\t" . sprintf('<br />Distance %dm', $pointRetraitAcheminement->getDistanceEnMetre());
52
-        echo PHP_EOL . "\t\t" . sprintf('<br />Location %s, %s, %s, %s (%s)',
51
+        echo PHP_EOL."\t\t".sprintf('<br />Distance %dm', $pointRetraitAcheminement->getDistanceEnMetre());
52
+        echo PHP_EOL."\t\t".sprintf('<br />Location %s, %s, %s, %s (%s)',
53 53
             $pointRetraitAcheminement->getNom(),
54 54
             $pointRetraitAcheminement->getAdresse1(),
55 55
             $pointRetraitAcheminement->getLocalite(),
56 56
             $pointRetraitAcheminement->getLibellePays(),
57 57
             $pointRetraitAcheminement->getIndiceDeLocalisation());
58
-        echo PHP_EOL . "\t\t" . sprintf("<br />Open hours \r\n\t\t\t<br />Monday: %s, \r\n\t\t\t<br />Tuesday: %s, \r\n\t\t\t<br />Wednesday: %s, \r\n\t\t\t<br />Thursday: %s \r\n\t\t\t<br />Friday: %s, \r\n\t\t\t<br />Saturday: %s, \r\n\t\t\t<br />Sunday: %s",
58
+        echo PHP_EOL."\t\t".sprintf("<br />Open hours \r\n\t\t\t<br />Monday: %s, \r\n\t\t\t<br />Tuesday: %s, \r\n\t\t\t<br />Wednesday: %s, \r\n\t\t\t<br />Thursday: %s \r\n\t\t\t<br />Friday: %s, \r\n\t\t\t<br />Saturday: %s, \r\n\t\t\t<br />Sunday: %s",
59 59
             $pointRetraitAcheminement->getHorairesOuvertureLundi(),
60 60
             $pointRetraitAcheminement->getHorairesOuvertureMardi(),
61 61
             $pointRetraitAcheminement->getHorairesOuvertureMercredi(),
@@ -65,5 +65,5 @@  discard block
 block discarded – undo
65 65
             $pointRetraitAcheminement->getHorairesOuvertureDimanche());
66 66
     }
67 67
 } else {
68
-    echo PHP_EOL . 'An error occurred: ' . $find->getLastErrorForMethod('ColissimoPickupPoint\ServiceType\Find::findPointRetraitAcheminementByID')->getMessage() . PHP_EOL;
68
+    echo PHP_EOL.'An error occurred: '.$find->getLastErrorForMethod('ColissimoPickupPoint\ServiceType\Find::findPointRetraitAcheminementByID')->getMessage().PHP_EOL;
69 69
 }
Please login to merge, or discard this patch.
samples/findInternalRDVPointRetraitAcheminement.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@  discard block
 block discarded – undo
2 2
 /**
3 3
  * Composer autoload
4 4
  */
5
-require_once __DIR__ . '/../vendor/autoload.php';
6
-require_once __DIR__ . '/settings.inc.php';
5
+require_once __DIR__.'/../vendor/autoload.php';
6
+require_once __DIR__.'/settings.inc.php';
7 7
 /**
8 8
  * Used classes
9 9
  */
@@ -31,10 +31,10 @@  discard block
 block discarded – undo
31 31
  * Debug informations provided by the utility methods
32 32
  */
33 33
 if (true) {
34
-    echo 'XML Request: ' . $find->getLastRequest() . "\r\n";
35
-    echo 'Headers Request: ' . $find->getLastRequestHeaders() . "\r\n";
36
-    echo 'XML Response: ' . $find->getLastResponse() . "\r\n";
37
-    echo 'Headers Response: ' . $find->getLastResponseHeaders() . "\r\n";
34
+    echo 'XML Request: '.$find->getLastRequest()."\r\n";
35
+    echo 'Headers Request: '.$find->getLastRequestHeaders()."\r\n";
36
+    echo 'XML Response: '.$find->getLastResponse()."\r\n";
37
+    echo 'Headers Response: '.$find->getLastResponseHeaders()."\r\n";
38 38
 }
39 39
 /**
40 40
  * Sample call for getProductInter operation/method
@@ -44,23 +44,23 @@  discard block
 block discarded – undo
44 44
      * @var ColissimoPickupPoint\StructType\RdvPointRetraitAcheminementResult
45 45
      */
46 46
     $return = $result->getReturn();
47
-    echo PHP_EOL . sprintf('<br />ErrorCode: %s', $return->getErrorCode());
48
-    echo PHP_EOL . sprintf('<br />ErrorMessage: %s', $return->getErrorMessage());
49
-    echo PHP_EOL . sprintf('<br />Rdv: %s', $return->getRdv());
50
-    echo PHP_EOL . sprintf('<br />QualiteReponse: %s', $return->getQualiteReponse());
51
-    echo PHP_EOL . sprintf('<br />WsRequestId: %s', $return->getWsRequestId());
52
-    echo PHP_EOL . '<br />ListePointRetraitAcheminement';
47
+    echo PHP_EOL.sprintf('<br />ErrorCode: %s', $return->getErrorCode());
48
+    echo PHP_EOL.sprintf('<br />ErrorMessage: %s', $return->getErrorMessage());
49
+    echo PHP_EOL.sprintf('<br />Rdv: %s', $return->getRdv());
50
+    echo PHP_EOL.sprintf('<br />QualiteReponse: %s', $return->getQualiteReponse());
51
+    echo PHP_EOL.sprintf('<br />WsRequestId: %s', $return->getWsRequestId());
52
+    echo PHP_EOL.'<br />ListePointRetraitAcheminement';
53 53
     if ($return->getErrorCode() <= 0) {
54 54
         foreach ($return->getListePointRetraitAcheminement() as $index => $pointRetraitAcheminement) {
55
-            echo PHP_EOL . "\t" . sprintf('<br />Point retrait #%d', $index);
56
-            echo PHP_EOL . "\t\t" . sprintf('<br />Distance %dm', $pointRetraitAcheminement->getDistanceEnMetre());
57
-            echo PHP_EOL . "\t\t" . sprintf('<br />Location %s, %s, %s, %s (%s)',
55
+            echo PHP_EOL."\t".sprintf('<br />Point retrait #%d', $index);
56
+            echo PHP_EOL."\t\t".sprintf('<br />Distance %dm', $pointRetraitAcheminement->getDistanceEnMetre());
57
+            echo PHP_EOL."\t\t".sprintf('<br />Location %s, %s, %s, %s (%s)',
58 58
                 $pointRetraitAcheminement->getNom(),
59 59
                 $pointRetraitAcheminement->getAdresse1(),
60 60
                 $pointRetraitAcheminement->getLocalite(),
61 61
                 $pointRetraitAcheminement->getLibellePays(),
62 62
                 $pointRetraitAcheminement->getIndiceDeLocalisation());
63
-            echo PHP_EOL . "\t\t" . sprintf("<br />Open hours \r\n\t\t\t<br />Monday: %s, \r\n\t\t\t<br />Tuesday: %s, \r\n\t\t\t<br />Wednesday: %s, \r\n\t\t\t<br />Thursday: %s \r\n\t\t\t<br />Friday: %s, \r\n\t\t\t<br />Saturday: %s, \r\n\t\t\t<br />Sunday: %s",
63
+            echo PHP_EOL."\t\t".sprintf("<br />Open hours \r\n\t\t\t<br />Monday: %s, \r\n\t\t\t<br />Tuesday: %s, \r\n\t\t\t<br />Wednesday: %s, \r\n\t\t\t<br />Thursday: %s \r\n\t\t\t<br />Friday: %s, \r\n\t\t\t<br />Saturday: %s, \r\n\t\t\t<br />Sunday: %s",
64 64
                 $pointRetraitAcheminement->getHorairesOuvertureLundi(),
65 65
                 $pointRetraitAcheminement->getHorairesOuvertureMardi(),
66 66
                 $pointRetraitAcheminement->getHorairesOuvertureMercredi(),
@@ -71,5 +71,5 @@  discard block
 block discarded – undo
71 71
         }
72 72
     }
73 73
 } else {
74
-    echo PHP_EOL . 'An error occurred: ' . $find->getLastErrorForMethod('ColissimoPickupPoint\ServiceType\Find::findInternalRDVPointRetraitAcheminement')->getMessage() . PHP_EOL;
74
+    echo PHP_EOL.'An error occurred: '.$find->getLastErrorForMethod('ColissimoPickupPoint\ServiceType\Find::findInternalRDVPointRetraitAcheminement')->getMessage().PHP_EOL;
75 75
 }
Please login to merge, or discard this patch.
tutorial.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
  * );
14 14
  * etc....
15 15
  */
16
-require_once __DIR__ . '/vendor/autoload.php';
16
+require_once __DIR__.'/vendor/autoload.php';
17 17
 /**
18 18
  * Minimal options
19 19
  */
Please login to merge, or discard this patch.
src/StructType/Conges.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     }
49 49
     /**
50 50
      * Get calendarDeDebut value
51
-     * @return string|null
51
+     * @return string
52 52
      */
53 53
     public function getCalendarDeDebut()
54 54
     {
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     }
71 71
     /**
72 72
      * Get calendarDeFin value
73
-     * @return string|null
73
+     * @return string
74 74
      */
75 75
     public function getCalendarDeFin()
76 76
     {
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
     }
93 93
     /**
94 94
      * Get numero value
95
-     * @return int|null
95
+     * @return integer
96 96
      */
97 97
     public function getNumero()
98 98
     {
Please login to merge, or discard this patch.
src/StructType/PointRetrait.php 1 patch
Doc Comments   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
     }
329 329
     /**
330 330
      * Get codePays value
331
-     * @return string|null
331
+     * @return string
332 332
      */
333 333
     public function getCodePays()
334 334
     {
@@ -350,7 +350,7 @@  discard block
 block discarded – undo
350 350
     }
351 351
     /**
352 352
      * Get langue value
353
-     * @return string|null
353
+     * @return string
354 354
      */
355 355
     public function getLangue()
356 356
     {
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
     }
373 373
     /**
374 374
      * Get libellePays value
375
-     * @return string|null
375
+     * @return string
376 376
      */
377 377
     public function getLibellePays()
378 378
     {
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
     }
395 395
     /**
396 396
      * Get loanOfHandlingTool value
397
-     * @return bool|null
397
+     * @return boolean
398 398
      */
399 399
     public function getLoanOfHandlingTool()
400 400
     {
@@ -412,7 +412,7 @@  discard block
 block discarded – undo
412 412
     }
413 413
     /**
414 414
      * Get parking value
415
-     * @return bool|null
415
+     * @return boolean
416 416
      */
417 417
     public function getParking()
418 418
     {
@@ -430,7 +430,7 @@  discard block
 block discarded – undo
430 430
     }
431 431
     /**
432 432
      * Get reseau value
433
-     * @return string|null
433
+     * @return string
434 434
      */
435 435
     public function getReseau()
436 436
     {
@@ -452,7 +452,7 @@  discard block
 block discarded – undo
452 452
     }
453 453
     /**
454 454
      * Get accesPersonneMobiliteReduite value
455
-     * @return bool|null
455
+     * @return boolean
456 456
      */
457 457
     public function getAccesPersonneMobiliteReduite()
458 458
     {
@@ -470,7 +470,7 @@  discard block
 block discarded – undo
470 470
     }
471 471
     /**
472 472
      * Get adresse1 value
473
-     * @return string|null
473
+     * @return string
474 474
      */
475 475
     public function getAdresse1()
476 476
     {
@@ -492,7 +492,7 @@  discard block
 block discarded – undo
492 492
     }
493 493
     /**
494 494
      * Get adresse2 value
495
-     * @return string|null
495
+     * @return string
496 496
      */
497 497
     public function getAdresse2()
498 498
     {
@@ -514,7 +514,7 @@  discard block
 block discarded – undo
514 514
     }
515 515
     /**
516 516
      * Get adresse3 value
517
-     * @return string|null
517
+     * @return string
518 518
      */
519 519
     public function getAdresse3()
520 520
     {
@@ -536,7 +536,7 @@  discard block
 block discarded – undo
536 536
     }
537 537
     /**
538 538
      * Get codePostal value
539
-     * @return string|null
539
+     * @return string
540 540
      */
541 541
     public function getCodePostal()
542 542
     {
@@ -558,7 +558,7 @@  discard block
 block discarded – undo
558 558
     }
559 559
     /**
560 560
      * Get congesPartiel value
561
-     * @return bool|null
561
+     * @return boolean
562 562
      */
563 563
     public function getCongesPartiel()
564 564
     {
@@ -576,7 +576,7 @@  discard block
 block discarded – undo
576 576
     }
577 577
     /**
578 578
      * Get congesTotal value
579
-     * @return bool|null
579
+     * @return boolean
580 580
      */
581 581
     public function getCongesTotal()
582 582
     {
@@ -594,7 +594,7 @@  discard block
 block discarded – undo
594 594
     }
595 595
     /**
596 596
      * Get coordGeolocalisationLatitude value
597
-     * @return string|null
597
+     * @return string
598 598
      */
599 599
     public function getCoordGeolocalisationLatitude()
600 600
     {
@@ -616,7 +616,7 @@  discard block
 block discarded – undo
616 616
     }
617 617
     /**
618 618
      * Get coordGeolocalisationLongitude value
619
-     * @return string|null
619
+     * @return string
620 620
      */
621 621
     public function getCoordGeolocalisationLongitude()
622 622
     {
@@ -638,7 +638,7 @@  discard block
 block discarded – undo
638 638
     }
639 639
     /**
640 640
      * Get distanceEnMetre value
641
-     * @return int|null
641
+     * @return integer
642 642
      */
643 643
     public function getDistanceEnMetre()
644 644
     {
@@ -660,7 +660,7 @@  discard block
 block discarded – undo
660 660
     }
661 661
     /**
662 662
      * Get horairesOuvertureDimanche value
663
-     * @return string|null
663
+     * @return string
664 664
      */
665 665
     public function getHorairesOuvertureDimanche()
666 666
     {
@@ -682,7 +682,7 @@  discard block
 block discarded – undo
682 682
     }
683 683
     /**
684 684
      * Get horairesOuvertureJeudi value
685
-     * @return string|null
685
+     * @return string
686 686
      */
687 687
     public function getHorairesOuvertureJeudi()
688 688
     {
@@ -704,7 +704,7 @@  discard block
 block discarded – undo
704 704
     }
705 705
     /**
706 706
      * Get horairesOuvertureLundi value
707
-     * @return string|null
707
+     * @return string
708 708
      */
709 709
     public function getHorairesOuvertureLundi()
710 710
     {
@@ -726,7 +726,7 @@  discard block
 block discarded – undo
726 726
     }
727 727
     /**
728 728
      * Get horairesOuvertureMardi value
729
-     * @return string|null
729
+     * @return string
730 730
      */
731 731
     public function getHorairesOuvertureMardi()
732 732
     {
@@ -748,7 +748,7 @@  discard block
 block discarded – undo
748 748
     }
749 749
     /**
750 750
      * Get horairesOuvertureMercredi value
751
-     * @return string|null
751
+     * @return string
752 752
      */
753 753
     public function getHorairesOuvertureMercredi()
754 754
     {
@@ -770,7 +770,7 @@  discard block
 block discarded – undo
770 770
     }
771 771
     /**
772 772
      * Get horairesOuvertureSamedi value
773
-     * @return string|null
773
+     * @return string
774 774
      */
775 775
     public function getHorairesOuvertureSamedi()
776 776
     {
@@ -792,7 +792,7 @@  discard block
 block discarded – undo
792 792
     }
793 793
     /**
794 794
      * Get horairesOuvertureVendredi value
795
-     * @return string|null
795
+     * @return string
796 796
      */
797 797
     public function getHorairesOuvertureVendredi()
798 798
     {
@@ -814,7 +814,7 @@  discard block
 block discarded – undo
814 814
     }
815 815
     /**
816 816
      * Get identifiant value
817
-     * @return string|null
817
+     * @return string
818 818
      */
819 819
     public function getIdentifiant()
820 820
     {
@@ -836,7 +836,7 @@  discard block
 block discarded – undo
836 836
     }
837 837
     /**
838 838
      * Get indiceDeLocalisation value
839
-     * @return string|null
839
+     * @return string
840 840
      */
841 841
     public function getIndiceDeLocalisation()
842 842
     {
@@ -907,7 +907,7 @@  discard block
 block discarded – undo
907 907
     }
908 908
     /**
909 909
      * Get localite value
910
-     * @return string|null
910
+     * @return string
911 911
      */
912 912
     public function getLocalite()
913 913
     {
@@ -929,7 +929,7 @@  discard block
 block discarded – undo
929 929
     }
930 930
     /**
931 931
      * Get nom value
932
-     * @return string|null
932
+     * @return string
933 933
      */
934 934
     public function getNom()
935 935
     {
@@ -951,7 +951,7 @@  discard block
 block discarded – undo
951 951
     }
952 952
     /**
953 953
      * Get periodeActiviteHoraireDeb value
954
-     * @return string|null
954
+     * @return string
955 955
      */
956 956
     public function getPeriodeActiviteHoraireDeb()
957 957
     {
@@ -973,7 +973,7 @@  discard block
 block discarded – undo
973 973
     }
974 974
     /**
975 975
      * Get periodeActiviteHoraireFin value
976
-     * @return string|null
976
+     * @return string
977 977
      */
978 978
     public function getPeriodeActiviteHoraireFin()
979 979
     {
@@ -995,7 +995,7 @@  discard block
 block discarded – undo
995 995
     }
996 996
     /**
997 997
      * Get poidsMaxi value
998
-     * @return int|null
998
+     * @return integer
999 999
      */
1000 1000
     public function getPoidsMaxi()
1001 1001
     {
@@ -1017,7 +1017,7 @@  discard block
 block discarded – undo
1017 1017
     }
1018 1018
     /**
1019 1019
      * Get typeDePoint value
1020
-     * @return string|null
1020
+     * @return string
1021 1021
      */
1022 1022
     public function getTypeDePoint()
1023 1023
     {
Please login to merge, or discard this patch.
src/StructType/PointRetraitAcheminementByIDResult.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     }
49 49
     /**
50 50
      * Get errorCode value
51
-     * @return int|null
51
+     * @return integer
52 52
      */
53 53
     public function getErrorCode()
54 54
     {
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     }
71 71
     /**
72 72
      * Get errorMessage value
73
-     * @return string|null
73
+     * @return string
74 74
      */
75 75
     public function getErrorMessage()
76 76
     {
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
     }
93 93
     /**
94 94
      * Get pointRetraitAcheminement value
95
-     * @return \ColissimoPickupPoint\StructType\PointRetraitAcheminement|null
95
+     * @return PointRetraitAcheminement
96 96
      */
97 97
     public function getPointRetraitAcheminement()
98 98
     {
Please login to merge, or discard this patch.