Skip to content

Commit

Permalink
Merge pull request #5 from JobBrander/location-update
Browse files Browse the repository at this point in the history
Adding setLocation() method
  • Loading branch information
karllhughes committed Oct 15, 2015
2 parents 440fa13 + 42bc8ac commit 82e1ab7
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
# Changelog
All Notable changes to `jobs-jobs2careers` will be documented in this file

## 1.1.0 - 2015-10-15

### Added
- Added support for setLocation() method

### Deprecated
- Nothing

### Fixed
- Nothing

### Removed
- Nothing

### Security
- Nothing

## 1.0.0 - 2015-10-10

### Added
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ $jobs = $client
// Extra parameters, not supported by official API
->setCount(200) // Alias for setLimit()
->setKeyword('project manager') // Alias for setQ()
->setLocation('Chicago, IL') // Alias for setL()
->setPartnerId() // Alias for setId()
->setPartnerPass() // Alias for setPass()
->getJobs();
Expand Down
3 changes: 1 addition & 2 deletions src/J2c.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ class J2c extends AbstractProvider
'setKeyword' => 'q',
'setPartnerId' => 'id',
'setPartnerPass' => 'pass',
'setCity' => 'city',
'setState' => 'state',
'setLocation' => 'l',
];

/**
Expand Down

0 comments on commit 82e1ab7

Please sign in to comment.