diff options
author | Bernhard Posselt <dev@bernhard-posselt.com> | 2014-04-19 15:25:36 +0200 |
---|---|---|
committer | Bernhard Posselt <dev@bernhard-posselt.com> | 2014-04-19 15:25:36 +0200 |
commit | 93237d87ec5fdb54191bf3a75bd6d85992de6f39 (patch) | |
tree | f46005f5af071a141c7f1136cdf7fd05d84a5439 /tests/lib/appframework/db/EntityTest.php | |
parent | f260951825aae63c4295a7e39ea06d823f75bddd (diff) | |
download | nextcloud-server-93237d87ec5fdb54191bf3a75bd6d85992de6f39.tar.gz nextcloud-server-93237d87ec5fdb54191bf3a75bd6d85992de6f39.zip |
fix scrutinizer issues
Diffstat (limited to 'tests/lib/appframework/db/EntityTest.php')
-rw-r--r-- | tests/lib/appframework/db/EntityTest.php | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/tests/lib/appframework/db/EntityTest.php b/tests/lib/appframework/db/EntityTest.php index 170bd04b7b9..28196d9fd9b 100644 --- a/tests/lib/appframework/db/EntityTest.php +++ b/tests/lib/appframework/db/EntityTest.php @@ -24,7 +24,20 @@ namespace OCP\AppFramework\Db; - +/** + * @method integer getId() + * @method void setId(integer $id) + * @method integer getTestId() + * @method void setTestId(integer $id) + * @method string getName() + * @method void setName(string $name) + * @method string getName() + * @method void setEmail(string $email) + * @method string getEmail() + * @method void setEmailName(string $email) + * @method string getPreName() + * @method void setPreName(string $preName) + */ class TestEntity extends Entity { public $name; public $email; |