This repository was archived by the owner on Apr 29, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +31
-0
lines changed
Analytics/Model/Connector/Http
Indexer/Ui/DataProvider/Indexer
Model/ShippingMethodChoose
Controller/Adminhtml/Notification
Model/ContentProvider/Http Expand file tree Collapse file tree 6 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,9 @@ class JsonConverter implements ConverterInterface
22
22
*/
23
23
private $ serializer ;
24
24
25
+ /**
26
+ * @param Json $serializer
27
+ */
25
28
public function __construct (Json $ serializer )
26
29
{
27
30
$ this ->serializer = $ serializer ;
Original file line number Diff line number Diff line change @@ -23,6 +23,11 @@ class DataCollection extends Collection
23
23
*/
24
24
private $ indexerRegistry ;
25
25
26
+ /**
27
+ * @param EntityFactoryInterface $entityFactory
28
+ * @param ConfigInterface $config
29
+ * @param IndexerRegistry $indexerRegistry
30
+ */
26
31
public function __construct (
27
32
EntityFactoryInterface $ entityFactory ,
28
33
ConfigInterface $ config ,
Original file line number Diff line number Diff line change @@ -76,6 +76,16 @@ class PlaceOrder extends Action
76
76
*/
77
77
private $ orderRepository ;
78
78
79
+ /**
80
+ * @param Context $context
81
+ * @param StoreManagerInterface $storeManager
82
+ * @param Session $customerSession
83
+ * @param FormKeyValidator $formKeyValidator
84
+ * @param InstantPurchaseOptionLoadingFactory $instantPurchaseOptionLoadingFactory
85
+ * @param ProductRepositoryInterface $productRepository
86
+ * @param PlaceOrderModel $placeOrder
87
+ * @param OrderRepositoryInterface $orderRepository
88
+ */
79
89
public function __construct (
80
90
Context $ context ,
81
91
StoreManagerInterface $ storeManager ,
Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ class DeferredShippingMethodChooserPool
15
15
{
16
16
private $ choosers ;
17
17
18
+ /**
19
+ * @param DeferredShippingMethodChooserInterface[] $choosers
20
+ */
18
21
public function __construct (array $ choosers )
19
22
{
20
23
foreach ($ choosers as $ chooser ) {
@@ -28,6 +31,10 @@ public function __construct(array $choosers)
28
31
$ this ->choosers = $ choosers ;
29
32
}
30
33
34
+ /**
35
+ * @param string $type
36
+ * @return DeferredShippingMethodChooserInterface
37
+ */
31
38
public function get ($ type ) : DeferredShippingMethodChooserInterface
32
39
{
33
40
if (!isset ($ this ->choosers [$ type ])) {
Original file line number Diff line number Diff line change @@ -85,6 +85,9 @@ public function execute()
85
85
return $ resultJson ->setData ($ responseContent );
86
86
}
87
87
88
+ /**
89
+ * @return bool
90
+ */
88
91
protected function _isAllowed ()
89
92
{
90
93
return parent ::_isAllowed ();
Original file line number Diff line number Diff line change @@ -31,6 +31,9 @@ class UrlBuilder
31
31
*/
32
32
private $ config ;
33
33
34
+ /**
35
+ * @param ScopeConfigInterface $config
36
+ */
34
37
public function __construct (ScopeConfigInterface $ config )
35
38
{
36
39
$ this ->config = $ config ;
You can’t perform that action at this time.
0 commit comments