Skip to content

Commit 5e62faf

Browse files
committed
updated google maps adapter
1 parent 1274339 commit 5e62faf

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

Embed/Adapters/Archive.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Adapter to provide information from archive.org api
3+
* Adapter to provide information from archive.org API
44
*/
55
namespace Embed\Adapters;
66

Embed/Adapters/Facebook.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Adapter to provide information from facebook graph API
3+
* Adapter to provide information from any facebook page using its graph API
44
*/
55
namespace Embed\Adapters;
66

Embed/Adapters/Github.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Adapter to get the embed code from codepen
3+
* Adapter to get the embed code from gist.github.com
44
*/
55
namespace Embed\Adapters;
66

Embed/Adapters/Google.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Google extends Webpage implements AdapterInterface
1313
public static function check(Request $request)
1414
{
1515
return $request->match(array(
16-
'https://maps.google.*'
16+
'https://www.google.com/maps*'
1717
));
1818
}
1919

Embed/Adapters/Rtve.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Adapter to get the embed code from cadenaser.com
3+
* Adapter to get some info from rtve.es
44
*/
55
namespace Embed\Adapters;
66

Embed/Adapters/Soundcloud.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Adapter to provide information from soundcloud.com api
3+
* Adapter to provide information from soundcloud.com API
44
*/
55
namespace Embed\Adapters;
66

Embed/Adapters/Spotify.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Adapter to fix some issues from jsfiddle
3+
* Adapter to get the embed code from spotify
44
*/
55
namespace Embed\Adapters;
66

Embed/Adapters/Webpage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Adapter to provide all information from any webpage (detects html meta tags, opengraph, twitter cards, oembed, etc)
3+
* Adapter to provide all information from any webpage
44
*/
55
namespace Embed\Adapters;
66

0 commit comments

Comments
 (0)