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 ( 3fa0a7...8bebeb )
by Anton
09:00
created
contrib/php-fpm.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,14 +32,14 @@
 block discarded – undo
32 32
 namespace Deployer;
33 33
 
34 34
 // Automatically detects by using {{bin/php}}.
35
-set('php_fpm_version', function () {
35
+set('php_fpm_version', function() {
36 36
     return run('{{bin/php}} -r "printf(\'%d.%d\', PHP_MAJOR_VERSION, PHP_MINOR_VERSION);"');
37 37
 });
38 38
 
39 39
 set('php_fpm_service', 'php{{php_fpm_version}}-fpm');
40 40
 
41 41
 desc('Reloads the php-fpm service');
42
-task('php-fpm:reload', function () {
42
+task('php-fpm:reload', function() {
43 43
     warning('Avoid reloading php-fpm [deployer.org/docs/8.x/avoid-php-fpm-reloading]');
44 44
     run('sudo systemctl reload {{php_fpm_service}}');
45 45
 });
Please login to merge, or discard this patch.