Skip to content
This repository has been archived by the owner on Dec 11, 2020. It is now read-only.

Fix inheritance #518

Merged
merged 1 commit into from
Feb 12, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Faker/Provider/ru_RU/Address.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Faker\Provider\ru_RU;

class Address extends \Faker\Provider\Base
class Address extends \Faker\Provider\Address
{
protected static $cityPrefix = array('город');

Expand Down Expand Up @@ -135,7 +135,7 @@ public static function cityPrefix()
return static::randomElement(static::$cityPrefix);
}

public static function city()
public function city()
{
return static::randomElement(static::$city);
}
Expand Down