@@ -6,8 +6,8 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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' => [ |
@@ -6,8 +6,8 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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(), |
@@ -4,8 +4,8 @@ discard block |
||
| 4 | 4 | |
| 5 | 5 | use Aura\Sql\ConnectionLocator; |
| 6 | 6 | |
| 7 | -class MysqlChangelogRepository implements ChangelogRepositoryInterface |
|
| 8 | -{ |
|
| 7 | +class MysqlChangelogRepository implements ChangelogRepositoryInterface |
|
| 8 | +{
|
|
| 9 | 9 | |
| 10 | 10 | /** @var ConnectionLocator */ |
| 11 | 11 | protected $connections; |
@@ -13,8 +13,8 @@ discard block |
||
| 13 | 13 | /** |
| 14 | 14 | * @param ConnectonLocator $connections |
| 15 | 15 | */ |
| 16 | - public function __construct(ConnectionLocator $connections) |
|
| 17 | - { |
|
| 16 | + public function __construct(ConnectionLocator $connections) |
|
| 17 | + {
|
|
| 18 | 18 | $this->connections = $connections; |
| 19 | 19 | } |
| 20 | 20 | |
@@ -24,8 +24,8 @@ discard block |
||
| 24 | 24 | * |
| 25 | 25 | * @return array|false |
| 26 | 26 | */ |
| 27 | - public function getChanges($limit = null, $offset = 0) |
|
| 28 | - { |
|
| 27 | + public function getChanges($limit = null, $offset = 0) |
|
| 28 | + {
|
|
| 29 | 29 | $query = " |
| 30 | 30 | SELECT `id`, `message`, `message_short`, `datetime`, `commit_link` |
| 31 | 31 | FROM `jpemeric_stream`.`changelog` |
@@ -4,8 +4,8 @@ discard block |
||
| 4 | 4 | |
| 5 | 5 | use Aura\Sql\ConnectionLocator; |
| 6 | 6 | |
| 7 | -class MysqlActivityRepository implements ActivityRepositoryInterface |
|
| 8 | -{ |
|
| 7 | +class MysqlActivityRepository implements ActivityRepositoryInterface |
|
| 8 | +{
|
|
| 9 | 9 | |
| 10 | 10 | /** @var ConnectionLocator */ |
| 11 | 11 | protected $connections; |
@@ -13,8 +13,8 @@ discard block |
||
| 13 | 13 | /** |
| 14 | 14 | * @param ConnectonLocator $connections |
| 15 | 15 | */ |
| 16 | - public function __construct(ConnectionLocator $connections) |
|
| 17 | - { |
|
| 16 | + public function __construct(ConnectionLocator $connections) |
|
| 17 | + {
|
|
| 18 | 18 | $this->connections = $connections; |
| 19 | 19 | } |
| 20 | 20 | |
@@ -23,8 +23,8 @@ discard block |
||
| 23 | 23 | * |
| 24 | 24 | * @return array|false |
| 25 | 25 | */ |
| 26 | - public function getActivityById($id) |
|
| 27 | - { |
|
| 26 | + public function getActivityById($id) |
|
| 27 | + {
|
|
| 28 | 28 | $query = " |
| 29 | 29 | SELECT * |
| 30 | 30 | FROM `jpemeric_stream`.`activity` |
@@ -46,8 +46,8 @@ discard block |
||
| 46 | 46 | * |
| 47 | 47 | * @return array|false |
| 48 | 48 | */ |
| 49 | - public function getActivities($limit = null, $offset = 0) |
|
| 50 | - { |
|
| 49 | + public function getActivities($limit = null, $offset = 0) |
|
| 50 | + {
|
|
| 51 | 51 | $query = " |
| 52 | 52 | SELECT * |
| 53 | 53 | FROM `jpemeric_stream`.`activity` |
@@ -63,8 +63,8 @@ discard block |
||
| 63 | 63 | ->fetchAll($query); |
| 64 | 64 | } |
| 65 | 65 | |
| 66 | - public function getActivitiesCount() |
|
| 67 | - { |
|
| 66 | + public function getActivitiesCount() |
|
| 67 | + {
|
|
| 68 | 68 | $query = " |
| 69 | 69 | SELECT COUNT(1) AS `count` |
| 70 | 70 | FROM `jpemeric_stream`.`activity`"; |
@@ -75,8 +75,8 @@ discard block |
||
| 75 | 75 | ->fetchValue($query); |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | - public function getActivitiesByType($type, $limit = null, $offset = 0) |
|
| 79 | - { |
|
| 78 | + public function getActivitiesByType($type, $limit = null, $offset = 0) |
|
| 79 | + {
|
|
| 80 | 80 | $query = " |
| 81 | 81 | SELECT * |
| 82 | 82 | FROM `jpemeric_stream`.`activity` |
@@ -96,8 +96,8 @@ discard block |
||
| 96 | 96 | ->fetchAll($query, $bindings); |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - public function getActivitiesByTypeCount($type) |
|
| 100 | - { |
|
| 99 | + public function getActivitiesByTypeCount($type) |
|
| 100 | + {
|
|
| 101 | 101 | $query = " |
| 102 | 102 | SELECT COUNT(1) AS `count` |
| 103 | 103 | FROM `jpemeric_stream`.`activity` |