Completed
Push — master ( 96df1a...267f86 )
by Naveen
09:52
created
php-code-coverage/tests/_files/NamespaceCoverageCoversClassPublicTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @coversDefaultClass \Foo\CoveredClass
4
- */
3
+     * @coversDefaultClass \Foo\CoveredClass
4
+     */
5 5
 class NamespaceCoverageCoversClassPublicTest extends PHPUnit_Framework_TestCase
6 6
 {
7 7
     /**
Please login to merge, or discard this patch.
phpunit/php-code-coverage/tests/_files/NamespaceCoverageCoversClassTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @coversDefaultClass \Foo\CoveredClass
4
- */
3
+     * @coversDefaultClass \Foo\CoveredClass
4
+     */
5 5
 class NamespaceCoverageCoversClassTest extends PHPUnit_Framework_TestCase
6 6
 {
7 7
     /**
Please login to merge, or discard this patch.
vendor/phpunit/php-code-coverage/tests/_files/source_without_namespace.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Represents foo.
4
- */
3
+     * Represents foo.
4
+     */
5 5
 class Foo
6 6
 {
7 7
 }
Please login to merge, or discard this patch.
vendor/phpunit/php-file-iterator/src/Facade.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
         $factory  = new File_Iterator_Factory;
36 36
         $iterator = $factory->getFileIterator(
37
-          $paths, $suffixes, $prefixes, $exclude
37
+            $paths, $suffixes, $prefixes, $exclude
38 38
         );
39 39
 
40 40
         $files = array();
@@ -58,8 +58,8 @@  discard block
 block discarded – undo
58 58
 
59 59
         if ($commonPath) {
60 60
             return array(
61
-              'commonPath' => $this->getCommonPath($files),
62
-              'files'      => $files
61
+                'commonPath' => $this->getCommonPath($files),
62
+                'files'      => $files
63 63
             );
64 64
         } else {
65 65
             return $files;
Please login to merge, or discard this patch.
vendor/phpunit/php-file-iterator/src/Factory.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,15 +54,15 @@
 block discarded – undo
54 54
         foreach ($paths as $path) {
55 55
             if (is_dir($path)) {
56 56
                 $iterator->append(
57
-                  new File_Iterator(
57
+                    new File_Iterator(
58 58
                     new RecursiveIteratorIterator(
59
-                      new RecursiveDirectoryIterator($path, RecursiveDirectoryIterator::FOLLOW_SYMLINKS)
59
+                        new RecursiveDirectoryIterator($path, RecursiveDirectoryIterator::FOLLOW_SYMLINKS)
60 60
                     ),
61 61
                     $suffixes,
62 62
                     $prefixes,
63 63
                     $exclude,
64 64
                     $path
65
-                  )
65
+                    )
66 66
                 );
67 67
             }
68 68
         }
Please login to merge, or discard this patch.
vendor/phpunit/php-text-template/src/Template.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 
69 69
         else {
70 70
             throw new InvalidArgumentException(
71
-              'Template file could not be loaded.'
71
+                'Template file could not be loaded.'
72 72
             );
73 73
         }
74 74
     }
@@ -120,14 +120,14 @@  discard block
 block discarded – undo
120 120
             $error = error_get_last();
121 121
 
122 122
             throw new RuntimeException(
123
-              sprintf(
123
+                sprintf(
124 124
                 'Could not write to %s: %s',
125 125
                 $target,
126 126
                 substr(
127
-                  $error['message'],
128
-                  strpos($error['message'], ':') + 2
127
+                    $error['message'],
128
+                    strpos($error['message'], ':') + 2
129
+                )
129 130
                 )
130
-              )
131 131
             );
132 132
         }
133 133
     }
Please login to merge, or discard this patch.
vendor/phpunit/php-timer/src/Timer.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,9 +19,9 @@
 block discarded – undo
19 19
      * @var array
20 20
      */
