Completed
Push — master ( 36a3c8...68e352 )
by Julien
05:44 queued 03:12
created
src/Aent/Event/AbstractEvent.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,9 +86,9 @@
 block discarded – undo
86 86
      */
87 87
     public function registerEvents(): void
88 88
     {
89
-        $events = \array_map(function (AbstractEvent $event) {
89
+        $events = \array_map(function(AbstractEvent $event) {
90 90
             return $event->getEventName();
91
-        }, \array_filter($this->getApplication()->all(), function (Command $command) {
91
+        }, \array_filter($this->getApplication()->all(), function(Command $command) {
92 92
             return $command instanceof AbstractEvent && !$command->isHidden();
93 93
         }));
94 94
         Aenthill::update(null, $events);
Please login to merge, or discard this patch.
src/Aent/K8SProvider/Provider.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -85,10 +85,10 @@
 block discarded – undo
85 85
     public function toArray(): array
86 86
     {
87 87
         return [
88
-           'PROVIDER_NAME' => $this->name,
89
-           'CERT_MANAGER' => $this->certManager ? '1' : '0',
90
-           'USE_NODE_PORT_FOR_INGRESS' => $this->useNodePortForIngress ? '1' : '0',
91
-           'INGRESS_CLASS' => $this->ingressClass,
88
+            'PROVIDER_NAME' => $this->name,
89
+            'CERT_MANAGER' => $this->certManager ? '1' : '0',
90
+            'USE_NODE_PORT_FOR_INGRESS' => $this->useNodePortForIngress ? '1' : '0',
91
+            'INGRESS_CLASS' => $this->ingressClass,
92 92
         ];
93 93
     }
94 94
 
Please login to merge, or discard this patch.
src/Aent/Context/BaseOrchestratorContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
     {
69 69
         $context = parent::fromMetadata();
70 70
         $baseVirtualHost = Aenthill::metadata('BASE_VIRTUAL_HOST');
71
-        $singleEnvironment = (bool)Aenthill::metadata('IS_SINGLE_ENVIRONMENT');
71
+        $singleEnvironment = (bool) Aenthill::metadata('IS_SINGLE_ENVIRONMENT');
72 72
         $self = new self($context->getEnvironmentType(), $context->getEnvironmentName(), $baseVirtualHost);
73 73
         $self->setSingleEnvironment($singleEnvironment);
74 74
         return $self;
Please login to merge, or discard this patch.