Completed
Pull Request — master (#37)
by Thomas
02:14
created
Tests/Units/RestClient.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
             ->then
72 72
                 ->object($this->testedInstance->get('/not-json'))
73 73
                     ->isInstanceOf('\GuzzleHttp\Psr7\Response')
74
-           ;
74
+            ;
75 75
     }
76 76
 
77 77
     /**
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
                     ->isInstanceOf('Mapado\RestClientSdk\Exception\RestException')
111 111
                     ->hasMessage('Error while deleting resource')
112 112
                     ->hasCode(2)
113
-           ;
113
+            ;
114 114
     }
115 115
 
116 116
     /**
Please login to merge, or discard this patch.
src/Collection/HydraPaginatedCollection.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,12 +15,12 @@
 block discarded – undo
15 15
     private $firstPage = null;
16 16
 
17 17
     /**
18
-    * @var string URI of the last page
18
+     * @var string URI of the last page
19 19
      */
20 20
     private $lastPage = null;
21 21
 
22 22
     /**
23
-    * @var string URI of the next page
23
+     * @var string URI of the next page
24 24
      */
25 25
     private $nextPage = null;
26 26
 
Please login to merge, or discard this patch.
src/Model/ModelHydrator.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -33,13 +33,13 @@
 block discarded – undo
33 33
     }
34 34
 
35 35
     /**
36
-      * convertId
37
-      *
38
-      * @param string $id
39
-      * @param string $modelName
40
-      * @access public
41
-      * @return string
42
-      */
36
+     * convertId
37
+     *
38
+     * @param string $id
39
+     * @param string $modelName
40
+     * @access public
41
+     * @return string
42
+     */
43 43
     public function convertId($id, $modelName)
44 44
     {
45 45
         // add slash if needed to have a valid hydra id
Please login to merge, or discard this patch.