Added numeric check for slug attribut

This commit is contained in:
Kevin Frantz
2019-01-20 11:03:21 +01:00
parent 36c3c28a66
commit c5375d4e0d
3 changed files with 33 additions and 0 deletions

View File

@@ -2,6 +2,8 @@
namespace App\Attribut;
use App\Exception\UnvalidValueException;
/**
* @author kevinfrantz
*/
@@ -12,16 +14,30 @@ trait SlugAttribut
*/
protected $slug;
/**
* @param string $slug
*
* @throws UnvalidValueException
*/
public function setSlug(string $slug): void
{
if (is_numeric($slug)) {
throw new UnvalidValueException('A slug must not be numeric!');
}
$this->slug = $slug;
}
/**
* @return string
*/
public function getSlug(): string
{
return $this->slug;
}
/**
* @return bool
*/
public function hasSlug(): bool
{
return isset($this->slug);