File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed
app/code/Magento/Cron/Observer Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -59,72 +59,72 @@ class ProcessCronQueueObserver implements ObserverInterface
59
59
/**
60
60
* @var \Magento\Cron\Model\ResourceModel\Schedule\Collection
61
61
*/
62
- protected $ pendingSchedules ;
62
+ private $ pendingSchedules ;
63
63
64
64
/**
65
65
* @var \Magento\Cron\Model\ConfigInterface
66
66
*/
67
- protected $ config ;
67
+ private $ config ;
68
68
69
69
/**
70
70
* @var \Magento\Framework\App\ObjectManager
71
71
*/
72
- protected $ objectManager ;
72
+ private $ objectManager ;
73
73
74
74
/**
75
75
* @var \Magento\Framework\App\CacheInterface
76
76
*/
77
- protected $ cache ;
77
+ private $ cache ;
78
78
79
79
/**
80
80
* @var \Magento\Framework\App\Config\ScopeConfigInterface
81
81
*/
82
- protected $ scopeConfig ;
82
+ private $ scopeConfig ;
83
83
84
84
/**
85
85
* @var ScheduleFactory
86
86
*/
87
- protected $ scheduleFactory ;
87
+ private $ scheduleFactory ;
88
88
89
89
/**
90
90
* @var \Magento\Framework\App\Console\Request
91
91
*/
92
- protected $ request ;
92
+ private $ request ;
93
93
94
94
/**
95
95
* @var \Magento\Framework\ShellInterface
96
96
*/
97
- protected $ shell ;
97
+ private $ shell ;
98
98
99
99
/**
100
100
* @var \Magento\Framework\Stdlib\DateTime\TimezoneInterface
101
101
*/
102
- protected $ timezone ;
102
+ private $ timezone ;
103
103
104
104
/**
105
105
* @var \Symfony\Component\Process\PhpExecutableFinder
106
106
*/
107
- protected $ phpExecutableFinder ;
107
+ private $ phpExecutableFinder ;
108
108
109
109
/**
110
110
* @var \Psr\Log\LoggerInterface
111
111
*/
112
- protected $ logger ;
112
+ private $ logger ;
113
113
114
114
/**
115
115
* @var \Magento\Framework\App\State
116
116
*/
117
- protected $ state ;
117
+ private $ state ;
118
118
119
119
/**
120
120
* @var array
121
121
*/
122
- protected $ invalid = [];
122
+ private $ invalid = [];
123
123
124
124
/**
125
125
* @var array
126
126
*/
127
- protected $ jobs ;
127
+ private $ jobs ;
128
128
129
129
/**
130
130
* @param \Magento\Framework\ObjectManagerInterface $objectManager
You can’t perform that action at this time.
0 commit comments