Skip to content

Commit

Permalink
[Routing] fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Jul 19, 2012
1 parent 00d8027 commit 3630f2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Route.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function serialize()
{
return serialize(array(
'pattern' => $this->pattern,
'default' => $this->default,
'defaults' => $this->defaults,
'requirements' => $this->requirements,
'options' => $this->options,
));
Expand All @@ -69,7 +69,7 @@ public function unserialize($data)
{
$data = unserialize($data);
$this->pattern = $data['pattern'];
$this->default = $data['default'];
$this->defaults = $data['defaults'];
$this->requirements = $data['requirements'];
$this->options = $data['options'];
}
Expand Down

0 comments on commit 3630f2d

Please sign in to comment.