-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathNotifyModuleUpdate.php
More file actions
49 lines (44 loc) · 1.27 KB
/
NotifyModuleUpdate.php
File metadata and controls
49 lines (44 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
namespace PostcodeEu\AddressValidation\Cron;
use Psr\Log\LoggerInterface;
use PostcodeEu\AddressValidation\Helper\Data as DataHelper;
use PostcodeEu\AddressValidation\Model\UpdateNotification\UpdateNotifier;
class NotifyModuleUpdate
{
protected $_logger;
protected $_dataHelper;
protected $_updateNotifier;
/**
* Constructor
*
* @access public
* @param LoggerInterface $logger
* @param DataHelper $dataHelper
* @param UpdateNotifier $updateNotifier
* @return void
*/
public function __construct(
LoggerInterface $logger,
DataHelper $dataHelper,
UpdateNotifier $updateNotifier
) {
$this->_logger = $logger;
$this->_dataHelper = $dataHelper;
$this->_updateNotifier = $updateNotifier;
}
/**
* Run cron job.
*
* @access public
* @return void
*/
public function execute(): void
{
$moduleInfo = $this->_dataHelper->getModuleInfo();
if (($moduleInfo['has_update'] ?? false)
&& $this->_updateNotifier->notifyVersion($moduleInfo['latest_version'])
) {
$this->_logger->info(__('Added notification for Postcode.eu Address Validation %1 update.', $moduleInfo['latest_version']));
}
}
}