Completed
Pull Request — master (#193)
by
unknown
01:49
created
src/Version/VersionService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
         $this->log->addInfo('Result='.$ret);
62 62
 
63 63
         $json = json_decode($ret);
64
-        $results = array_map(function ($elem) {
64
+        $results = array_map(function($elem) {
65 65
             return $this->json_mapper->map($elem, new ProjectType());
66 66
         }, $json);
67 67
 
Please login to merge, or discard this patch.
src/Project/ProjectService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     {
69 69
         $ret = $this->exec("/user/assignable/search?project=$projectIdOrKey", null);
70 70
         $json = json_decode($ret);
71
-        $results = array_map(function ($elem) {
71
+        $results = array_map(function($elem) {
72 72
             return $this->json_mapper->map($elem, new Reporter());
73 73
         }, $json);
74 74
 
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     {
87 87
         $ret = $this->exec($this->uri."/$projectIdOrKey/statuses", null);
88 88
         $json = json_decode($ret);
89
-        $results = array_map(function ($elem) {
89
+        $results = array_map(function($elem) {
90 90
             return $this->json_mapper->map($elem, new IssueType());
91 91
         }, $json);
92 92
 
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
         $this->log->addInfo('Result='.$ret);
106 106
 
107 107
         $json = json_decode($ret);
108
-        $results = array_map(function ($elem) {
108
+        $results = array_map(function($elem) {
109 109
             return $this->json_mapper->map($elem, new ProjectType());
110 110
         }, $json);
111 111
 
Please login to merge, or discard this patch.
src/Project/Project.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
 
93 93
     public function jsonSerialize()
94 94
     {
95
-        return array_filter(get_object_vars($this), function ($var) {
95
+        return array_filter(get_object_vars($this), function($var) {
96 96
             return !is_null($var);
97 97
         });
98 98
     }
Please login to merge, or discard this patch.
src/Dumper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
     public static function dd($x)
27 27
     {
28
-        array_map(function ($x) {
28
+        array_map(function($x) {
29 29
             (new Dumper())->dump($x);
30 30
         }, func_get_args());
31 31
         die(1);
Please login to merge, or discard this patch.
src/Issue/IssueField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@
 block discarded – undo
140 140
 
141 141
     public function jsonSerialize()
142 142
     {
143
-        $vars = array_filter(get_object_vars($this), function ($var) {
143
+        $vars = array_filter(get_object_vars($this), function($var) {
144 144
             return !is_null($var);
145 145
         });
146 146
 
Please login to merge, or discard this patch.
src/Issue/IssueService.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
 
224 224
         $this->log->addDebug('add comment result='.var_export($ret, true));
225 225
         $comment = $this->json_mapper->map(
226
-           json_decode($ret), new Comment()
226
+            json_decode($ret), new Comment()
227 227
         );
228 228
 
229 229
         return $comment;
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
         $data = json_encode(json_decode($ret)->transitions);
368 368
 
369 369
         $transitions = $this->json_mapper->mapArray(
370
-           json_decode($data), new \ArrayObject(), '\JiraRestApi\Issue\Transition'
370
+            json_decode($data), new \ArrayObject(), '\JiraRestApi\Issue\Transition'
371 371
         );
372 372
 
373 373
         return $transitions;
@@ -484,7 +484,7 @@  discard block
 block discarded – undo
484 484
         $this->log->addDebug("getTimeTracking res=$ret\n");
485 485
 
486 486
         $issue = $this->json_mapper->map(
487
-             json_decode($ret), new Issue()
487
+                json_decode($ret), new Issue()
488 488
         );
489 489
 
490 490
         return $issue->fields->timeTracking;
@@ -585,7 +585,7 @@  discard block
 block discarded – undo
585 585
         $ret = $this->exec($url, $data, $type);
586 586
 
587 587
         $ret_worklog = $this->json_mapper->map(
588
-           json_decode($ret), new Worklog()
588
+            json_decode($ret), new Worklog()
589 589
         );
590 590
 
591 591
         return $ret_worklog;
@@ -632,7 +632,7 @@  discard block
 block discarded – undo
632 632
         $ret = $this->exec('priority', null);
633 633
 
634 634
         $priorities = $this->json_mapper->mapArray(
635
-             json_decode($ret, false), new \ArrayObject(), '\JiraRestApi\Issue\Priority'
635
+                json_decode($ret, false), new \ArrayObject(), '\JiraRestApi\Issue\Priority'
636 636
         );
637 637
 
638 638
         return $priorities;
@@ -656,7 +656,7 @@  discard block
 block discarded – undo
656 656
         $this->log->addInfo('Result='.$ret);
657 657
 
658 658
         $prio = $this->json_mapper->map(
659
-             json_decode($ret), new Priority()
659
+                json_decode($ret), new Priority()
660 660
         );
661 661
 
662 662
         return $prio;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -783,7 +783,7 @@
 block discarded – undo
783 783
         $metas = json_decode($ret, true);
784 784
 
785 785
         // extract only custom field(startWith customefield_XXXXX)
786
-        $cfs = array_filter($metas['fields'], function ($key) {
786
+        $cfs = array_filter($metas['fields'], function($key) {
787 787
             $pos = strpos($key, 'customfield');
788 788
 
789 789
             return $pos !== false;
Please login to merge, or discard this patch.
src/JiraRestApiServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      */
28 28
     public function register()
29 29
     {
30
-        $this->app->bind(ConfigurationInterface::class, function () {
30
+        $this->app->bind(ConfigurationInterface::class, function() {
31 31
             return new DotEnvConfiguration(base_path());
32 32
         });
33 33
     }
Please login to merge, or discard this patch.
src/Field/FieldService.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
         $ret = $this->exec($this->uri, null);
21 21
 
22 22
         $fields = $this->json_mapper->mapArray(
23
-             json_decode($ret, false), new \ArrayObject(), '\JiraRestApi\Field\Field'
23
+                json_decode($ret, false), new \ArrayObject(), '\JiraRestApi\Field\Field'
24 24
         );
25 25
 
26 26
         // temp array
Please login to merge, or discard this patch.
src/Board/BoardService.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
         $this->path = $path;
20 20
         $this->restClient = $jiraClient;
21 21
         if (!$this->restClient) {
22
-          $this->setRestClient();
22
+            $this->setRestClient();
23 23
         }
24 24
 
25 25
     }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
         $json_mapper = new \JsonMapper();
36 36
         $json_mapper->undefinedPropertyHandler = [new \JiraRestApi\JsonMapperHelper(), 'setUndefinedProperty'];
37 37
         return $json_mapper->map($json,
38
-            new Board() );
38
+            new Board());
39 39
     }
40 40
     public static function getArrayOfBoardsFromJSON($boardList)
41 41
     {
@@ -69,11 +69,11 @@  discard block
 block discarded – undo
69 69
     public function getAllBoards($paramArray = [])
70 70
     {
71 71
         $boardArray = array();
72
-        $boardArray = $this->loopOverResults($this->uri,$paramArray);
72
+        $boardArray = $this->loopOverResults($this->uri, $paramArray);
73 73
         return $this->getArrayOfBoardsFromJSON($boardArray);
74 74
     }
75 75
 
76
-    public function getBoardWithSprintsList($boardId = null,$paramArray = [])
76
+    public function getBoardWithSprintsList($boardId = null, $paramArray = [])
77 77
     {
78 78
         if (is_null($boardId)) {
79 79
             $boardList = $this->getAllBoards();
@@ -91,10 +91,10 @@  discard block
 block discarded – undo
91 91
         return $boards;
92 92
     }
93 93
 
94
-    public function getSprintInfoForBoard($boardId,$paramArray)
94
+    public function getSprintInfoForBoard($boardId, $paramArray)
95 95
     {
96 96
         $board = $this->getBoard($boardId);
97
-        $sprintList = $this->loopOverResults($this->uri.'/'.$boardId.'/sprint/',$paramArray);
97
+        $sprintList = $this->loopOverResults($this->uri.'/'.$boardId.'/sprint/', $paramArray);
98 98
         $sprintObjectsArray = array();
99 99
         foreach ($sprintList as $sprint) {
100 100
             $sprintObjectsArray[$sprint->id] = SprintService::getSprintFromJSON($sprint);
@@ -103,17 +103,17 @@  discard block
 block discarded – undo
103 103
         return $board;
104 104
     }
105 105
 
106
-    public function loopOverResults($uri,$paramArray = [])
106
+    public function loopOverResults($uri, $paramArray = [])
107 107
     {
108 108
         $resultsArray = array();
109 109
         $ret = $this->restClient->exec($uri.$this->restClient->toHttpQueryParameter($paramArray), null);
110 110
         $results = json_decode($ret);
111 111
         while (!$results->isLast) {
112
-            $resultsArray = array_merge($resultsArray,$results->values);
112
+            $resultsArray = array_merge($resultsArray, $results->values);
113 113
             $paramArray['startAt'] = $results->startAt + $results->maxResults;
114 114
             $ret = $this->restClient->exec($this->uri.$this->restClient->toHttpQueryParameter($paramArray), null);
115 115
             $results = json_decode($ret);
116 116
         }
117
-        return array_merge($resultsArray,$results->values);
117
+        return array_merge($resultsArray, $results->values);
118 118
         }
119 119
 }
Please login to merge, or discard this patch.