Completed
Pull Request — master (#9)
by Lars
02:33
created
src/RegistrationRepository.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,6 @@  discard block
 block discarded – undo
27 27
     /**
28 28
      * Constructor
29 29
      *
30
-     * @param string $request  Request object
31 30
      */
32 31
     public function __construct(ClientInterface $client)
33 32
     {
@@ -37,7 +36,7 @@  discard block
 block discarded – undo
37 36
     /**
38 37
      * Adds registration
39 38
      *
40
-     * @param array $registration Array with registration options
39
+     * @param array $registrations Array with registration options
41 40
      *
42 41
      * @return Response
43 42
      */
Please login to merge, or discard this patch.
src/Client.php 2 patches
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     /**
44 44
      * @param array $registrations
45 45
      *
46
-     * @return object RegistrationsCreateResponse
46
+     * @return RegistrationsCreateResponse RegistrationsCreateResponse
47 47
      */
48 48
     public function createNewRegistrations(array $registrations)
49 49
     {
@@ -68,7 +68,6 @@  discard block
 block discarded – undo
68 68
     /**
69 69
      * Gets new registrations
70 70
      *
71
-     * @param string $weblist_id
72 71
      *
73 72
      * @return Response
74 73
      */
@@ -81,7 +80,6 @@  discard block
 block discarded – undo
81 80
     /**
82 81
      * Gets handled registrations
83 82
      *
84
-     * @param string $weblist_id
85 83
      *
86 84
      * @return Response
87 85
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
     public function deleteRegistrations($weblist_id)
102 102
     {
103 103
         $params = $this->credentials->getArray();
104
-        $params['Id_WebListe'] = '72200' . '_' . 'T3';
104
+        $params['Id_WebListe'] = '72200'.'_'.'T3';
105 105
         return new Response($this->soap->SletTilmeldingerV2($params));
106 106
     }
107 107
 }
Please login to merge, or discard this patch.