Skip to content

Commit

Permalink
[Routing] initialize the Route properties
Browse files Browse the repository at this point in the history
They should normally be initialized anyway in the constructor. But when extending the Route (like in CMF) and using an ORM/ODM to persist them in the DB, the constructor is not called. Then a new property that is not saved like hostnamePattern stays null which in turn makes the RouteCompiler fails as it expects '' instead of null.
  • Loading branch information
Tobion committed Nov 19, 2012
1 parent 6e8115a commit e39b709
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Symfony/Component/Routing/Route.php
Expand Up @@ -23,12 +23,12 @@ class Route implements \Serializable
/**
* @var string
*/
private $pattern;
private $pattern = '/';

/**
* @var string
*/
private $hostnamePattern;
private $hostnamePattern = '';

/**
* @var array
Expand Down

0 comments on commit e39b709

Please sign in to comment.