21 21
     private static $times = array(
22
-      'hour'   => 3600000,
23
-      'minute' => 60000,
24
-      'second' => 1000
22
+        'hour'   => 3600000,
23
+        'minute' => 60000,
24
+        'second' => 1000
25 25
     );
26 26
 
27 27
     /**
Please login to merge, or discard this patch.
vendor/phpunit/php-timer/tests/TimerTest.php 1 patch
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -62,40 +62,40 @@
 block discarded – undo
62 62
     public function secondsProvider()
63 63
     {
64 64
         return array(
65
-          array('0 ms', 0),
66
-          array('1 ms', .001),
67
-          array('10 ms', .01),
68
-          array('100 ms', .1),
69
-          array('999 ms', .999),
70
-          array('1 second', .9999),
71
-          array('1 second', 1),
72
-          array('2 seconds', 2),
73
-          array('59.9 seconds', 59.9),
74
-          array('59.99 seconds', 59.99),
75
-          array('59.99 seconds', 59.999),
76
-          array('1 minute', 59.9999),
77
-          array('59 seconds', 59.001),
78
-          array('59.01 seconds', 59.01),
79
-          array('1 minute', 60),
80
-          array('1.01 minutes', 61),
81
-          array('2 minutes', 120),
82
-          array('2.01 minutes', 121),
83
-          array('59.99 minutes', 3599.9),
84
-          array('59.99 minutes', 3599.99),
85
-          array('59.99 minutes', 3599.999),
86
-          array('1 hour', 3599.9999),
87
-          array('59.98 minutes', 3599.001),
88
-          array('59.98 minutes', 3599.01),
89
-          array('1 hour', 3600),
90
-          array('1 hour', 3601),
91
-          array('1 hour', 3601.9),
92
-          array('1 hour', 3601.99),
93
-          array('1 hour', 3601.999),
94
-          array('1 hour', 3601.9999),
95
-          array('1.01 hours', 3659.9999),
96
-          array('1.01 hours', 3659.001),
97
-          array('1.01 hours', 3659.01),
98
-          array('2 hours', 7199.9999),
65
+            array('0 ms', 0),
66
+            array('1 ms', .001),
67
+            array('10 ms', .01),
68
+            array('100 ms', .1),
69
+            array('999 ms', .999),
70
+            array('1 second', .9999),
71
+            array('1 second', 1),
72
+            array('2 seconds', 2),
73
+            array('59.9 seconds', 59.9),
74
+            array('59.99 seconds', 59.99),
75
+            array('59.99 seconds', 59.999),
76
+            array('1 minute', 59.9999),
77
+            array('59 seconds', 59.001),
78
+            array('59.01 seconds', 59.01),
79
+            array('1 minute', 60),
80
+            array('1.01 minutes', 61),
81
+            array('2 minutes', 120),
82
+            array('2.01 minutes', 121),
83
+            array('59.99 minutes', 3599.9),
84
+            array('59.99 minutes', 3599.99),
85
+            array('59.99 minutes', 3599.999),
86
+            array('1 hour', 3599.9999),
87
+            array('59.98 minutes', 3599.001),
88
+            array('59.98 minutes', 3599.01),
89
+            array('1 hour', 3600),
90
+            array('1 hour', 3601),
91
+            array('1 hour', 3601.9),
92
+            array('1 hour', 3601.99),
93
+            array('1 hour', 3601.999),
94
+            array('1 hour', 3601.9999),
95
+            array('1.01 hours', 3659.9999),
96
+            array('1.01 hours', 3659.001),
97
+            array('1.01 hours', 3659.01),
98
+            array('2 hours', 7199.9999),
99 99
         );
100 100
     }
101 101
 }
Please login to merge, or discard this patch.
vendor/phpunit/php-token-stream/src/Token/Stream.php 1 patch
Indentation   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -297,10 +297,10 @@  discard block
 block discarded – undo
297 297
     {
298 298
         if ($this->includes === null) {
299 299
             $this->includes = array(
300
-              'require_once' => array(),
301
-              'require'      => array(),
302
-              'include_once' => array(),
303
-              'include'      => array()
300
+                'require_once' => array(),
301
+                'require'      => array(),
302
+                'include_once' => array(),
303
+                'include'      => array()
304 304
             );
305 305
 
306 306
             foreach ($this->tokens as $token) {
@@ -369,29 +369,29 @@  discard block
 block discarded – undo
369 369
                     $interfaceEndLine = $token->getEndLine();
370 370
 
371 371
                     $this->interfaces[$interface] = array(
372
-                      'methods'   => array(),
373
-                      'parent'    => $token->getParent(),
374
-                      'keywords'  => $token->getKeywords(),
375
-                      'docblock'  => $token->getDocblock(),
376
-                      'startLine' => $token->getLine(),
377
-                      'endLine'   => $interfaceEndLine,
378
-                      'package'   => $token->getPackage(),
379
-                      'file'      => $this->filename
372
+                        'methods'   => array(),
373
+                        'parent'    => $token->getParent(),
374
+                        'keywords'  => $token->getKeywords(),
375
+                        'docblock'  => $token->getDocblock(),
376
+                        'startLine' => $token->getLine(),
377
+                        'endLine'   => $interfaceEndLine,
378
+                        'package'   => $token->getPackage(),
379
+                        'file'      => $this->filename
380 380
                     );
381 381
                     break;
382 382
 
383 383
                 case 'PHP_Token_CLASS':
384 384
                 case 'PHP_Token_TRAIT':
385 385
                     $tmp = array(
386
-                      'methods'   => array(),
387
-                      'parent'    => $token->getParent(),
388
-                      'interfaces'=> $token->getInterfaces(),
389
-                      'keywords'  => $token->getKeywords(),
390
-                      'docblock'  => $token->getDocblock(),
391
-                      'startLine' => $token->getLine(),
392
-                      'endLine'   => $token->getEndLine(),
393
-                      'package'   => $token->getPackage(),
394
-                      'file'      => $this->filename
386
+                        'methods'   => array(),
387
+                        'parent'    => $token->getParent(),
388
+                        'interfaces'=> $token->getInterfaces(),
389
+                        'keywords'  => $token->getKeywords(),
390
+                        'docblock'  => $token->getDocblock(),
391
+                        'startLine' => $token->getLine(),
392
+                        'endLine'   => $token->getEndLine(),
393
+                        'package'   => $token->getPackage(),
394
+                        'file'      => $this->filename
395 395
                     );
396 396
 
397 397
                     if ($token instanceof PHP_Token_CLASS) {
@@ -411,14 +411,14 @@  discard block
 block discarded – undo
411 411
                 case 'PHP_Token_FUNCTION':
412 412
                     $name = $token->getName();
413 413
                     $tmp  = array(
414
-                      'docblock'  => $token->getDocblock(),
415
-                      'keywords'  => $token->getKeywords(),
416
-                      'visibility'=> $token->getVisibility(),
417
-                      'signature' => $token->getSignature(),
418
-                      'startLine' => $token->getLine(),
419
-                      'endLine'   => $token->getEndLine(),
420
-                      'ccn'       => $token->getCCN(),
421
-                      'file'      => $this->filename
414
+                        'docblock'  => $token->getDocblock(),
415
+                        'keywords'  => $token->getKeywords(),
416
+                        'visibility'=> $token->getVisibility(),
417
+                        'signature' => $token->getSignature(),
418
+                        'startLine' => $token->getLine(),
419
+                        'endLine'   => $token->getEndLine(),
420
+                        'ccn'       => $token->getCCN(),
421
+                        'file'      => $this->filename
422 422
                     );
423 423
 
424 424
                     if (empty($class) &&
Please login to merge, or discard this patch.