Completed
Push — master ( 41f328...446fc9 )
by
unknown
02:16 queued 01:05
created
psalm-autoload.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once __DIR__ . '/lib/byte_safe_strings.php';
4
-require_once __DIR__ . '/lib/cast_to_int.php';
5
-require_once __DIR__ . '/lib/error_polyfill.php';
6
-require_once __DIR__ . '/other/ide_stubs/libsodium.php';
7
-require_once __DIR__ . '/lib/random.php';
3
+require_once __DIR__.'/lib/byte_safe_strings.php';
4
+require_once __DIR__.'/lib/cast_to_int.php';
5
+require_once __DIR__.'/lib/error_polyfill.php';
6
+require_once __DIR__.'/other/ide_stubs/libsodium.php';
7
+require_once __DIR__.'/lib/random.php';
8 8
 
9 9
 $int = random_int(0, 65536);
Please login to merge, or discard this patch.
phpunit-autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once __DIR__ . '/psalm-autoload.php';
3
+require_once __DIR__.'/psalm-autoload.php';
4 4
 
5 5
 /**
6 6
  * This is necessary for PHPUnit on PHP >= 5.3
@@ -9,6 +9,6 @@  discard block
 block discarded – undo
9 9
  */
10 10
 if (PHP_VERSION_ID >= 50300) {
11 11
     if (!class_exists('PHPUnit_Framework_TestCase')) {
12
-        require_once __DIR__ . '/other/phpunit-shim.php';
12
+        require_once __DIR__.'/other/phpunit-shim.php';
13 13
     }
14 14
 }
Please login to merge, or discard this patch.