Skip to content

Commit d205a5e

Browse files
author
Anton Evers
committed
Everything that is not extended can be private
1 parent 04f9a0b commit d205a5e

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

app/code/Magento/Cron/Observer/ProcessCronQueueObserver.php

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -59,72 +59,72 @@ class ProcessCronQueueObserver implements ObserverInterface
5959
/**
6060
* @var \Magento\Cron\Model\ResourceModel\Schedule\Collection
6161
*/
62-
protected $pendingSchedules;
62+
private $pendingSchedules;
6363

6464
/**
6565
* @var \Magento\Cron\Model\ConfigInterface
6666
*/
67-
protected $config;
67+
private $config;
6868

6969
/**
7070
* @var \Magento\Framework\App\ObjectManager
7171
*/
72-
protected $objectManager;
72+
private $objectManager;
7373

7474
/**
7575
* @var \Magento\Framework\App\CacheInterface
7676
*/
77-
protected $cache;
77+
private $cache;
7878

7979
/**
8080
* @var \Magento\Framework\App\Config\ScopeConfigInterface
8181
*/
82-
protected $scopeConfig;
82+
private $scopeConfig;
8383

8484
/**
8585
* @var ScheduleFactory
8686
*/
87-
protected $scheduleFactory;
87+
private $scheduleFactory;
8888

8989
/**
9090
* @var \Magento\Framework\App\Console\Request
9191
*/
92-
protected $request;
92+
private $request;
9393

9494
/**
9595
* @var \Magento\Framework\ShellInterface
9696
*/
97-
protected $shell;
97+
private $shell;
9898

9999
/**
100100
* @var \Magento\Framework\Stdlib\DateTime\TimezoneInterface
101101
*/
102-
protected $timezone;
102+
private $timezone;
103103

104104
/**
105105
* @var \Symfony\Component\Process\PhpExecutableFinder
106106
*/
107-
protected $phpExecutableFinder;
107+
private $phpExecutableFinder;
108108

109109
/**
110110
* @var \Psr\Log\LoggerInterface
111111
*/
112-
protected $logger;
112+
private $logger;
113113

114114
/**
115115
* @var \Magento\Framework\App\State
116116
*/
117-
protected $state;
117+
private $state;
118118

119119
/**
120120
* @var array
121121
*/
122-
protected $invalid = [];
122+
private $invalid = [];
123123

124124
/**
125125
* @var array
126126
*/
127-
protected $jobs;
127+
private $jobs;
128128

129129
/**
130130
* @param \Magento\Framework\ObjectManagerInterface $objectManager

0 commit comments

Comments
 (0)