Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion lib/Db/FaceCluster.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
Expand Down
1 change: 0 additions & 1 deletion lib/Db/FaceDetection.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
1 change: 0 additions & 1 deletion lib/Db/FsAccessUpdate.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
Expand Down
1 change: 0 additions & 1 deletion lib/Db/FsCreation.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
1 change: 0 additions & 1 deletion lib/Db/FsDeletion.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
Expand Down
1 change: 0 additions & 1 deletion lib/Db/FsMove.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
2 changes: 0 additions & 2 deletions lib/Db/QueueFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
* @method bool getUpdate()
*/
final class QueueFile extends Entity {
public $id;
protected $fileId;
protected $storageId;
protected $rootId;
Expand All @@ -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');
Expand Down
Loading