Passed
Push — master ( 7e7d16...d2790e )
by mark
56s
created
src/Spryker/Client/Search/ServiceProvider/SearchClientServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
     public function register(Application $app)
26 26
     {
27 27
         $containerGlobals = new ContainerGlobals();
28
-        $containerGlobals[static::CLIENT_SEARCH] = function () {
28
+        $containerGlobals[static::CLIENT_SEARCH] = function() {
29 29
             $container = new Container();
30 30
 
31 31
             return $container->getLocator()->search()->client();
Please login to merge, or discard this patch.
Bundles/Sales/src/Spryker/Zed/Sales/Communication/Table/OrdersTable.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
     /**
204 204
      * @param array $item
205 205
      *
206
-     * @return array
206
+     * @return string[]
207 207
      */
208 208
     protected function createActionUrls(array $item)
209 209
     {
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
     }
299 299
 
300 300
     /**
301
-     * @return array
301
+     * @return string[]
302 302
      */
303 303
     protected function getSortableFields()
304 304
     {
Please login to merge, or discard this patch.
CustomerGroupDiscountConnectorDependencyProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,13 +25,13 @@
 block discarded – undo
25 25
      */
26 26
     public function provideBusinessLayerDependencies(Container $container)
27 27
     {
28
-        $container[static::FACADE_DISCOUNT] = function (Container $container) {
28
+        $container[static::FACADE_DISCOUNT] = function(Container $container) {
29 29
             return new CustomerGroupDiscountConnectorToDiscountFacadeBridge(
30 30
                 $container->getLocator()->discount()->facade()
31 31
             );
32 32
         };
33 33
 
34
-        $container[static::FACADE_CUSTOMER_GROUP] = function (Container $container) {
34
+        $container[static::FACADE_CUSTOMER_GROUP] = function(Container $container) {
35 35
             return new CustomerGroupDiscountConnectorToCustomerGroupFacadeBridge(
36 36
                 $container->getLocator()->customerGroup()->facade()
37 37
             );
Please login to merge, or discard this patch.
Sales/src/Spryker/Zed/Sales/Communication/SalesCommunicationFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
     }
119 119
 
120 120
     /**
121
-     * @param \ArrayObject|\Generated\Shared\Transfer\ItemTransfer[] $orderItems
121
+     * @param ArrayObject $orderItems
122 122
      *
123 123
      * @return array
124 124
      */
Please login to merge, or discard this patch.
Bundles/Messenger/src/Spryker/Zed/Messenger/MessengerDependencyProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      */
39 39
     protected function addSession(Container $container)
40 40
     {
41
-        $container[static::SESSION] = function (Container $container) {
41
+        $container[static::SESSION] = function(Container $container) {
42 42
             return (new Pimple())->getApplication()['request']->getSession();
43 43
         };
44 44
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      */
53 53
     protected function addTranslationPlugin(Container $container)
54 54
     {
55
-        $container[static::PLUGIN_TRANSLATION] = function (Container $container) {
55
+        $container[static::PLUGIN_TRANSLATION] = function(Container $container) {
56 56
             return new TranslationPlugin();
57 57
         };
58 58
 
Please login to merge, or discard this patch.
Business/DependencyTree/DependencyGraph/OutgoingGraphBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@
 block discarded – undo
139 139
      */
140 140
     protected function filterBundles(array $dependencies)
141 141
     {
142
-        $callback = function ($bundle) {
142
+        $callback = function($bundle) {
143 143
             return !in_array($bundle, $this->bundlesToFilter);
144 144
         };
145 145
 
Please login to merge, or discard this patch.
Bundles/Gui/src/Spryker/Zed/Gui/GuiDependencyProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      */
50 50
     protected function addTwigFunctions(Container $container)
51 51
     {
52
-        $container[static::GUI_TWIG_FUNCTIONS] = function () {
52
+        $container[static::GUI_TWIG_FUNCTIONS] = function() {
53 53
             return $this->getTwigFunctions();
54 54
         };
55 55
 
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      */
64 64
     protected function addTwigFilter(Container $container)
65 65
     {
66
-        $container[static::GUI_TWIG_FILTERS] = function () {
66
+        $container[static::GUI_TWIG_FILTERS] = function() {
67 67
             return $this->getTwigFilters();
68 68
         };
69 69
 
Please login to merge, or discard this patch.
Communication/Plugin/ServiceProvider/GuiTwigExtensionServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         $this->provideFormTypeExtension($app);
31 31
 
32 32
         $app['twig'] = $app->share(
33
-            $app->extend('twig', function (\Twig_Environment $twig) {
33
+            $app->extend('twig', function(\Twig_Environment $twig) {
34 34
 
35 35
                 $this->registerTwigFunctions($twig);
36 36
                 $this->registerTwigFilters($twig);
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      */
99 99
     protected function provideFormTypeExtension(Application $app)
100 100
     {
101
-        $app['form.type.extensions'] = $app->share(function () {
101
+        $app['form.type.extensions'] = $app->share(function() {
102 102
             return [
103 103
                 new NoValidateTypeExtension(),
104 104
             ];
Please login to merge, or discard this patch.
Bundles/Newsletter/src/Spryker/Client/Newsletter/Zed/NewsletterStub.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     /**
31 31
      * @param \Generated\Shared\Transfer\NewsletterSubscriptionRequestTransfer $newsletterSubscriptionRequest
32 32
      *
33
-     * @return \Generated\Shared\Transfer\NewsletterSubscriptionResponseTransfer
33
+     * @return \Spryker\Shared\Kernel\Transfer\TransferInterface
34 34
      */
35 35
     public function subscribeWithSingleOptIn(NewsletterSubscriptionRequestTransfer $newsletterSubscriptionRequest)
36 36
     {
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     /**
41 41
      * @param \Generated\Shared\Transfer\NewsletterSubscriptionRequestTransfer $newsletterSubscriptionRequest
42 42
      *
43
-     * @return \Generated\Shared\Transfer\NewsletterSubscriptionResponseTransfer
43
+     * @return \Spryker\Shared\Kernel\Transfer\TransferInterface
44 44
      */
45 45
     public function subscribeWithDoubleOptIn(NewsletterSubscriptionRequestTransfer $newsletterSubscriptionRequest)
46 46
     {
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     /**
51 51
      * @param \Generated\Shared\Transfer\NewsletterSubscriberTransfer $newsletterSubscriber
52 52
      *
53
-     * @return \Generated\Shared\Transfer\NewsletterSubscriptionApprovalResultTransfer
53
+     * @return \Spryker\Shared\Kernel\Transfer\TransferInterface
54 54
      */
55 55
     public function approveDoubleOptInSubscriber(NewsletterSubscriberTransfer $newsletterSubscriber)
56 56
     {
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
     /**
61 61
      * @param \Generated\Shared\Transfer\NewsletterSubscriptionRequestTransfer $newsletterSubscriptionRequest
62 62
      *
63
-     * @return \Generated\Shared\Transfer\NewsletterSubscriptionResponseTransfer
63
+     * @return \Spryker\Shared\Kernel\Transfer\TransferInterface
64 64
      */
65 65
     public function unsubscribe(NewsletterSubscriptionRequestTransfer $newsletterSubscriptionRequest)
66 66
     {
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     /**
71 71
      * @param \Generated\Shared\Transfer\NewsletterSubscriptionRequestTransfer $newsletterUnsubscriptionRequest
72 72
      *
73
-     * @return \Generated\Shared\Transfer\NewsletterSubscriptionResponseTransfer
73
+     * @return \Spryker\Shared\Kernel\Transfer\TransferInterface
74 74
      */
75 75
     public function checkSubscription(NewsletterSubscriptionRequestTransfer $newsletterUnsubscriptionRequest)
76 76
     {
Please login to merge, or discard this patch.