Skip to content

Commit

Permalink
Apply fixes from StyleCI (#349)
Browse files Browse the repository at this point in the history
[ci skip] [skip ci]

Co-authored-by: KwangSeob Jeong <[email protected]>
  • Loading branch information
lesstif and lesstif authored Sep 10, 2020
1 parent 95061a2 commit f4d872d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Dumper.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ public static function dd($x)
array_map(function ($x) {
(new self())->dump($x);
}, func_get_args());
die(1);
exit(1);
}
}
1 change: 0 additions & 1 deletion src/Status/Status.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace JiraRestApi\Status;


class Status implements \JsonSerializable
{
/** @var int */
Expand Down
5 changes: 2 additions & 3 deletions src/Status/StatusService.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace JiraRestApi\Status;


use JiraRestApi\JiraException;
use JsonMapper_Exception;

Expand All @@ -11,7 +10,8 @@ class StatusService extends \JiraRestApi\JiraClient
private $uri = '/status';

/**
* get all statuses
* get all statuses.
*
* @throws JiraException
* @throws JsonMapper_Exception
*
Expand All @@ -22,7 +22,6 @@ public function getAll()
$ret = $this->exec($this->uri.'/', null);
$this->log->info("Result=\n".$ret);


return $this->json_mapper->mapArray(
json_decode($ret, false),
new \ArrayObject(),
Expand Down

0 comments on commit f4d872d

Please sign in to comment.