Skip to content

Release 1.1.1

Compare
Choose a tag to compare
@ovr ovr released this 23 Jan 09:42
· 55 commits to master since this release
  • Hotfix: Use array_key_exists, because isset will return false on null

This was caused, when you pass null inside parameters, example:

$this->makeRequestByOperation(
     $operation,
     [
          'limit' => null,
     ]
);