We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ee2d4f5 + 71aa6bf commit 0801a4aCopy full SHA for 0801a4a
1 file changed
src/Models/SearchParameters.php
@@ -509,14 +509,9 @@ public function getWords() : ?string
509
* Sets keywords in search Params for searching files.
510
* @param string $words keywords that you want to search
511
* @return SearchParameters object
512
- * @throws StockApiException if words is null or blank
513
*/
514
public function setWords(string $words) : SearchParameters
515
{
516
- if (empty($words)) {
517
- throw StockApiException::WithMessage('Should not be blank or null values in kewywords field');
518
- }
519
-
520
$this->words = $words;
521
return $this;
522
}
0 commit comments