Skip to content

Commit

Permalink
add missing phpdocs in ValidationValueBoxTrait
Browse files Browse the repository at this point in the history
  • Loading branch information
speto committed Jun 8, 2016
1 parent 9dab89c commit 07b10b3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/ValidationValueBoxTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,17 @@ public function __construct($value)
$this->value = $value;
}

/**
* @return mixed
*/
public function getValue()
{
return $this->value;
}

/**
* @param $value
* @return void
*/
abstract protected function validation($value);
}

0 comments on commit 07b10b3

Please sign in to comment.