]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/RemoveContact.php
Restore previous permission comment in Widget\CalendarExport
[friendica.git] / src / Worker / RemoveContact.php
index 2047de5261db0e4757c5057a15acb1e8836a7e6e..9a7a257770ba8982b42d6df1fca13341e08babd6 100644 (file)
@@ -6,17 +6,20 @@
 namespace Friendica\Worker;
 
 use Friendica\Core\Config;
+use dba;
+
+require_once 'include/dba.php';
 
 class RemoveContact {
        public static function execute($id) {
 
                // Only delete if the contact doesn't exist (anymore)
-               $r = dba::exists('contact', array('id' => $id));
+               $r = dba::exists('contact', ['id' => $id]);
                if ($r) {
                        return;
                }
 
                // Now we delete all the depending table entries
-               dba::delete('contact', array('id' => $id));
+               dba::delete('contact', ['id' => $id]);
        }
 }