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

Normalize name of variable #1412

Merged
merged 1 commit into from
Feb 2, 2018
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/el_GR/Company.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Company extends \Faker\Provider\Company
);


protected static $οbject = array(
protected static $object = array(
'Προγραμματιστής',
'Δικηγόρος',
'Γιατρός',
Expand Down Expand Up @@ -79,6 +79,6 @@ public static function doy()
*/
public static function object()
{
return static::randomElement(static::$οbject);
return static::randomElement(static::$object);
}
}