Skip to content

Commit

Permalink
Merge pull request #44 from acelaya/feature/protected-properties
Browse files Browse the repository at this point in the history
Ease extension of Slugify class
  • Loading branch information
Florian Eckerstorfer committed Sep 24, 2014
2 parents 56b8981 + 0230408 commit 9da3415
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Slugify.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
class Slugify implements SlugifyInterface
{
/** @var array */
private $rules = array(
protected $rules = array(
// Numeric characters
'¹' => 1,
'²' => 2,
Expand Down Expand Up @@ -442,7 +442,7 @@ class Slugify implements SlugifyInterface
);

/** @var string[][] */
private $rulesets = array(
protected $rulesets = array(
'esperanto' => array(
'ĉ' => 'cx',
'ĝ' => 'gx',
Expand Down

0 comments on commit 9da3415

Please sign in to comment.