for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* neuralyzer : Data Anonymization Library and CLI Tool
*
* PHP Version 7.1
* @author Emmanuel Dyan
* @copyright 2018 Emmanuel Dyan
* @package edyan/neuralyzer
* @license GNU General Public License v2.0
* @link https://github.com/edyan/neuralyzer
*/
namespace Edyan\Neuralyzer\Faker\Provider;
* Extends the base provider of faker to add an empty value Generator
class Base extends \Faker\Provider\Base
{
* Simply generate an empty string
* @return string
public static function emptyString(): string
return '';
}