Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMatthias Held <ilovemilk@wusa.io>2018-09-07 18:49:11 +0300
committerMatthias Held <ilovemilk@wusa.io>2018-09-07 18:49:11 +0300
commitba88b8210ab98ae35fcbf3ff950afe552286c815 (patch)
treedd0eb7d054753adef354cd43b54296897b3fde02 /lib
parent93742886cabc7514b93e654c482893a0dec309ce (diff)
Fix variable type string => integer
Diffstat (limited to 'lib')
-rw-r--r--lib/Db/FileOperation.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Db/FileOperation.php b/lib/Db/FileOperation.php
index e91f92c..09bcedc 100644
--- a/lib/Db/FileOperation.php
+++ b/lib/Db/FileOperation.php
@@ -83,5 +83,7 @@ class FileOperation extends Entity
$this->addType('entropy', 'float');
$this->addType('standardDeviation', 'float');
$this->addType('suspicionClass', 'integer');
+ $this->addType('fileExtensionClass', 'integer');
+ $this->addType('fileClass', 'integer');
}
}