Skip to content

Commit 3cd00f8

Browse files
authored
Merge pull request #217 from aik099/create-remote-link-cs-fix
CS fix for "Api::createRemoteLink" method
2 parents a8986ac + 6c7cd57 commit 3cd00f8

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/Jira/Api.php

+6-4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2323
* THE SOFTWARE.
2424
*/
25+
2526
namespace chobie\Jira;
2627

2728

@@ -32,6 +33,7 @@
3233

3334
class Api
3435
{
36+
3537
const REQUEST_GET = 'GET';
3638
const REQUEST_POST = 'POST';
3739
const REQUEST_PUT = 'PUT';
@@ -732,10 +734,10 @@ public function createRemoteLink(
732734
array $application = null
733735
) {
734736
$options = array(
735-
'globalId' => $global_id,
736-
'relationship' => $relationship,
737-
'object' => $object,
738-
);
737+
'globalId' => $global_id,
738+
'relationship' => $relationship,
739+
'object' => $object,
740+
);
739741

740742
if ( $application !== null ) {
741743
$options['application'] = $application;

0 commit comments

Comments
 (0)