Skip to content

Commit 93d21b8

Browse files
authored
Merge pull request #86 from barryvdh/patch-2
[PHP7.4] Fix trailing commas in methods
2 parents 2e02ff3 + 9141c8c commit 93d21b8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cron/NotifyModuleUpdate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class NotifyModuleUpdate
2424
public function __construct(
2525
LoggerInterface $logger,
2626
DataHelper $dataHelper,
27-
UpdateNotifier $updateNotifier,
27+
UpdateNotifier $updateNotifier
2828
) {
2929
$this->_logger = $logger;
3030
$this->_dataHelper = $dataHelper;

Helper/Data.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function __construct(
5353
StoreConfigHelper $storeConfigHelper,
5454
DirectoryList $dir,
5555
DriverInterface $filesystem,
56-
Curl $curl,
56+
Curl $curl
5757
) {
5858
$this->_storeConfigHelper = $storeConfigHelper;
5959
$this->_dir = $dir;

Model/UpdateNotification/UpdateNotifier.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class UpdateNotifier
2222
*/
2323
public function __construct(
2424
NotifierInterface $notifier,
25-
UpdateNotificationRepositoryInterface $updateNotification,
25+
UpdateNotificationRepositoryInterface $updateNotification
2626
) {
2727
$this->_notifier = $notifier;
2828
$this->_updateNotification = $updateNotification;

0 commit comments

Comments
 (0)