@@ -46,7 +46,7 @@ |
||
46 | 46 | */ |
47 | 47 | public function asArray() { |
48 | 48 | $array = array(); |
49 | - foreach($this->results as $result) { |
|
49 | + foreach ($this->results as $result) { |
|
50 | 50 | array_push($array, $result->asArray()); |
51 | 51 | } |
52 | 52 | return $array; |
@@ -16,7 +16,7 @@ |
||
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 |
@@ -35,7 +35,7 @@ discard block |
||
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 |
||
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 | } |
@@ -80,7 +80,7 @@ |
||
80 | 80 | */ |
81 | 81 | public function offsetExists($offset) |
82 | 82 | { |
83 | - return isset($this->tokens[$offset]); |
|
83 | + return isset($this->tokens[$offset]); |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | /** |
@@ -28,8 +28,8 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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; |
@@ -23,17 +23,17 @@ discard block |
||
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 |
||
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 | ) { |
@@ -104,7 +104,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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()]); |
@@ -56,9 +56,9 @@ discard block |
||
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 |
||
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; |
@@ -63,8 +63,8 @@ |
||
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 | } |
@@ -49,7 +49,7 @@ discard block |
||
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 |
||
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)) |