Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions src/Models/SearchParameters.php
Original file line number Diff line number Diff line change
Expand Up @@ -509,14 +509,9 @@ public function getWords() : ?string
* Sets keywords in search Params for searching files.
* @param string $words keywords that you want to search
* @return SearchParameters object
* @throws StockApiException if words is null or blank
*/
public function setWords(string $words) : SearchParameters
{
if (empty($words)) {
throw StockApiException::WithMessage('Should not be blank or null values in kewywords field');
}
Comment thread
dmytrokaplin marked this conversation as resolved.

$this->words = $words;
return $this;
}
Expand Down