Skip to content

Commit

Permalink
Fixed template not calling the right method
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Philip Scholten committed Oct 4, 2013
1 parent 24a5cba commit 4117aad
Showing 1 changed file with 2 additions and 2 deletions.
@@ -1,12 +1,12 @@
/** /**
* Initializes internal state of {{ builder.qualifiedClassName }} object. * Initializes internal state of {{ builder.qualifiedClassName }} object.
{% if builder.defaultValues %} {% if builder.hasDefaultValues %}
* @see applyDefaults()" * @see applyDefaults()"
{% endif %} {% endif %}
*/ */
public function __construct() public function __construct()
{ {
{% if builder.defaultValues %} {% if builder.hasDefaultValues %}
$this->applyDefaultValues(); $this->applyDefaultValues();
{% endif %} {% endif %}
} }

0 comments on commit 4117aad

Please sign in to comment.