Completed
Push — master ( 1ad861...55cc51 )
by
unknown
02:52 queued 01:37
created
src/Hal/Metric/Class_/Structural/LcomVisitor.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -45,12 +45,12 @@  discard block
 block discarded – undo
45 45
             foreach ($node->stmts as $stmt) {
46 46
                 if ($stmt instanceof Stmt\ClassMethod) {
47 47
 
48
-                    if (!$graph->has($stmt->name . '()')) {
49
-                        $graph->insert(new TreeNode($stmt->name . '()'));
48
+                    if (!$graph->has($stmt->name.'()')) {
49
+                        $graph->insert(new TreeNode($stmt->name.'()'));
50 50
                     }
51
-                    $from = $graph->get($stmt->name . '()');
51
+                    $from = $graph->get($stmt->name.'()');
52 52
 
53
-                    \iterate_over_node($stmt, function ($node) use ($from, &$graph) {
53
+                    \iterate_over_node($stmt, function($node) use ($from, &$graph) {
54 54
 
55 55
                         if ($node instanceof Node\Expr\PropertyFetch && isset($node->var->name) && $node->var->name == 'this') {
56 56
                             $name = getNameOfNode($node);
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
                             if (!$node->var instanceof Node\Expr\New_ && isset($node->var->name) && getNameOfNode($node->var) === 'this') {
69 69
                                 // use of method call $this->xxx();
70 70
                                 // use of attribute $this->xxx;
71
-                                $name = getNameOfNode($node->name) . '()';
71
+                                $name = getNameOfNode($node->name).'()';
72 72
                                 if (!$graph->has($name)) {
73 73
                                     $graph->insert(new TreeNode($name));
74 74
                                 }
Please login to merge, or discard this patch.
src/Hal/Metric/Class_/Complexity/KanDefectVisitor.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
             $select = $while = $if = 0;
44 44
 
45
-            iterate_over_node($node, function ($node) use (&$while, &$select, &$if) {
45
+            iterate_over_node($node, function($node) use (&$while, &$select, &$if) {
46 46
                 switch (true) {
47 47
                     case $node instanceof Stmt\Do_:
48 48
                     case $node instanceof Stmt\Foreach_:
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
                 }
59 59
             });
60 60
 
61
-            $defect = 0.15 + 0.23 *  $while + 0.22 *  $select + 0.07 * $if;
61
+            $defect = 0.15 + 0.23 * $while + 0.22 * $select + 0.07 * $if;
62 62
             $class->set('kanDefect', round($defect, 2));
63 63
         }
64 64
     }
Please login to merge, or discard this patch.
src/Hal/Metric/System/Changes/GitChanges.php 1 patch
Spacing   +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
         $r = shell_exec(sprintf('%s --version', $bin));
54
-        if(!preg_match('!git version!', $r)) {
54
+        if (!preg_match('!git version!', $r)) {
55 55
             throw new ConfigException(sprintf('Git binary (%s) incorrect', $bin));
56 56
         }
57 57
 
Please login to merge, or discard this patch.
artifacts/phar/build.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@  discard block
 block discarded – undo
1 1
 <?php
2
-chdir(__DIR__ . '/../../');
2
+chdir(__DIR__.'/../../');
3 3
 
4 4
 if (!file_exists('vendor/autoload.php')) {
5
-    echo '[ERROR] It\'s required to run "composer install" before building PhpMetrics!' . PHP_EOL;
5
+    echo '[ERROR] It\'s required to run "composer install" before building PhpMetrics!'.PHP_EOL;
6 6
     exit(1);
7 7
 }
8 8
 
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     if (preg_match($exclude, $file)) {
22 22
         continue;
23 23
     }
24
-    $path = str_replace(__DIR__ . '/', '', $file);
24
+    $path = str_replace(__DIR__.'/', '', $file);
25 25
     $phar->addFromString($path, file_get_contents($file));
26 26
 }
27 27
 
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
 
53 53
 function rglob($pattern = '*', $flags = 0, $path = '')
54 54
 {
55
-    $paths = glob($path . '*', GLOB_MARK | GLOB_ONLYDIR | GLOB_NOSORT);
56
-    $files = glob($path . $pattern, $flags);
55
+    $paths = glob($path.'*', GLOB_MARK|GLOB_ONLYDIR|GLOB_NOSORT);
56
+    $files = glob($path.$pattern, $flags);
57 57
     foreach ($paths as $path) {
58 58
         $files = array_merge($files, rglob($pattern, $flags, $path));
59 59
     }
Please login to merge, or discard this patch.
src/Hal/Component/Output/ProgressBar.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
         if (DIRECTORY_SEPARATOR === '\\') {
98 98
             return
99 99
                 0 >= version_compare('10.0.10586',
100
-                    PHP_WINDOWS_VERSION_MAJOR . '.' . PHP_WINDOWS_VERSION_MINOR . '.' . PHP_WINDOWS_VERSION_BUILD)
100
+                    PHP_WINDOWS_VERSION_MAJOR.'.'.PHP_WINDOWS_VERSION_MINOR.'.'.PHP_WINDOWS_VERSION_BUILD)
101 101
                 || false !== getenv('ANSICON')
102 102
                 || 'ON' === getenv('ConEmuANSI')
103 103
                 || 'xterm' === getenv('TERM');
Please login to merge, or discard this patch.
src/Hal/Component/Output/TestOutput.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     public function writeln($message)
25 25
     {
26
-        $this->write(PHP_EOL . $message);
26
+        $this->write(PHP_EOL.$message);
27 27
         return $this;
28 28
     }
29 29
 
Please login to merge, or discard this patch.
src/Hal/Component/Output/CliOutput.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public function writeln($message)
27 27
     {
28
-        $this->write(PHP_EOL . $message);
28
+        $this->write(PHP_EOL.$message);
29 29
         return $this;
30 30
     }
31 31
 
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public function write($message)
36 36
     {
37
-        $this->quietMode||file_put_contents('php://stdout', $message);
37
+        $this->quietMode || file_put_contents('php://stdout', $message);
38 38
         return $this;
39 39
     }
40 40
 
Please login to merge, or discard this patch.
src/Hal/Application/Application.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
         $output = new CliOutput();
24 24
 
25 25
         // issues and debug
26
-        $issuer = (new Issuer($output));//->enable();
26
+        $issuer = (new Issuer($output)); //->enable();
27 27
 
28 28
         // config
29 29
         $config = (new Parser())->parse($argv);
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         // analyze
58 58
         try {
59 59
             $metrics = (new Analyze($config, $output, $issuer))->run($files);
60
-        }catch(ConfigException $e) {
60
+        } catch (ConfigException $e) {
61 61
             $output->writeln(sprintf('<error>%s</error>', $e->getMessage()));
62 62
             exit(1);
63 63
         }
Please login to merge, or discard this patch.
src/Hal/Report/Html/template/junit.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-require __DIR__ . '/_header.php'; ?>
2
+require __DIR__.'/_header.php'; ?>
3 3
 
4 4
 <?php
5 5
 if (!isset($project['unitTesting'])) {
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 }
9 9
 
10 10
 $unit = $project['unitTesting'];
11
-$getMetricForClass = function ($classname, $metric) use ($classes) {
11
+$getMetricForClass = function($classname, $metric) use ($classes) {
12 12
     foreach ($classes as $class) {
13 13
         if ($classname !== $class['name']) {
14 14
             continue;
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
         </div>
137 137
     </div>
138 138
 
139
-    <?php require __DIR__ . '/_footer.php'; ?>
139
+    <?php require __DIR__.'/_footer.php'; ?>
140 140
 
141 141
     <script type="text/javascript">
142 142
         var clusterize = new Clusterize({
@@ -191,12 +191,12 @@  discard block
 block discarded – undo
191 191
             foreach ($unit['tests'] as $test) {
192 192
                 array_push($unitTimeJson->children, [
193 193
                     'name' => $test->classname,
194
-                    'time' => (float)$test->time,
194
+                    'time' => (float) $test->time,
195 195
                 ]);
196 196
             }
197 197
             ?>
198 198
 
199
-            var json = <?php echo json_encode($unitTimeJson);?>;
199
+            var json = <?php echo json_encode($unitTimeJson); ?>;
200 200
             root = json;
201 201
             var nodes = treemap.nodes(json)
202 202
                 .filter(function (d) {
Please login to merge, or discard this patch.