AdamWathan\Form\ErrorStore\IlluminateErrorStore::getError PHP Méthode

getError() public méthode

public getError ( $key )
    public function getError($key)
    {
        if (!$this->hasError($key)) {
            return null;
        }
        $key = $this->transformKey($key);
        return $this->getErrors()->first($key);
    }