Completed
Push — master ( 0afc29...986e1b )
by Pablo
03:53
created
src/PhpGitHooks/Module/Git/Tests/Infrastructure/WriterInterfaceTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     private $writer;
14 14
 
15 15
     /**
16
-     * @return \Mockery\MockInterface|WriterInterface
16
+     * @return WriterInterface
17 17
      */
18 18
     protected function getWriter()
19 19
     {
Please login to merge, or discard this patch.
Module/PhpUnit/Tests/Infrastructure/GuardCoverageFileReaderTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     private $guardCoverageFileReader;
14 14
 
15 15
     /**
16
-     * @return \Mockery\MockInterface|GuardCoverageFileReaderInterface
16
+     * @return GuardCoverageFileReaderInterface
17 17
      */
18 18
     protected function getGuardCoverageFileReader()
19 19
     {
Please login to merge, or discard this patch.
Module/PhpUnit/Tests/Infrastructure/GuardCoverageFileWriterTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
     private $guardCoverageFileWriter;
14 14
 
15 15
     /**
16
-     * @return \Mockery\MockInterface|GuardCoverageFileWriterInterface
16
+     * @return GuardCoverageFileWriterInterface
17 17
      */
18 18
     protected function getGuardCoverageFileWriter()
19 19
     {
Please login to merge, or discard this patch.
src/PhpGitHooks/Module/Files/Contract/Query/PhpFilesExtractorHandler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     }
41 41
 
42 42
     /**
43
-     * @param QueryInterface|PhpFilesExtractorQuery $query
43
+     * @param QueryInterface $query
44 44
      *
45 45
      * @return PhpFilesResponse
46 46
      */
Please login to merge, or discard this patch.
PhpGitHooks/Module/PhpUnit/Tests/Behaviour/GuardCoverageToolHandlerTest.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -76,6 +76,11 @@
 block discarded – undo
76 76
         );
77 77
     }
78 78
 
79
+    /**
80
+     * @param double $currentCoverage
81
+     * @param double $previousCoverage
82
+     * @param string $getSuccessfulMessage
83
+     */
79 84
     private function buildStrictCoverageSuccessfulMessage($currentCoverage, $previousCoverage, $getSuccessfulMessage)
80 85
     {
81 86
         return $getSuccessfulMessage .
Please login to merge, or discard this patch.
Module/PhpUnit/Tests/Behaviour/StrictCoverageToolHandlerTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -75,6 +75,10 @@
 block discarded – undo
75 75
         $this->strictCoverageToolCommandHandler->handle($command);
76 76
     }
77 77
 
78
+    /**
79
+     * @param double $coverage
80
+     * @param string $getSuccessfulMessage
81
+     */
78 82
     private function buildStrictCoverageSuccessfulMessage($coverage, $getSuccessfulMessage)
79 83
     {
80 84
         return $getSuccessfulMessage . ' <comment>[' . round($coverage, 0) . '%]</comment>';
Please login to merge, or discard this patch.