Skip to content

Commit

Permalink
remove updater
Browse files Browse the repository at this point in the history
  • Loading branch information
bdmehedi committed Dec 4, 2023
1 parent 3b68f17 commit ea80f4b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 289 deletions.
27 changes: 0 additions & 27 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,6 @@ class Client {
*/
private $insights;

/**
* The Object of Updater Class
*
* @var object
*/
private $updater;

/**
* The Object of License Class
*
Expand Down Expand Up @@ -134,26 +127,6 @@ public function insights() {
return $this->insights;
}

/**
* Initialize plugin/theme updater
*
* @return Appsero\Updater
*/
public function updater() {
if ( ! class_exists( __NAMESPACE__ . '\Updater' ) ) {
require_once __DIR__ . '/Updater.php';
}

// if already instantiated, return the cached one
if ( $this->updater ) {
return $this->updater;
}

$this->updater = new Updater( $this );

return $this->updater;
}

/**
* Initialize license checker
*
Expand Down
262 changes: 0 additions & 262 deletions src/Updater.php

This file was deleted.

0 comments on commit ea80f4b

Please sign in to comment.