diff --git a/lib/Db/FaceCluster.php b/lib/Db/FaceCluster.php index d14e98c5..7f89afa0 100644 --- a/lib/Db/FaceCluster.php +++ b/lib/Db/FaceCluster.php @@ -34,7 +34,6 @@ final class FaceCluster extends Entity { public function __construct() { // add types in constructor - $this->addType('id', 'integer'); $this->addType('title', 'string'); $this->addType('userId', 'string'); } diff --git a/lib/Db/FaceDetection.php b/lib/Db/FaceDetection.php index fcd5e833..3c7589a8 100644 --- a/lib/Db/FaceDetection.php +++ b/lib/Db/FaceDetection.php @@ -51,7 +51,6 @@ class FaceDetection extends Entity { public function __construct() { // add types in constructor - $this->addType('id', 'integer'); $this->addType('fileId', 'integer'); $this->addType('userId', 'string'); $this->addType('x', 'float'); diff --git a/lib/Db/FsAccessUpdate.php b/lib/Db/FsAccessUpdate.php index 8b6526f7..3fe2cde7 100644 --- a/lib/Db/FsAccessUpdate.php +++ b/lib/Db/FsAccessUpdate.php @@ -36,7 +36,6 @@ final class FsAccessUpdate extends Entity { public function __construct() { // add types in constructor - $this->addType('id', 'integer'); $this->addType('storageId', 'integer'); $this->addType('rootId', 'integer'); } diff --git a/lib/Db/FsCreation.php b/lib/Db/FsCreation.php index 304e5a18..5e1d5c28 100644 --- a/lib/Db/FsCreation.php +++ b/lib/Db/FsCreation.php @@ -39,7 +39,6 @@ final class FsCreation extends Entity { public function __construct() { // add types in constructor - $this->addType('id', 'integer'); $this->addType('storageId', 'integer'); $this->addType('rootId', 'integer'); $this->addType('userId', 'string'); diff --git a/lib/Db/FsDeletion.php b/lib/Db/FsDeletion.php index dbd31477..74344f5e 100644 --- a/lib/Db/FsDeletion.php +++ b/lib/Db/FsDeletion.php @@ -36,7 +36,6 @@ final class FsDeletion extends Entity { public function __construct() { // add types in constructor - $this->addType('id', 'integer'); $this->addType('storageId', 'integer'); $this->addType('nodeId', 'integer'); } diff --git a/lib/Db/FsMove.php b/lib/Db/FsMove.php index 3319add4..198994b2 100644 --- a/lib/Db/FsMove.php +++ b/lib/Db/FsMove.php @@ -38,7 +38,6 @@ final class FsMove extends Entity { public function __construct() { // add types in constructor - $this->addType('id', 'integer'); $this->addType('nodeId', 'integer'); $this->addType('owner', 'string'); $this->addType('addedUsers', 'string'); diff --git a/lib/Db/QueueFile.php b/lib/Db/QueueFile.php index a0cc6713..f437c2f6 100644 --- a/lib/Db/QueueFile.php +++ b/lib/Db/QueueFile.php @@ -23,7 +23,6 @@ * @method bool getUpdate() */ final class QueueFile extends Entity { - public $id; protected $fileId; protected $storageId; protected $rootId; @@ -36,7 +35,6 @@ final class QueueFile extends Entity { public function __construct() { // add types in constructor - $this->addType('id', 'integer'); $this->addType('fileId', 'integer'); $this->addType('storageId', 'integer'); $this->addType('rootId', 'integer');