GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( 67939d...21d73c )
by Anton
05:16
created
tests/e2e/recipe/misc.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 // we need to user require instead of require_once, as the hosts HAVE to be loaded multiple times
5 5
 require_once __DIR__ . '/hosts.php';
6 6
 
7
-task('test:misc:sudo-write-user', function (): void {
7
+task('test:misc:sudo-write-user', function(): void {
8 8
     $cmd = 'sudo bash -c \'echo Current user is: $USER\'';
9 9
     $output = run($cmd);
10 10
     writeln($output);
Please login to merge, or discard this patch.
tests/legacy/recipe/select.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@
 block discarded – undo
6 6
 localhost('beta')->setLabels(['env' => 'dev']);
7 7
 localhost('dev')->setLabels(['env' => 'dev']);
8 8
 
9
-task('test', function () {
10
-    on(select('env=dev'), function () {
9
+task('test', function() {
10
+    on(select('env=dev'), function() {
11 11
         info('executing on {{alias}}');
12 12
     });
13 13
 });
Please login to merge, or discard this patch.
tests/legacy/recipe/env.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,14 +8,14 @@
 block discarded – undo
8 8
     'VAR' => 'global',
9 9
 ]);
10 10
 
11
-task('test', function () {
11
+task('test', function() {
12 12
     info('global=' . run('echo $VAR'));
13 13
     info('local=' . run('echo $VAR', ['env' => ['VAR' => 'local']]));
14 14
     info('dotenv=' . run('echo $KEY'));
15 15
     info('dotenv=' . run('echo $KEY', ['env' => ['KEY' => 'local']]));
16 16
 });
17 17
 
18
-before('test', function () {
18
+before('test', function() {
19 19
     run('mkdir -p {{deploy_path}}');
20 20
     run('echo KEY="\'Hello, world!\'" > {{deploy_path}}/.env');
21 21
     set('dotenv', '{{deploy_path}}/.env');
Please login to merge, or discard this patch.
tests/legacy/recipe/update_code.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,6 +4,6 @@
 block discarded – undo
4 4
 
5 5
 require __DIR__ . '/deploy.php';
6 6
 
7
-task('deploy:update_code', function () {
7
+task('deploy:update_code', function() {
8 8
     upload(__FIXTURES__ . '/project/', '{{release_path}}');
9 9
 });
Please login to merge, or discard this patch.
tests/legacy/recipe/once.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,6 +5,6 @@
 block discarded – undo
5 5
 localhost('prod');
6 6
 localhost('beta');
7 7
 
8
-task('test_once', function () {
8
+task('test_once', function() {
9 9
     writeln('SHOULD BE ONCE');
10 10
 })->once();
Please login to merge, or discard this patch.
tests/legacy/recipe/once_per_node.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,6 +11,6 @@
 block discarded – undo
11 11
 localhost('group_b_2')
12 12
     ->setLabels(['node' => 'anna']);
13 13
 
14
-task('test_once_per_node', function () {
14
+task('test_once_per_node', function() {
15 15
     writeln('alias: {{alias}} hostname: {{hostname}}');
16 16
 })->oncePerNode();
Please login to merge, or discard this patch.
tests/legacy/recipe/named_arguments.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,19 +4,19 @@
 block discarded – undo
4 4
 
5 5
 localhost();
6 6
 
7
-task('named_arguments', function () {
7
+task('named_arguments', function() {
8 8
     run('echo "Hello, $name!"', env: ['name' => 'world']);
9 9
 });
10 10
 
11
-task('options', function () {
11
+task('options', function() {
12 12
     run('echo "Hello, $name!"', ['env' => ['name' => 'Anton']]);
13 13
 });
14 14
 
15
-task('options_with_named_arguments', function () {
15
+task('options_with_named_arguments', function() {
16 16
     // The `options:` arg has higher priority than named arguments.
17 17
     run('echo "Hello, $name!"', ['env' => ['name' => 'override']], env: ['name' => 'world']);
18 18
 });
19 19
 
20
-task('run_locally_named_arguments', function () {
20
+task('run_locally_named_arguments', function() {
21 21
     runLocally('echo "Hello, $name!"', env: ['name' => 'world']);
22 22
 });
Please login to merge, or discard this patch.
deps/vendor/autoload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
     if (!headers_sent()) {
7 7
         header('HTTP/1.1 500 Internal Server Error');
8 8
     }
9
-    $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
9
+    $err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running ' . PHP_VERSION . ', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.' . PHP_EOL;
10 10
     if (!ini_get('display_errors')) {
11 11
         if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
12 12
             fwrite(STDERR, $err);
Please login to merge, or discard this patch.
json-schema/src/JsonSchema/Constraints/ConstraintInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      * @param string           $constraint the constraint/rule that is broken, e.g.: 'minLength'
41 41
      * @param array            $more       more array elements to add to the error
42 42
      */
43
-    public function addError(?JsonPointer $path, $message, $constraint='', ?array $more = null);
43
+    public function addError(?JsonPointer $path, $message, $constraint = '', ?array $more = null);
44 44
 
45 45
     /**
46 46
      * checks if the validator has not raised errors
Please login to merge, or discard this patch.