Completed
Push — master ( a75486...dc4a24 )
by personal
10s
created
src/Hal/Component/Score/ScoringInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
  *
17 17
  * @author Jean-François Lépine <https://twitter.com/Halleck45>
18 18
  */
19
-interface ScoringInterface  {
19
+interface ScoringInterface {
20 20
 
21 21
     /**
22 22
      * Calculates score
Please login to merge, or discard this patch.
src/Hal/Component/Token/Token.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      */
36 36
     public function __construct($data)
37 37
     {
38
-        if(!is_array($data)) {
38
+        if (!is_array($data)) {
39 39
             $this->type = T_STRING;
40 40
             $this->value = $data;
41 41
         } else {
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         }
45 45
 
46 46
         // reduce multiple spaces to one
47
-        if(T_WHITESPACE  === $this->type && preg_match('/^\s*$/', $this->value)) {
47
+        if (T_WHITESPACE === $this->type && preg_match('/^\s*$/', $this->value)) {
48 48
             $this->value = ' ';
49 49
         }
50 50
     }
Please login to merge, or discard this patch.
src/Hal/Component/Token/TokenCollection.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@  discard block
 block discarded – undo
28 28
      */
29 29
     public function __construct(array $tokens)
30 30
     {
31
-        foreach($tokens as $index => &$token) {
32
-            if(!$token instanceof Token) {
31
+        foreach ($tokens as $index => &$token) {
32
+            if (!$token instanceof Token) {
33 33
                 $token = new Token($token);
34 34
             }
35 35
         }
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      * @return TokenCollection
58 58
      */
59 59
     public function extract($start, $end) {
60
-        $concerned = array_slice($this->asArray(), $start, $end - $start );
60
+        $concerned = array_slice($this->asArray(), $start, $end - $start);
61 61
         return new TokenCollection($concerned);
62 62
     }
63 63
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      */
69 69
     public function asString() {
70 70
         $c = '';
71
-        foreach($this->tokens as $token) {
71
+        foreach ($this->tokens as $token) {
72 72
             $c .= $token->asString();
73 73
         }
74 74
         $c = preg_replace('!(\n\s+)!', "\n", $c);
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
      */
97 97
     public function offsetSet($offset, $value)
98 98
     {
99
-        if(!$value instanceof Token) {
99
+        if (!$value instanceof Token) {
100 100
             $value = new Token($value);
101 101
         }
102 102
         $this->tokens[$offset] = $value;
Please login to merge, or discard this patch.
src/Hal/Component/Token/TokenCollectionCompatibility.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -23,17 +23,17 @@  discard block
 block discarded – undo
23 23
      */
24 24
     public function decorate(array $tokens)
25 25
     {
26
-        if(-1 !== version_compare(PHP_VERSION, '7.0.0')) {
26
+        if (-1 !== version_compare(PHP_VERSION, '7.0.0')) {
27 27
             return $tokens;
28 28
         }
29 29
 
30 30
         $previous = null;
31
-        foreach($tokens as $index => &$token) {
31
+        foreach ($tokens as $index => &$token) {
32 32
 
33 33
             // coalesce operator
34
-            if(T_STRING == $token->getType()&&'?' == $token->getValue()
34
+            if (T_STRING == $token->getType() && '?' == $token->getValue()
35 35
                 && $index > 0
36
-                && T_STRING == $previous->getType()&&'?' == $previous->getValue()
36
+                && T_STRING == $previous->getType() && '?' == $previous->getValue()
37 37
             ) {
38 38
                 unset($tokens[$index]);
39 39
                 $tokens[$index - 1] = new Token(array(T_COALESCE, T_COALESCE));
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
 
44 44
             // spaceship operator
45
-            if($index > 2
45
+            if ($index > 2
46 46
                 && T_STRING == $tokens[$index]->getType() && '>' === $tokens[$index]->getValue()
47 47
                 && T_IS_SMALLER_OR_EQUAL == $previous->getType()
48 48
             ) {
Please login to merge, or discard this patch.
src/Hal/Component/Token/TokenType.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
      * @var array
105 105
      */
106 106
     private $operatorsStrings = array(
107
-        ';', '*', '/', '%', '-','+'
107
+        ';', '*', '/', '%', '-', '+'
108 108
     , '!', '!=', '%', '%=', '&', '&&', '||', '&=', '(', ')'
109 109
         /*, '{', '}'*/, '[', ']', '*', '*=', '+', '++', '+=', ','
110 110
     , '-', '--', '-=->', '.', '...', '/', '/=', ':', '::'
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
      */
121 121
     private $byPass = array(
122 122
         '{', '}' // in PHP, these case are counted with T_IF, '(', ...
123
-    , ')' , '('   // we count only the first (
123
+    , ')', '('   // we count only the first (
124 124
     , ','
125 125
     );
126 126
 
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
      * Constructor
129 129
      */
130 130
     public function __construct() {
131
-        if(version_compare(PHP_VERSION, '5.4.0') >= 0) {
131
+        if (version_compare(PHP_VERSION, '5.4.0') >= 0) {
132 132
             $this->operators = array_merge($this->operators, array(
133 133
                 T_INSTEADOF
134 134
             , T_TRAIT_C
@@ -141,9 +141,9 @@  discard block
 block discarded – undo
141 141
 
142 142
         // performance : key will be equals to it value
143 143
         $this->operands = array_combine($this->operands, $this->operands);
144
-        $this->operators= array_combine($this->operators, $this->operators);
144
+        $this->operators = array_combine($this->operators, $this->operators);
145 145
         $this->operatorsStrings = array_combine($this->operatorsStrings, $this->operatorsStrings);
146
-        $this->byPass= array_combine($this->byPass, $this->byPass);
146
+        $this->byPass = array_combine($this->byPass, $this->byPass);
147 147
     }
148 148
 
149 149
     /**
@@ -154,8 +154,8 @@  discard block
 block discarded – undo
154 154
      */
155 155
     public function isOperand(Token $token)
156 156
     {
157
-        if(T_STRING == $token->getType()) {
158
-            return !(isset($this->byPass[$token->getValue()]) ||isset($this->operatorsStrings[$token->getValue()]));
157
+        if (T_STRING == $token->getType()) {
158
+            return !(isset($this->byPass[$token->getValue()]) || isset($this->operatorsStrings[$token->getValue()]));
159 159
         }
160 160
 
161 161
         return isset($this->operands[$token->getType()]);
@@ -169,8 +169,8 @@  discard block
 block discarded – undo
169 169
      */
170 170
     public function isOperator(Token $token)
171 171
     {
172
-        if(T_STRING == $token->getType()) {
173
-            if(isset($this->byPass[$token->getValue()])) {
172
+        if (T_STRING == $token->getType()) {
173
+            if (isset($this->byPass[$token->getValue()])) {
174 174
                 return false;
175 175
             }
176 176
             return isset($this->operatorsStrings[$token->getValue()]);
Please login to merge, or discard this patch.
src/Hal/Component/Token/Tokenizer.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function __construct(Cache $cache = null)
28 28
     {
29
-        if(null == $cache) {
29
+        if (null == $cache) {
30 30
             $cache = new CacheNull();
31 31
         }
32 32
         $this->cache = $cache;
@@ -41,13 +41,13 @@  discard block
 block discarded – undo
41 41
      */
42 42
     public function tokenize($filename) {
43 43
 
44
-        if($this->cache->has($filename)) {
44
+        if ($this->cache->has($filename)) {
45 45
             return new TokenCollection($this->cache->get($filename));
46 46
         }
47 47
 
48 48
         $size = filesize($filename);
49 49
         $limit = 102400; // around 100 Ko
50
-        if($size > $limit) {
50
+        if ($size > $limit) {
51 51
             $tokens = $this->tokenizeLargeFile($filename);
52 52
         } else {
53 53
             $tokens = token_get_all($this->cleanup(file_get_contents($filename)));
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 EOT;
75 75
         $output = shell_exec('php -r \''.$code.'\'');
76 76
         $tokens = unserialize($output);
77
-        if(false === $tokens) {
77
+        if (false === $tokens) {
78 78
             throw new NoTokenizableException(sprintf('Cannot tokenize "%s". This file is probably too big. Please try to increase memory_limit', $filename));
79 79
         }
80 80
         return $tokens;
Please login to merge, or discard this patch.
src/Hal/Metrics/Complexity/Component/McCabe/McCabe.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,9 +56,9 @@  discard block
 block discarded – undo
56 56
         $tokens = $this->tokenizer->tokenize($filename);
57 57
 
58 58
         $ccn = 1; // default path
59
-        foreach($tokens as $token) {
59
+        foreach ($tokens as $token) {
60 60
 
61
-            switch($token->getType()) {
61
+            switch ($token->getType()) {
62 62
                 case T_IF:
63 63
                 case T_ELSEIF:
64 64
                 case T_FOREACH:
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
                     $ccn++;
78 78
                     break;
79 79
                 case T_STRING:
80
-                    if('?' == $token->getValue()) {
80
+                    if ('?' == $token->getValue()) {
81 81
                         $ccn = $ccn + 2;
82 82
                     }
83 83
                     break;
Please login to merge, or discard this patch.
src/Hal/Metrics/Complexity/Component/Myer/Myer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,8 +63,8 @@
 block discarded – undo
63 63
             , T_BOOLEAN_OR => T_BOOLEAN_OR
64 64
         , T_LOGICAL_OR => T_LOGICAL_OR
65 65
         );
66
-        foreach($tokens as $token) {
67
-            if(isset($logicalOperators[$token->getType()])) {
66
+        foreach ($tokens as $token) {
67
+            if (isset($logicalOperators[$token->getType()])) {
68 68
                 $L++;
69 69
             }
70 70
         }
Please login to merge, or discard this patch.
Hal/Metrics/Complexity/Structural/CardAndAgresti/FileSystemComplexity.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
         $len = 0;
50 50
         $sy = $dc = $sc = array();
51 51
         $calculator = new SystemComplexity();
52
-        foreach($rOOP->getClasses() as $class) {
52
+        foreach ($rOOP->getClasses() as $class) {
53 53
             $r = $calculator->calculate($class);
54 54
 
55 55
             $len += sizeof($class->getMethods(), COUNT_NORMAL);
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
             $sc[] = $r->getTotalStructuralComplexity();
59 59
         }
60 60
 
61
-        if($len > 0 &&sizeof($dc, COUNT_NORMAL) > 0) {
61
+        if ($len > 0 && sizeof($dc, COUNT_NORMAL) > 0) {
62 62
             $result
63 63
                 ->setRelativeStructuralComplexity(round(array_sum($sc) / $len, 2))
64 64
                 ->setRelativeDataComplexity(round(array_sum($dc) / $len, 2))
Please login to merge, or discard this patch.