Skip to content

Commit

Permalink
Updated logger version and removed unneeded observer (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin Schmick authored Aug 1, 2022
1 parent b67e543 commit bd838f4
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 27 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
],
"require": {
"php": "^8.0.0|^8.1.0",
"always-open/laravel-request-logger": "^2.0",
"always-open/laravel-request-logger": "^2.1",
"guzzlehttp/guzzle": "^7.4",
"illuminate/contracts": "^9.0",
"illuminate/support": "^9.0",
Expand Down
7 changes: 0 additions & 7 deletions src/Models/RequestLog.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace BluefynInternational\ShipEngine\Models;

use AlwaysOpen\RequestLogger\Models\RequestLogBaseModel;
use BluefynInternational\ShipEngine\Observers\RequestLogObserver;

/**
* BluefynInternational\ShipEngine\Models\RequestLog
Expand All @@ -19,12 +18,6 @@
*/
class RequestLog extends RequestLogBaseModel
{
protected static function boot()
{
parent::boot();
parent::observe(RequestLogObserver::class);
}

public function getTable()
{
return config('shipengine.request_log_table_name');
Expand Down
19 changes: 0 additions & 19 deletions src/Observers/RequestLogObserver.php

This file was deleted.

0 comments on commit bd838f4

Please sign in to comment.