Advertisement
Guest User

Untitled

a guest
Sep 1st, 2012
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * This file is part of the Geocoder package.
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. *
  8. * @license MIT License
  9. */
  10.  
  11. namespace Geocoder\HttpAdapter;
  12.  
  13. use Buzz\Browser;
  14.  
  15. /**
  16. * @author William Durand <[email protected]>
  17. */
  18. class BuzzHttpAdapter implements HttpAdapterInterface
  19. {
  20. /**
  21. * @var \Buzz\Browser
  22. */
  23. protected $browser;
  24.  
  25. /**
  26. * @param \Buzz\Browser $browser
  27. */
  28. public function __construct(Browser $browser = null)
  29. {
  30. if (null === $browser) {
  31. $this->browser = new Browser();
  32. } else {
  33. $this->browser = $browser;
  34. }
  35. }
  36.  
  37. /**
  38. * {@inheritDoc}
  39. */
  40. public function getContent($url)
  41. {
  42. try {
  43. $response = $this->browser->get($url);
  44. $content = $response->getContent();
  45. } catch (\Exception $e) {
  46. $content = null;
  47. }
  48.  
  49. return $content;
  50. }
  51.  
  52. /**
  53. * {@inheritDoc}
  54. */
  55. public function getName()
  56. {
  57. return 'buzz';
  58. }
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement