Skip to content

Commit

Permalink
Public access methods for static fields
Browse files Browse the repository at this point in the history
  • Loading branch information
lord-executor committed Jun 13, 2016
1 parent 08cb412 commit 1dbefa2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions StaticField.php
Expand Up @@ -14,6 +14,16 @@ public function __construct($value, $metaData = null)
$this->metaData = $metaData;
}

public function getValue()
{
return $this->value;
}

public function getMetaData()
{
return $this->metaData;
}

protected function getDefaultExtractor()
{
return function ($field) {
Expand Down

0 comments on commit 1dbefa2

Please sign in to comment.