Browse Source

Merge pull request #17639 from nextcloud/enhancement/entity-boolean-getter

Add isXXX getter to Entity
tags/v18.0.0beta1
Roeland Jago Douma 4 years ago
parent
commit
7960a71fe2
No account linked to committer's email address
1 changed files with 12 additions and 9 deletions
  1. 12
    9
      lib/public/AppFramework/Db/Entity.php

+ 12
- 9
lib/public/AppFramework/Db/Entity.php View File

@@ -24,6 +24,9 @@
namespace OCP\AppFramework\Db;


use function lcfirst;
use function substr;

/**
* @method integer getId()
* @method void setId(integer $id)
@@ -139,16 +142,16 @@ abstract class Entity {
* getter method
* @since 7.0.0
*/
public function __call($methodName, $args){
$attr = lcfirst( substr($methodName, 3) );
if(strpos($methodName, 'set') === 0){
$this->setter($attr, $args);
} elseif(strpos($methodName, 'get') === 0) {
return $this->getter($attr);
public function __call($methodName, $args) {
if (strpos($methodName, 'set') === 0) {
$this->setter(lcfirst(substr($methodName, 3)), $args);
} elseif (strpos($methodName, 'get') === 0) {
return $this->getter(lcfirst(substr($methodName, 3)));
} elseif (strpos($methodName, 'is') === 0) {
return $this->getter(lcfirst(substr($methodName, 2)));
} else {
throw new \BadFunctionCallException($methodName .
' does not exist');
throw new \BadFunctionCallException($methodName .
' does not exist');
}

}

Loading…
Cancel
Save