Passed
Push — master ( 7e7d16...d2790e )
by mark
56s
created
Assertion/Communication/Plugin/ServiceProvider/AssertionServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     public function register(Application $app)
25 25
     {
26
-        $app[self::ASSERTION] = function () {
26
+        $app[self::ASSERTION] = function() {
27 27
             return new AssertionFacade();
28 28
         };
29 29
     }
Please login to merge, or discard this patch.
src/Spryker/Zed/AuthMailConnector/AuthMailConnectorDependencyProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     public function provideCommunicationLayerDependencies(Container $container)
25 25
     {
26
-        $container[self::FACADE_MAIL] = function (Container $container) {
26
+        $container[self::FACADE_MAIL] = function(Container $container) {
27 27
             return new AuthMailConnectorToMailBridge($container->getLocator()->mail()->facade());
28 28
         };
29 29
 
Please login to merge, or discard this patch.
Bundles/Acl/src/Spryker/Zed/Acl/Communication/Controller/RoleController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -172,7 +172,7 @@
 block discarded – undo
172 172
      * @param \Symfony\Component\HttpFoundation\Request $request
173 173
      * @param int $idAclRole
174 174
      *
175
-     * @return \Symfony\Component\Form\FormInterface
175
+     * @return integer
176 176
      */
177 177
     protected function createAndHandleRuleSetForm(Request $request, $idAclRole)
178 178
     {
Please login to merge, or discard this patch.
Glossary/src/Spryker/Zed/Glossary/Persistence/GlossaryQueryContainer.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
     /**
101 101
      * @api
102 102
      *
103
-     * @return \Orm\Zed\Glossary\Persistence\SpyGlossaryTranslationQuery
103
+     * @return string
104 104
      */
105 105
     public function queryTranslations()
106 106
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -316,7 +316,7 @@
 block discarded – undo
316 316
          *
317 317
          * @return string
318 318
          */
319
-        $quoteFunction = function ($value) {
319
+        $quoteFunction = function($value) {
320 320
             return "'$value'";
321 321
         };
322 322
 
Please login to merge, or discard this patch.
Bundles/Log/src/Spryker/Shared/Log/Config/DefaultLoggerConfig.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     }
25 25
 
26 26
     /**
27
-     * @return \Monolog\Handler\HandlerInterface[]
27
+     * @return StreamHandler[]
28 28
      */
29 29
     public function getHandlers()
30 30
     {
Please login to merge, or discard this patch.
Communication/Plugin/ServiceProvider/TranslationServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     public function register(Application $app)
29 29
     {
30 30
         $app['twig'] = $app->share(
31
-            $app->extend('twig', function (\Twig_Environment $twig) use ($app) {
31
+            $app->extend('twig', function(\Twig_Environment $twig) use ($app) {
32 32
                 $twig->addExtension(new TranslationExtension(new Translator($app['locale'])));
33 33
 
34 34
                 return $twig;
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
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
     /**
98 98
      * @param array $user
99 99
      *
100
-     * @return array
100
+     * @return string[]
101 101
      */
102 102
     public function createActionButtons(array $user)
103 103
     {
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
     /**
147 147
      * @param array $user
148 148
      *
149
-     * @return array
149
+     * @return string
150 150
      */
151 151
     protected function createStatusButton(array $user)
152 152
     {
Please login to merge, or discard this patch.
SalesSplit/src/Spryker/Zed/SalesSplit/SalesSplitDependencyProvider.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 provideBusinessLayerDependencies(Container $container)
24 24
     {
25
-        $container[self::SALES_QUERY_CONTAINER] = function (Container $container) {
25
+        $container[self::SALES_QUERY_CONTAINER] = function(Container $container) {
26 26
             return $container->getLocator()->sales()->queryContainer();
27 27
         };
28 28
 
Please login to merge, or discard this patch.
Communication/Plugin/ServiceProvider/SubRequestServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
      */
27 27
     public function register(Application $app)
28 28
     {
29
-        $app['sub_request'] = $app->share(function () use ($app) {
29
+        $app['sub_request'] = $app->share(function() use ($app) {
30 30
             return new SubRequestHandler($app);
31 31
         });
32 32
     }
Please login to merge, or discard this patch.