Releases: anime-db/smotret-anime-browser-bundle
Releases · anime-db/smotret-anime-browser-bundle
v1.1.0
Changes
- Catch exceptions
use AnimeDb\Bundle\SmotretAnimeBrowserBundle\Exception\ErrorException;
use AnimeDb\Bundle\SmotretAnimeBrowserBundle\Exception\NotFoundException;
try {
$content = $browser->get('series/1');
} catch (NotFoundException $e) {
// series not found
} catch (ErrorException $e) {
// invalid response
} catch (\Exception $e) {
// other exceptions
}
v1.0.1
Changes
- Allow override
User Agent
from request options.
v1.0.0
add Installation, Configuration, Usage and License docs in README