Skip to content

Commit

Permalink
Merge branch 'release/1.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Culka committed Mar 15, 2024
2 parents fbf6455 + 741a04c commit 0cb19cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "trexima/harvey-client",
"description": "Client for Harvey API v2",
"version": "1.2.2",
"version": "1.3.0",
"type": "library",
"license": "MIT",
"authors": [
Expand Down
3 changes: 2 additions & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -354,11 +354,12 @@ public function searchSchool(?string $title = null, ?string $nuts = null, ?strin
* @param int $year
* @param int $page
* @param int $perPage
* @param array $root
* @return mixed
* @throws \Psr\Cache\InvalidArgumentException
* @throws ReflectionException
*/
public function searchSchoolByYear(?string $query, ?string $nuts = null, array $type = [], ?int $year = null, $page = 1, $perPage = self::RESULTS_PER_PAGE)
public function searchSchoolByYear(?string $query, ?string $nuts = null, array $type = [], ?int $year = null, $page = 1, $perPage = self::RESULTS_PER_PAGE, array $root = [])
{
$parameterNames = array_slice($this->methodParameterExtractor->extract(__CLASS__, __FUNCTION__), 0, func_num_args());
$args = array_combine($parameterNames, func_get_args());
Expand Down

0 comments on commit 0cb19cd

Please sign in to comment.