WellCommerce\Bundle\CompanyBundle\Entity\Company::setShortName PHP Méthode

setShortName() public méthode

public setShortName ( string $shortName )
$shortName string
    public function setShortName(string $shortName)
    {
        $this->shortName = $shortName;
    }

Usage Example

 public function create() : CompanyInterface
 {
     $company = new Company();
     $company->setName('');
     $company->setShortName('');
     $company->setAddress($this->companyAddressFactory->create());
     return $company;
 }
All Usage Examples Of WellCommerce\Bundle\CompanyBundle\Entity\Company::setShortName