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

Commit

Permalink
Merge pull request #518 from glagola/master
Browse files Browse the repository at this point in the history
Fix inheritance
  • Loading branch information
fzaninotto committed Feb 12, 2015
2 parents 81e4ecc + bcf933a commit 80c1424
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 80c1424

Please sign in to comment.