Entity/CustomField : renaming getActive to isActive

This commit is contained in:
Marc Ducobu 2015-09-30 13:28:45 +02:00
parent 20ba768e43
commit 5583fbcc6c

View File

@ -130,11 +130,11 @@ class CustomField
} }
/** /**
* Get active * Returns true if the custom field is active
* *
* @return boolean * @return boolean
*/ */
public function getActive() public function isActive()
{ {
return $this->active; return $this->active;
} }