diff --git a/app/Models/Host.php b/app/Models/Host.php index e9054e4..f7af372 100644 --- a/app/Models/Host.php +++ b/app/Models/Host.php @@ -3,7 +3,6 @@ namespace App\Models; use App\Models\Module\Module; -use App\Exceptions\CommonException; use App\Models\WorkOrder\WorkOrder; use Illuminate\Support\Facades\Cache; // use Illuminate\Database\Eloquent\SoftDeletes; @@ -114,7 +113,7 @@ public function cost($price = null) ]); } - $this->price = intval(log10(abs($this->price)) / 3);; + $this->price = intval(log10(abs($this->price)) / 3); Cache::decrement($cache_key, $this->price);