Skip to content

Commit

Permalink
StructureProperty: Fixed method visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
mcaskill committed Apr 4, 2017
1 parent c02af32 commit 457038b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Charcoal/Property/StructureProperty.php
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ public function structureProto()
* @throws InvalidArgumentException If the class name is not a string.
* @return StructureProperty
*/
private function setStructureModelClass($className)
protected function setStructureModelClass($className)
{
if (!is_string($className)) {
throw new InvalidArgumentException(
Expand All @@ -486,7 +486,7 @@ private function setStructureModelClass($className)
*
* @return string
*/
private function structureModelClass()
public function structureModelClass()
{
return $this->structureModelClass;
}
Expand Down

0 comments on commit 457038b

Please sign in to comment.