You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 13, 2026. It is now read-only.
After some weird behavior, we dropped in a quick var_dump(func_get_args()); at the top of \Faker\Provider\Image::image resulting in only the first argument registering:
Honestly, we probably shouldn't even be writing images out to the filesystem like this to begin with and should just rely on Faker.imageUrl() instead. As you can see, it results in a silly amount of file i/o and residual files:
Within
data.json, there is this use ofFaker.image():After some weird behavior, we dropped in a quick
var_dump(func_get_args());at the top of\Faker\Provider\Image::imageresulting in only the first argument registering:Honestly, we probably shouldn't even be writing images out to the filesystem like this to begin with and should just rely on
Faker.imageUrl()instead. As you can see, it results in a silly amount of file i/o and residual files: