Skip to content

Commit

Permalink
remove unused uri value
Browse files Browse the repository at this point in the history
  • Loading branch information
kruisdraad committed Mar 19, 2016
1 parent 2a5f193 commit 4f4b718
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 0 additions & 2 deletions src/Webiron.php
Original file line number Diff line number Diff line change
Expand Up @@ -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']));
Expand Down Expand Up @@ -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']);
Expand Down

0 comments on commit 4f4b718

Please sign in to comment.