From 4f4b718f5ddb421b021a333db4aadd359b49552e Mon Sep 17 00:00:00 2001 From: Bart Vrancken Date: Sat, 19 Mar 2016 20:40:32 +0100 Subject: [PATCH] remove unused uri value --- composer.json | 2 +- src/Webiron.php | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/composer.json b/composer.json index f06c144..295413c 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "abuseio/parser-webiron", "description": "Parser addon for handling notifications from webiron", - "version": "1.3.1", + "version": "1.3.2", "keywords": ["laravel", "abuseio", "parser", "webiron"], "homepage": "http://abuse.io", "type": "library", diff --git a/src/Webiron.php b/src/Webiron.php index 6c3b9e4..56fc0ac 100644 --- a/src/Webiron.php +++ b/src/Webiron.php @@ -67,7 +67,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(str_replace('\'', '', $report['Date'])); @@ -127,7 +126,6 @@ public function parse() $incident->source_id = false; $incident->ip = $report['ip']; $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['Time']);