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.
Completed
Branch php7 (52cc61)
by Alex
05:32
created
Category
src/MessageMutation/IncomingMessageMutationFeature.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         $pipelineModifications->registerStep(
38 38
             'IncomingLogicalMessageMutation',
39 39
             IncomingLogicalMessageMutationPipelineStep::class,
40
-            function () use ($builder) {
40
+            function() use ($builder) {
41 41
                 return new IncomingLogicalMessageMutationPipelineStep(
42 42
                     $builder->build(MessageMutatorRegistry::class),
43 43
                     $builder->build(IncomingLogicalMessageFactory::class)
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
         $pipelineModifications->registerStep(
49 49
             'IncomingPhysicalMessageMutation',
50 50
             IncomingPhysicalMessageMutationPipelineStep::class,
51
-            function () use ($builder) {
51
+            function() use ($builder) {
52 52
                 return new IncomingPhysicalMessageMutationPipelineStep($builder->build(MessageMutatorRegistry::class));
53 53
             }
54 54
         );
Please login to merge, or discard this patch.
src/MessageMutation/OutgoingMessageMutationFeature.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         $pipelineModifications->registerStep(
37 37
             'OutgoingLogicalMessageMutation',
38 38
             OutgoingLogicalMessageMutationPipelineStep::class,
39
-            function () use ($builder) {
39
+            function() use ($builder) {
40 40
                 return new OutgoingLogicalMessageMutationPipelineStep($builder->build(MessageMutatorRegistry::class));
41 41
             }
42 42
         );
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         $pipelineModifications->registerStep(
45 45
             'OutgoingPhysicalMessageMutation',
46 46
             OutgoingPhysicalMessageMutationPipelineStep::class,
47
-            function () use ($builder) {
47
+            function() use ($builder) {
48 48
                 return new OutgoingPhysicalMessageMutationPipelineStep($builder->build(MessageMutatorRegistry::class));
49 49
             }
50 50
         );
Please login to merge, or discard this patch.
src/Serialization/SerializationFeature.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
         $builder->defineSingleton(MessageSerializerInterface::class, $serializerFactory);
43 43
         $builder->defineSingleton(
44 44
             MessageDeserializerResolver::class,
45
-            function () use ($builder) {
45
+            function() use ($builder) {
46 46
                 $serializer = $builder->build(MessageSerializerInterface::class);
47 47
                 return new MessageDeserializerResolver([$serializer], get_class($serializer));
48 48
             }
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
         $pipelineModifications->registerStep(
53 53
             'DeserializeLogicalMessageConnector',
54 54
             DeserializeLogicalMessageConnector::class,
55
-            function () use ($builder) {
55
+            function() use ($builder) {
56 56
                 return new DeserializeLogicalMessageConnector(
57 57
                     $builder->build(MessageDeserializerResolver::class),
58 58
                     $builder->build(IncomingLogicalMessageFactory::class),
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         $pipelineModifications->registerStep(
64 64
             'SerializeMessageConnector',
65 65
             SerializeMessageConnector::class,
66
-            function () use ($builder) {
66
+            function() use ($builder) {
67 67
                 return new SerializeMessageConnector(
68 68
                     $builder->build(MessageSerializerInterface::class),
69 69
                     $builder->build(OutgoingContextFactory::class)
Please login to merge, or discard this patch.
src/UuidGeneration/Comb/CombUuidGenerationDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      */
29 29
     public function formalize(Settings $settings)
30 30
     {
31
-        return function () {
31
+        return function() {
32 32
             return new TimestampFirstCombGenerator();
33 33
         };
34 34
     }
Please login to merge, or discard this patch.
src/EndpointConfigurator.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -501,21 +501,21 @@  discard block
 block discarded – undo
501 501
             $c[OutgoingOptionsFactory::class]
502 502
         );
503 503
 
504
-        $c[IncomingContextFactory::class] = function ($c) {
504
+        $c[IncomingContextFactory::class] = function($c) {
505 505
             return new IncomingContextFactory($c[BusOperations::class], $c[OutgoingOptionsFactory::class]);
506 506
         };
507
-        $c[OutgoingContextFactory::class] = function () {
507
+        $c[OutgoingContextFactory::class] = function() {
508 508
             return new OutgoingContextFactory();
509 509
         };
510 510
 
511
-        $c[ClockInterface::class] = function () {
511
+        $c[ClockInterface::class] = function() {
512 512
             return new SystemClock();
513 513
         };
514
-        $c[DateTimeConverter::class] = function () {
514
+        $c[DateTimeConverter::class] = function() {
515 515
             return new DateTimeConverter();
516 516
         };
517 517
 
518
-        $c[PushPipe::class] = function ($c) {
518
+        $c[PushPipe::class] = function($c) {
519 519
             /** @var PipelineFactory $pipelineFactory */
520 520
             $pipelineFactory = $c[PipelineFactory::class];
521 521
             return new PushPipe(
@@ -526,7 +526,7 @@  discard block
 block discarded – undo
526 526
                 )
527 527
             );
528 528
         };
529
-        $c[PushSettings::class] = function () {
529
+        $c[PushSettings::class] = function() {
530 530
             $errorQueue = $this->settings->tryGet(KnownSettingsEnum::ERROR_QUEUE);
531 531
             if (!$errorQueue) {
532 532
                 throw new UnexpectedValueException(
@@ -539,7 +539,7 @@  discard block
 block discarded – undo
539 539
                 $this->settings->tryGet(KnownSettingsEnum::PURGE_ON_STARTUP) ?: false
540 540
             );
541 541
         };
542
-        $c[TransportReceiver::class] = function ($c) {
542
+        $c[TransportReceiver::class] = function($c) {
543 543
             return new TransportReceiver(
544 544
                 $c[MessagePusherInterface::class],
545 545
                 $c[PushSettings::class],
Please login to merge, or discard this patch.
src/ErrorHandling/FirstLevelRetry/FirstLevelRetryFeature.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,13 +21,13 @@  discard block
 block discarded – undo
21 21
     {
22 22
         $this->enableByDefault();
23 23
         $this->registerPrerequisite(
24
-            function (Settings $settings) {
24
+            function(Settings $settings) {
25 25
                 return !$settings->tryGet(KnownSettingsEnum::SEND_ONLY);
26 26
             },
27 27
             "Send only endpoints can't use FLR since it only applies to messages being received."
28 28
         );
29 29
         $this->registerPrerequisite(
30
-            function (Settings $settings) {
30
+            function(Settings $settings) {
31 31
                 return $this->getMaxRetries($settings) > 0;
32 32
             },
33 33
             "FLR was disabled in config since it's set to 0."
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
         $pipelineModifications->registerStep(
57 57
             'FirstLevelRetryPipelineStep',
58 58
             FirstLevelRetryPipelineStep::class,
59
-            function () use ($builder) {
59
+            function() use ($builder) {
60 60
                 return new FirstLevelRetryPipelineStep(
61 61
                     $builder->build(FirstLevelRetryStorage::class),
62 62
                     $builder->build(FirstLevelRetryPolicy::class)
Please login to merge, or discard this patch.
src/ErrorHandling/ErrorLastResort/ErrorLastResortFeature.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
     {
27 27
         $this->enableByDefault();
28 28
         $this->registerPrerequisite(
29
-            function (Settings $settings) {
29
+            function(Settings $settings) {
30 30
                 return !$settings->tryGet(KnownSettingsEnum::SEND_ONLY);
31 31
             },
32 32
             "Send only endpoints can't be used to forward received messages to the error queue as the endpoint requires receive capabilities."
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 
57 57
         $builder->defineSingleton(
58 58
             ExceptionToHeadersConverter::class,
59
-            function () use ($builder) {
59
+            function() use ($builder) {
60 60
                 return new ExceptionToHeadersConverter(
61 61
                     $builder->build(ClockInterface::class),
62 62
                     $builder->build(DateTimeConverter::class)
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         $registration = $pipelineModifications->registerStep(
68 68
             'MoveErrorsToErrorQueuePipelineStep',
69 69
             MoveErrorsToErrorQueuePipelineStep::class,
70
-            function () use ($errorQueue, $localAddress, $builder) {
70
+            function() use ($errorQueue, $localAddress, $builder) {
71 71
                 /** @var PipelineFactory $pipelineFactory */
72 72
                 $pipelineFactory = $builder->build(PipelineFactory::class);
73 73
                 return new MoveErrorsToErrorQueuePipelineStep(
Please login to merge, or discard this patch.
src/ObjectBuilder/Container.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -218,7 +218,7 @@
 block discarded – undo
218 218
 
219 219
         $factory = $this->values[$id];
220 220
 
221
-        $extended = function ($c) use ($callable, $factory) {
221
+        $extended = function($c) use ($callable, $factory) {
222 222
             return $callable($factory($c), $c);
223 223
         };
224 224
 
Please login to merge, or discard this patch.
src/Persistence/InMemory/InMemoryPersistenceDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     {
31 31
         $this->supports(
32 32
             StorageType::OUTBOX(),
33
-            function (Settings $s) {
33
+            function(Settings $s) {
34 34
                 FeatureSettingsExtensions::enableFeatureByDefault(
35 35
                     InMemoryOutboxPersistenceFeature::class,
36 36
                     $s
Please login to merge, or discard this patch.