Completed
Push — master ( be6beb...2fb8a6 )
by Alice
02:20
created
tests/bootstrap.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,16 +1,16 @@
 block discarded – undo
1 1
 <?php
2
-declare( strict_types = 1 );
2
+declare(strict_types=1);
3 3
 
4
-if ( PHP_SAPI !== 'cli' ) {
5
-	die( 'Not an entry point' );
4
+if (PHP_SAPI !== 'cli') {
5
+	die('Not an entry point');
6 6
 }
7 7
 
8 8
 error_reporting( -1 );
9 9
 
10
-ini_set( 'display_errors', '1' );
10
+ini_set('display_errors', '1');
11 11
 
12
-if ( !is_readable( __DIR__ . '/../vendor/autoload.php' ) ) {
13
-	die( 'You need to install this package with Composer before you can run the tests' );
12
+if (!is_readable(__DIR__ . '/../vendor/autoload.php')) {
13
+	die('You need to install this package with Composer before you can run the tests');
14 14
 }
15 15
 
16 16
 require_once __DIR__ . '/../vendor/autoload.php';
Please login to merge, or discard this patch.
examples/Yml/yml.php 1 patch
Spacing   +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
-if ( !is_readable( __DIR__ . '/../../vendor/autoload.php' ) ) {
4
-	die( 'You need to install this package with Composer before you can run the examples' );
3
+if (!is_readable(__DIR__ . '/../../vendor/autoload.php')) {
4
+	die('You need to install this package with Composer before you can run the examples');
5 5
 }
6 6
 
7 7
 require_once __DIR__ . '/../../vendor/autoload.php';
Please login to merge, or discard this patch.
examples/Object/object.php 1 patch
Spacing   +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
-if ( !is_readable( __DIR__ . '/../../vendor/autoload.php' ) ) {
4
-	die( 'You need to install this package with Composer before you can run the examples' );
3
+if (!is_readable(__DIR__ . '/../../vendor/autoload.php')) {
4
+	die('You need to install this package with Composer before you can run the examples');
5 5
 }
6 6
 
7 7
 require_once __DIR__ . '/../../vendor/autoload.php';
Please login to merge, or discard this patch.