bash
/**
* Create or update attribute
*
* @param string $attrName
* @param mixed $attrValue
* @return AdditionalAttribute|null
*/
public function setAttr(string $attrName, $attrValue): ?AdditionalAttribute;
bash
/**
* Get all attribute belongs to model
*
* @param boolean $map default: false
* @return array|null
*/
public function getAttrs(bool $map = false): ?array;
bash
/**
* Search value by attribute name
*
* @param string $attrName
* @param string $valueToSearch
* @param boolean $map
* @return array
*/
public static function searchValueByAttr(string $attrName, string $valueToSearch, bool $map = false): array;
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.