Skip to content

Commit

Permalink
to move vardumper to require-dev section
Browse files Browse the repository at this point in the history
  • Loading branch information
lesstif committed Sep 5, 2016
1 parent 4b49414 commit cf083a4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
"php": ">=5.4.0",
"netresearch/jsonmapper": "~0.11",
"monolog/monolog": "~1.12",
"vlucas/phpdotenv": "~2.0",
"symfony/var-dumper": "~2.8|~3.0"
"vlucas/phpdotenv": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.4",
"mockery/mockery": "^0.9.4"
"mockery/mockery": "^0.9.4",
"symfony/var-dumper": "~2.8|~3.0"
},
"license": "Apache 2.0",
"authors": [
Expand Down
8 changes: 4 additions & 4 deletions src/Field/FieldService.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

namespace JiraRestApi\Field;

use JiraRestApi\Dumper;

class FieldService extends \JiraRestApi\JiraClient
{
private $uri = '/field';
Expand Down Expand Up @@ -46,7 +44,9 @@ public function getCustomFieldOption($id)
{
$ret = $this->exec('/customFieldOption', null);

Dumper::dd($ret);
$this->log->addDebug("Create Field=\n" . $ret);

return $ret;
}

/**
Expand All @@ -60,7 +60,7 @@ public function create(Field $field)
{
$data = json_encode($field);

$this->log->addInfo("Create Field=\n".$data);
$this->log->addInfo("Create Field=\n" . $data);

$ret = $this->exec($this->uri, $data, 'POST');

Expand Down

0 comments on commit cf083a4

Please sign in to comment.