@@ -46,12 +46,12 @@ public function __construct(
4646 \Magento \Framework \Api \FilterBuilder $ filterBuilder ,
4747 \Mygento \Base \Model \LogManager $ logManager ,
4848 \Magento \Framework \Encryption \Encryptor $ encryptor ,
49- \Magento \Framework \App \Helper \Context $ context
49+ \Magento \Framework \App \Helper \Context $ context,
5050 ) {
5151 parent ::__construct (
5252 $ logManager ,
5353 $ encryptor ,
54- $ context
54+ $ context,
5555 );
5656 $ this ->checkoutSession = $ checkoutSession ;
5757 $ this ->filterBuilder = $ filterBuilder ;
@@ -184,7 +184,7 @@ public function getAutoShippingStatuses($scopeCode = null): array
184184 {
185185 return array_filter (explode (
186186 ', ' ,
187- $ this ->getConfig (self ::XML_AUTO_SHIPPING_STATUSES , $ scopeCode ) ?: ''
187+ $ this ->getConfig (self ::XML_AUTO_SHIPPING_STATUSES , $ scopeCode ) ?: '' ,
188188 ));
189189 }
190190
@@ -195,7 +195,7 @@ public function getTrackCheckStatuses($scopeCode = null): array
195195 {
196196 return array_filter (explode (
197197 ', ' ,
198- $ this ->getConfig (self ::XML_SHIPMENT_TRACK_STATUSES , $ scopeCode ) ?: ''
198+ $ this ->getConfig (self ::XML_SHIPMENT_TRACK_STATUSES , $ scopeCode ) ?: '' ,
199199 ));
200200 }
201201
@@ -264,7 +264,7 @@ public function getMarkingRefund($scopeCode = null)
264264 public function getCarrierFilters (
265265 string $ field = 'shipping_method ' ,
266266 $ value = null ,
267- string $ condition = 'like '
267+ string $ condition = 'like ' ,
268268 ): array {
269269 if ($ value === null ) {
270270 $ value = $ this ->getCarrierCode () . '_% ' ;
0 commit comments