| 1 |
<?php namespace TierPricingTable\BackgroundProcessing\Updater\Updates; |
| 2 |
|
| 3 |
use TierPricingTable\BackgroundProcessing\Updater\Updater; |
| 4 |
|
| 5 |
abstract class VersionAbstract { |
| 6 |
|
| 7 |
protected $version; |
| 8 |
|
| 9 |
public function getVersion() { |
| 10 |
return $this->version; |
| 11 |
} |
| 12 |
|
| 13 |
protected function setCurrentDBVersion() { |
| 14 |
update_option( Updater::DB_OPTION, $this->getVersion() ); |
| 15 |
} |
| 16 |
} |