Skip to content

Commit

Permalink
Fix leftover var_dump
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaetano Giunta committed May 14, 2018
1 parent 1459f85 commit 986876c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Faker/Provider/Picture.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
namespace Kaliop\eZLoremIpsumBundle\Faker\Provider;

use Faker\Provider\Base;

/**
* Almost the same as Image from Faker, but uses picsum.photos
* @todo add support for https://loremflickr.com/ as an alternative
*/
class Picture extends Base
{
Expand All @@ -20,7 +22,7 @@ public static function pictureUrl($width = 640, $height = 480, $randomize = true
if ($randomize) {
$url .= '?random';
}
var_dump($baseUrl . $url);

return $baseUrl . $url;
}

Expand Down

0 comments on commit 986876c

Please sign in to comment.