for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SpeckCatalog\Model;
class Category extends AbstractModel
{
protected $categoryId;
protected $name;
protected $seoTitle;
protected $descriptionHtml;
protected $imageFileName;
/**
* @return categoryId
*/
public function getCategoryId()
return $this->categoryId;
}
* @param $categoryId
* @return self
public function setCategoryId($categoryId)
$this->categoryId = $categoryId;
return $this;
* @return name
public function getName()
return $this->name;
* @param $name
public function setName($name)
$this->name = $name;
* @return seoTitle
public function getSeoTitle()
return $this->seoTitle;
* @param $seoTitle
public function setSeoTitle($seoTitle)
$this->seoTitle = $seoTitle;
* @return imageFileName
public function getImageFileName()
return $this->imageFileName;
* @param $imageFileName
public function setImageFileName($imageFileName)
$this->imageFileName = $imageFileName;
* @return descriptionHtml
public function getDescriptionHtml()
return $this->descriptionHtml;
* @param $descriptionHtml
public function setDescriptionHtml($descriptionHtml)
$this->descriptionHtml = $descriptionHtml;