Inheritance: extends Faker\Provider\Base
Esempio n. 1
0
File: Text.php Progetto: saj696/pipe
 public function realText($maxNbChars = 200, $indexSize = 2)
 {
     $text = parent::realText($maxNbChars, $indexSize);
     $text = str_replace('„', '', $text);
     return str_replace('“', '', $text);
 }