Skip to content
This repository has been archived by the owner on Feb 26, 2018. It is now read-only.

Commit

Permalink
Merge pull request #105 from JesseLeite/make-extension-easier
Browse files Browse the repository at this point in the history
Make extension easier by protecting these privates?
  • Loading branch information
adamwathan committed Jun 9, 2016
2 parents 20ce41d + 1cf65b4 commit c9e02ea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/AdamWathan/BootForms/BootForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

class BootForm
{
private $builder;
private $basicFormBuilder;
private $horizontalFormBuilder;
protected $builder;
protected $basicFormBuilder;
protected $horizontalFormBuilder;

public function __construct(BasicFormBuilder $basicFormBuilder, HorizontalFormBuilder $horizontalFormBuilder)
{
Expand Down
2 changes: 1 addition & 1 deletion src/AdamWathan/BootForms/HorizontalFormBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

class HorizontalFormBuilder extends BasicFormBuilder
{
private $columnSizes;
protected $columnSizes;

protected $builder;

Expand Down

0 comments on commit c9e02ea

Please sign in to comment.