Skip to content
Snippets Groups Projects
Commit 309aa3bc authored by Bernhard Posselt's avatar Bernhard Posselt
Browse files

fix phpdoc for entities

parent 886c5177
No related branches found
No related tags found
No related merge requests found
......@@ -31,10 +31,8 @@ namespace OCP\AppFramework\Db;
* @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 void setEmail(string $email)
* @method string getPreName()
* @method void setPreName(string $preName)
*/
......
......@@ -29,7 +29,14 @@ use \OCP\IDb;
require_once __DIR__ . '/MapperTestUtility.php';
/**
* @method integer getId()
* @method void setId(integer $id)
* @method string getEmail()
* @method void setEmail(string $email)
* @method string getPreName()
* @method void setPreName(string $preName)
*/
class Example extends Entity {
public $preName;
public $email;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment