Completed
Push — master ( e1a3eb...d9eba8 )
by Jacob
03:19
created
src/Domain/Comment/Comment/ServiceCommentRepository.php 1 patch
Braces   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@  discard block
 block discarded – undo
6 6
 use Api\DefaultApi;
7 7
 use Model\Comment;
8 8
 
9
-class ServiceCommentRepository implements CommentRepositoryInterface
10
-{
9
+class ServiceCommentRepository implements CommentRepositoryInterface
10
+{
11 11
 
12 12
     /**
13 13
      * @var DefaultApi
@@ -17,8 +17,8 @@  discard block
 block discarded – undo
17 17
     /**
18 18
      * @param DefaultApi $api
19 19
      */
20
-    public function __construct(DefaultApi $api)
21
-    {
20
+    public function __construct(DefaultApi $api)
21
+    {
22 22
         $this->api = $api;
23 23
     }
24 24
 
@@ -27,8 +27,8 @@  discard block
 block discarded – undo
27 27
      * @return array
28 28
      * @throws ApiException
29 29
      */
30
-    public function createComment(array $comment)
31
-    {
30
+    public function createComment(array $comment)
31
+    {
32 32
         $response = $this->api->createComment($comment);
33 33
         return $this->deserializeComment($response);
34 34
     }
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
      * @return array
39 39
      * @throws ApiException
40 40
      */
41
-    public function getComment($commentId)
42
-    {
41
+    public function getComment($commentId)
42
+    {
43 43
         $response = $this->api->getComment($commentId);
44 44
         return $this->deserializeComment($response);
45 45
     }
@@ -53,8 +53,8 @@  discard block
 block discarded – undo
53 53
      * @return array
54 54
      * @throws ApiException
55 55
      */
56
-    public function getComments($domain = null, $path = null, $page = null, $perPage = null, $order = null)
57
-    {
56
+    public function getComments($domain = null, $path = null, $page = null, $perPage = null, $order = null)
57
+    {
58 58
         $response = $this->api->getComments($page, $perPage, $order, $domain, $path);
59 59
         return array_map([$this, 'deserializeComment'], $response);
60 60
     }
@@ -63,8 +63,8 @@  discard block
 block discarded – undo
63 63
      * @param Comment $comment
64 64
      * @return array
65 65
      */
66
-    protected function deserializeComment(Comment $comment)
67
-    {
66
+    protected function deserializeComment(Comment $comment)
67
+    {
68 68
         return [
69 69
             'id' => $comment->getId(),
70 70
             'commenter' => [
Please login to merge, or discard this patch.
src/Domain/Comment/Commenter/ServiceCommenterRepository.php 1 patch
Braces   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@  discard block
 block discarded – undo
6 6
 use Jacobemerick\CommentService\Api\DefaultApi;
7 7
 use Jacobemerick\CommentService\Model\Commenter;
8 8
 
9
-class ServiceCommenterRepository implements CommenterRepositoryInterface
10
-{
9
+class ServiceCommenterRepository implements CommenterRepositoryInterface
10
+{
11 11
 
12 12
     /**
13 13
      * @var DefaultApi
@@ -17,8 +17,8 @@  discard block
 block discarded – undo
17 17
     /**
18 18
      * @param DefaultApi $api
19 19
      */
20
-    public function __construct(DefaultApi $api)
21
-    {
20
+    public function __construct(DefaultApi $api)
21
+    {
22 22
         $this->api = $api;
23 23
     }
24 24
 
@@ -27,8 +27,8 @@  discard block
 block discarded – undo
27 27
      * @return array
28 28
      * @throws ApiException
29 29
      */
30
-    public function createCommenter(array $commenter)
31
-    {
30
+    public function createCommenter(array $commenter)
31
+    {
32 32
         $response = $this->api->createCommenter($commenter);
33 33
         return $this->deserializeCommenter($response);
34 34
     }
@@ -38,8 +38,8 @@  discard block
 block discarded – undo
38 38
      * @return array
39 39
      * @throws ApiException
40 40
      */
41
-    public function getCommenter($commenterId)
42
-    {
41
+    public function getCommenter($commenterId)
42
+    {
43 43
         $response = $this->api->getCommenter($commenterId);
44 44
         return $this->deserializeCommenter($response);
45 45
     }
@@ -50,8 +50,8 @@  discard block
 block discarded – undo
50 50
      * @return array
51 51
      * @throws ApiException
52 52
      */
53
-    public function getCommenters($page = null, $perPage = null)
54
-    {
53
+    public function getCommenters($page = null, $perPage = null)
54
+    {
55 55
         $response = $this->api->getCommenters($page, $perPage);
56 56
         return array_map([$this, 'deserializeCommenter'], $response);
57 57
     }
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
      * @param Commenter
61 61
      * @return array
62 62
      */
63
-    protected function deserializeCommenter(Commenter $commenter)
64
-    {
63
+    protected function deserializeCommenter(Commenter $commenter)
64
+    {
65 65
         return [
66 66
             'id' => $commenter->getId(),
67 67
             'name' => $commenter->getName(),
Please login to merge, or discard this patch.