Passed
Push — master ( 7a7cfe...9ace4b )
by Mark
35:26
created
Kernel/tests/SprykerTest/Service/Kernel/AbstractServiceFactoryTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
     }
79 79
 
80 80
     /**
81
-     * @param array $methods
81
+     * @param string[] $methods
82 82
      *
83 83
      * @return \PHPUnit_Framework_MockObject_MockObject|\Spryker\Zed\Kernel\AbstractFactory
84 84
      */
Please login to merge, or discard this patch.
Kernel/ClassResolver/DependencyInjector/DependencyInjectorResolverTest.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
     }
85 85
 
86 86
     /**
87
-     * @param array $methods
87
+     * @param string[] $methods
88 88
      *
89 89
      * @return \PHPUnit_Framework_MockObject_MockObject|\Spryker\Yves\Kernel\ClassResolver\DependencyInjector\DependencyInjectorResolver
90 90
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -231,7 +231,7 @@
 block discarded – undo
231 231
             $this->getBasePath(),
232 232
             implode(DIRECTORY_SEPARATOR, $classNameParts),
233 233
         ];
234
-        $directory = implode(DIRECTORY_SEPARATOR,  $directoryParts);
234
+        $directory = implode(DIRECTORY_SEPARATOR, $directoryParts);
235 235
 
236 236
         if (!is_dir($directory)) {
237 237
             mkdir($directory, 0775, true);
Please login to merge, or discard this patch.
Kernel/ClassResolver/DependencyInjector/DependencyInjectorResolverTest.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
     }
85 85
 
86 86
     /**
87
-     * @param array $methods
87
+     * @param string[] $methods
88 88
      *
89 89
      * @return \PHPUnit_Framework_MockObject_MockObject|\Spryker\Zed\Kernel\ClassResolver\DependencyInjector\DependencyInjectorResolver
90 90
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -231,7 +231,7 @@
 block discarded – undo
231 231
             $this->getBasePath(),
232 232
             implode(DIRECTORY_SEPARATOR, $classNameParts),
233 233
         ];
234
-        $directory = implode(DIRECTORY_SEPARATOR,  $directoryParts);
234
+        $directory = implode(DIRECTORY_SEPARATOR, $directoryParts);
235 235
 
236 236
         if (!is_dir($directory)) {
237 237
             mkdir($directory, 0775, true);
Please login to merge, or discard this patch.
Kernel/tests/SprykerTest/Zed/Kernel/Communication/AbstractPluginTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
     }
116 116
 
117 117
     /**
118
-     * @param array $methods
118
+     * @param string[] $methods
119 119
      *
120 120
      * @return \PHPUnit_Framework_MockObject_MockObject|\SprykerTest\Zed\Kernel\Communication\Fixtures\AbstractPlugin\Plugin\FooPlugin
121 121
      */
Please login to merge, or discard this patch.
tests/SprykerTest/Zed/Kernel/Dependency/Injector/DependencyInjectorTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
     }
85 85
 
86 86
     /**
87
-     * @return \PHPUnit_Framework_MockObject_MockObject|\Spryker\Zed\Kernel\Dependency\Injector\AbstractDependencyInjector
87
+     * @return DependencyInjectorInterface
88 88
      */
89 89
     private function getAbstractDependencyInjectorMock()
90 90
     {
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.
Mail/tests/SprykerTest/Zed/Mail/Business/Model/Mailer/MailerTest.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
     }
124 124
 
125 125
     /**
126
-     * @return \PHPUnit_Framework_MockObject_MockObject|\Spryker\Zed\Mail\Business\Model\Mail\MailTypeCollectionGetInterface
126
+     * @return MailTypeCollectionGetInterface
127 127
      */
128 128
     protected function getMailTypeCollectionWithMailMock()
129 129
     {
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
     }
146 146
 
147 147
     /**
148
-     * @return \PHPUnit_Framework_MockObject_MockObject|\Spryker\Zed\Mail\Business\Model\Provider\MailProviderCollectionGetInterface
148
+     * @return MailProviderCollectionGetInterface
149 149
      */
150 150
     protected function getMailProviderCollectionWithProviderMock()
151 151
     {
Please login to merge, or discard this patch.
Money/src/Spryker/Shared/Money/Dependency/Parser/MoneyToParserBridge.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      * @param string $money
28 28
      * @param string $isoCode
29 29
      *
30
-     * @return string
30
+     * @return \Money\Money
31 31
      */
32 32
     public function parse($money, $isoCode)
33 33
     {
Please login to merge, or discard this patch.
NewRelic/tests/SprykerTest/Yves/NewRelic/Plugin/ControllerListenerTest.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     }
52 52
 
53 53
     /**
54
-     * @return \PHPUnit_Framework_MockObject_MockObject|\Spryker\Shared\NewRelicApi\NewRelicApiInterface
54
+     * @return \Spryker\Shared\NewRelicApi\NewRelicApiInterface
55 55
      */
56 56
     protected function getNewRelicApiMock()
57 57
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         $request = new Request();
40 40
         $request->attributes->set('_route', 'foo/bar/baz');
41 41
 
42
-        $controller = function () {};
42
+        $controller = function() {};
43 43
         $filterControllerEvent = new FilterControllerEvent(
44 44
             $this->getKernelMock(),
45 45
             $controller,
Please login to merge, or discard this patch.