File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,6 @@ If you are working with a job listing service not supported out-of-the-box or by
7777abstract public function createJobObject($payload);
7878abstract public function getFormat();
7979abstract public function getListingsPath();
80- abstract public function getParameters();
8180abstract public function getUrl();
8281abstract public function getVerb();
8382```
Original file line number Diff line number Diff line change @@ -166,7 +166,10 @@ abstract public function getListingsPath();
166166 *
167167 * @return array
168168 */
169- abstract public function getParameters ();
169+ public function getParameters ()
170+ {
171+ return [];
172+ }
170173
171174 /**
172175 * Get raw listings from payload
Original file line number Diff line number Diff line change @@ -15,6 +15,13 @@ public function setUp()
1515 ->shouldAllowMockingProtectedMethods ();
1616 }
1717
18+ public function testGetParameters ()
19+ {
20+ $ parameters = $ this ->client ->getParameters ();
21+
22+ $ this ->assertEquals ([], $ parameters );
23+ }
24+
1825 public function testItPopulatesExistingAttributeswhenBuilt ()
1926 {
2027 $ attributes = [
You can’t perform that action at this time.
0 commit comments