Completed
Push — php7 ( 434a3b )
by personal
02:50
created
src/Hal/Application/Console/PhpMetricsApplication.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
      * Overridden so that the application doesn't expect the command
54 54
      * name to be the first argument.
55 55
      * 
56
-     * @return InputDefinition The InputDefinition instance
56
+     * @return \Symfony\Component\Console\Input\InputDefinition The InputDefinition instance
57 57
      */
58 58
     public function getDefinition()
59 59
     {
Please login to merge, or discard this patch.
src/Hal/Component/Config/Loader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     /**
38 38
      * Load config file
39 39
      *
40
-     * @param $filename
40
+     * @param string $filename
41 41
      * @return Configuration
42 42
      * @throws \RuntimeException
43 43
      */
Please login to merge, or discard this patch.
src/Hal/Component/OOP/Extractor/MethodExtractor.php 2 patches
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
      * Extracts visibility
123 123
      *
124 124
      * @param ReflectedMethod $method
125
-     * @param $n
125
+     * @param integer $n
126 126
      * @param TokenCollection $tokens
127 127
      * @return $this
128 128
      */
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
      * Extracts state
148 148
      *
149 149
      * @param ReflectedMethod $method
150
-     * @param $n
150
+     * @param integer $n
151 151
      * @param TokenCollection $tokens
152 152
      * @return $this
153 153
      */
@@ -219,6 +219,7 @@  discard block
 block discarded – undo
219 219
      * Extract the list of returned values
220 220
      *
221 221
      * @param ReflectedMethod $method
222
+     * @param integer $n
222 223
      * @return $this
223 224
      */
224 225
     private function extractReturns(ReflectedMethod $method, $n, TokenCollection $tokens) {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 namespace Hal\Component\OOP\Extractor;
11 11
 use Hal\Component\OOP\Reflected\MethodUsage;
12 12
 use Hal\Component\OOP\Reflected\ReflectedArgument;
13
-use Hal\Component\OOP\Reflected\ReflectedClass\ReflectedAnonymousClass;
14 13
 use Hal\Component\OOP\Reflected\ReflectedMethod;
15 14
 use Hal\Component\OOP\Reflected\ReflectedReturn;
16 15
 use Hal\Component\OOP\Resolver\TypeResolver;
Please login to merge, or discard this patch.