Passed
Branch master (7a7cfe)
by Fabian
45:14
created
Bundles/Url/src/Spryker/Zed/Url/Business/UrlFacade.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      * @deprecated
48 48
      *
49 49
      * @param \Generated\Shared\Transfer\UrlTransfer|string $url
50
-     * @param \Generated\Shared\Transfer\LocaleTransfer $locale
50
+     * @param null|LocaleTransfer $locale
51 51
      * @param string|null $resourceType
52 52
      * @param int|null $idResource
53 53
      *
@@ -509,7 +509,7 @@  discard block
 block discarded – undo
509 509
      * @param string $toUrl
510 510
      * @param int $status
511 511
      *
512
-     * @return \Generated\Shared\Transfer\RedirectTransfer
512
+     * @return null|LocaleTransfer
513 513
      */
514 514
     public function createRedirect($toUrl, $status = Response::HTTP_SEE_OTHER)
515 515
     {
Please login to merge, or discard this patch.
Bundles/User/src/Spryker/Zed/User/Communication/Table/UsersTable.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
     /**
116 116
      * @param array $user
117 117
      *
118
-     * @return array
118
+     * @return string[]
119 119
      */
120 120
     public function createActionButtons(array $user)
121 121
     {
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
     /**
164 164
      * @param array $user
165 165
      *
166
-     * @return array
166
+     * @return string
167 167
      */
168 168
     protected function createStatusButton(array $user)
169 169
     {
Please login to merge, or discard this patch.
Bundles/User/tests/SprykerTest/Zed/User/Business/UserTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -359,7 +359,7 @@
 block discarded – undo
359 359
     }
360 360
 
361 361
     /**
362
-     * @return \PHPUnit_Framework_MockObject_MockObject|\Spryker\Zed\User\Persistence\UserQueryContainerInterface
362
+     * @return UserQueryContainerInterface
363 363
      */
364 364
     protected function createQueryContainer()
365 365
     {
Please login to merge, or discard this patch.
Service/UtilDateTime/Model/DateTimeFormatterTwigExtensionTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
     }
108 108
 
109 109
     /**
110
-     * @return \PHPUnit_Framework_MockObject_MockObject|\Spryker\Service\UtilDateTime\UtilDateTimeServiceInterface
110
+     * @return UtilDateTimeServiceInterface
111 111
      */
112 112
     protected function getUtilDateTimeServiceMock()
113 113
     {
Please login to merge, or discard this patch.
Zed/ZedNavigation/Business/Model/SchemaFinder/ZedNavigationSchemaFinder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     protected $fileNamePattern;
24 24
 
25 25
     /**
26
-     * @param array $pathPattern
26
+     * @param string[] $pathPattern
27 27
      * @param string $fileNamePattern
28 28
      */
29 29
     public function __construct(array $pathPattern, $fileNamePattern)
Please login to merge, or discard this patch.
Zed/ZedRequest/Communication/Plugin/GatewayControllerListenerPlugin.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 {
29 29
 
30 30
     /**
31
-     * @param \Symfony\Component\HttpKernel\Event\FilterControllerEvent $event
31
+     * @param \SprykerTest\Zed\ZedRequest\Communication\Plugin\Fixture\FilterControllerEvent $event
32 32
      *
33 33
      * @return callable|null
34 34
      */
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     /**
83 83
      * @param \Spryker\Zed\ZedRequest\Business\Client\Request $request
84 84
      *
85
-     * @return null|\Generated\Shared\Transfer\LocaleTransfer
85
+     * @return TransferInterface|null
86 86
      */
87 87
     protected function getLocaleMetaTransfer(Request $request)
88 88
     {
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
     /**
108 108
      * @param \Spryker\Zed\ZedRequest\Business\Client\Request $request
109 109
      *
110
-     * @return null|\Generated\Shared\Transfer\CurrencyTransfer
110
+     * @return TransferInterface|null
111 111
      */
112 112
     protected function getCurrencyMetaTransfer(Request $request)
113 113
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
             return $currentController;
47 47
         }
48 48
 
49
-        $newController = function () use ($controller, $action) {
49
+        $newController = function() use ($controller, $action) {
50 50
 
51 51
             MessengerConfig::setMessageTray(MessengerConstants::IN_MEMORY_TRAY);
52 52
 
Please login to merge, or discard this patch.
Bundles/Checkout/src/Spryker/Yves/Checkout/CheckoutDependencyProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,11 +43,11 @@  discard block
 block discarded – undo
43 43
      */
44 44
     protected function providePlugins(Container $container)
45 45
     {
46
-        $container[self::PAYMENT_SUB_FORMS] = function () {
46
+        $container[self::PAYMENT_SUB_FORMS] = function() {
47 47
             return new SubFormPluginCollection();
48 48
         };
49 49
 
50
-        $container[self::PAYMENT_METHOD_HANDLER] = function () {
50
+        $container[self::PAYMENT_METHOD_HANDLER] = function() {
51 51
             return new StepHandlerPluginCollection();
52 52
         };
53 53
 
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      */
62 62
     protected function provideClients(Container $container)
63 63
     {
64
-        $container[self::CLIENT_QUOTE] = function () use ($container) {
64
+        $container[self::CLIENT_QUOTE] = function() use ($container) {
65 65
             return new CheckoutToQuoteBridge($container->getLocator()->quote()->client());
66 66
         };
67 67
 
Please login to merge, or discard this patch.
Bundles/Checkout/src/Spryker/Client/Checkout/CheckoutDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      */
23 23
     public function provideServiceLayerDependencies(Container $container)
24 24
     {
25
-        $container[self::SERVICE_ZED] = function (Container $container) {
25
+        $container[self::SERVICE_ZED] = function(Container $container) {
26 26
             return $container->getLocator()->zedRequest()->client();
27 27
         };
28 28
 
Please login to merge, or discard this patch.
Bundles/Checkout/src/Spryker/Zed/Checkout/CheckoutDependencyProvider.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -25,19 +25,19 @@
 block discarded – undo
25 25
      */
26 26
     public function provideBusinessLayerDependencies(Container $container)
27 27
     {
28
-        $container[self::CHECKOUT_PRE_CONDITIONS] = function (Container $container) {
28
+        $container[self::CHECKOUT_PRE_CONDITIONS] = function(Container $container) {
29 29
             return $this->getCheckoutPreConditions($container);
30 30
         };
31 31
 
32
-        $container[self::CHECKOUT_ORDER_SAVERS] = function (Container $container) {
32
+        $container[self::CHECKOUT_ORDER_SAVERS] = function(Container $container) {
33 33
             return $this->getCheckoutOrderSavers($container);
34 34
         };
35 35
 
36
-        $container[self::CHECKOUT_POST_HOOKS] = function (Container $container) {
36
+        $container[self::CHECKOUT_POST_HOOKS] = function(Container $container) {
37 37
             return $this->getCheckoutPostHooks($container);
38 38
         };
39 39
 
40
-        $container[static::CHECKOUT_PRE_SAVE_HOOKS] = function (Container $container) {
40
+        $container[static::CHECKOUT_PRE_SAVE_HOOKS] = function(Container $container) {
41 41
             return $this->getCheckoutPreSaveHooks($container);
42 42
         };
43 43
 
Please login to merge, or discard this patch.