Skip to content

Commit

Permalink
Made customAttributes protected instead of private
Browse files Browse the repository at this point in the history
  • Loading branch information
sgtlambda committed Aug 17, 2015
1 parent 8810f72 commit a9c3746
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/fieldwork/components/Component.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ abstract class Component

protected
$parent,
$children = array();
$children = array(),
$customAttributes = array();
private
$slug,
$active = true,
$customClasses = array(),
$customAttributes = array();
$customClasses = array();

public function __construct ($slug)
{
Expand Down

0 comments on commit a9c3746

Please sign in to comment.