Skip to content

Commit 08a2ed2

Browse files
committed
updates to fix some issues on scrutinizer-ci
1 parent d2c1259 commit 08a2ed2

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

src/RESTful/CurlWrapper.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,14 @@
77

88
class CurlWrapper
99
{
10+
protected $_baseURI;
11+
protected $_timeout;
12+
protected $_token;
13+
protected $_pathConfiguration = '';
1014
protected $_headerLocation = null;
11-
private $_contentType;
1215
protected $_headerProperty = null;
1316
protected $_headerResponseCode = null;
17+
private $_contentType;
1418

1519
/**
1620
* Constructor

src/RESTful/RESTful.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@
44

55
class RESTful extends CurlWrapper implements RESTfulInterface
66
{
7-
protected $_baseURI;
8-
protected $_timeout;
9-
protected $_token;
10-
protected $_pathConfiguration = '';
11-
127
/**
138
* Constructor
149
*

src/RESTful/RESTfulInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ public function setPathConfiguration($pathConfiguration);
3636
* @return void
3737
*/
3838
public function setHeaderProperty($headerProperty);
39+
40+
/**
41+
* @return string
42+
*/
3943
public function getHeaderLocation();
4044

4145
/**

0 commit comments

Comments
 (0)