Quick startΒΆ
- Load the Fakerino class
- Create a Fakerino instance (only once)
- Fake the data
require('../Fakerino/vendor/autoload.php'); //path to the Fakerino folder
use Fakerino\Fakerino
$fakerino = Fakerino::create();
echo $falerino->fake('NameMale'); //shows a fake name
To fake more than one data in same time, an array must be passed to the fake method.
echo $falerino->fake(array('NameMale', 'Surname'));