Laravolt\Avatar\Avatar::create PHP Method

create() public method

public create ( $name )
    public function create($name)
    {
        $this->name = $name;
        $this->initialGenerator->setName($name);
        $this->initialGenerator->setLength($this->chars);
        $this->initials = $this->initialGenerator->getInitial();
        $this->setForeground($this->getRandomForeground());
        $this->setBackground($this->getRandomBackground());
        return $this;
    }