From 09feee247822decf235edb4e91d128597404bfd4 Mon Sep 17 00:00:00 2001 From: Bart Vrancken Date: Sat, 19 Mar 2016 20:24:15 +0100 Subject: [PATCH] remove unused uri value --- composer.json | 2 +- src/Blocklistde.php | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 77fce72..84568af 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "abuseio/parser-blocklistde", "description": "Parser addon for handling notifications from blocklist.de", - "version": "1.3.1", + "version": "1.3.2", "keywords": ["laravel", "abuseio", "parser", "blocklist.de"], "homepage": "http://abuse.io", "type": "library", diff --git a/src/Blocklistde.php b/src/Blocklistde.php index efb7d50..5e3dd6e 100644 --- a/src/Blocklistde.php +++ b/src/Blocklistde.php @@ -58,7 +58,6 @@ public function parse() $incident->source_id = false; $incident->ip = $report['Source']; $incident->domain = false; - $incident->uri = false; $incident->class = config("{$this->configBase}.feeds.{$this->feedName}.class"); $incident->type = config("{$this->configBase}.feeds.{$this->feedName}.type"); $incident->timestamp = strtotime($report['Date']);