diff --git a/src/Faker/Provider/en_IN/Address.php b/src/Faker/Provider/en_IN/Address.php new file mode 100644 index 0000000000..a810b69fbe --- /dev/null +++ b/src/Faker/Provider/en_IN/Address.php @@ -0,0 +1,134 @@ +generator->parse(static::randomElement(static::$societyNameFormat)); + } + /** + * @example Mumbai + */ + public function city() + { + return static::randomElement(static::$city); + } + /** + * @example Vaishali Nagar + */ + public function locality() + { + return $this->generator->parse(static::randomElement(static::$localityFormats)); + } + /* + * @example Kharadi + */ + public function localityName() + { + return $this->generator->parse(static::randomElement(static::$localityName)); + } + /** + * @example Nagar + */ + public function areaSuffix() + { + return static::randomElement(static::$areaSuffix); + } +} diff --git a/src/Faker/Provider/en_IN/Internet.php b/src/Faker/Provider/en_IN/Internet.php new file mode 100644 index 0000000000..6ec16710a9 --- /dev/null +++ b/src/Faker/Provider/en_IN/Internet.php @@ -0,0 +1,9 @@ +