Quick startΒΆ

  1. Load the Fakerino class
  2. Create a Fakerino instance (only once)
  3. 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'));