Completed
Pull Request — master (#489)
by Helpful
03:34
created
code/model/Pipeline.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -263,7 +263,7 @@
 block discarded – undo
263 263
      */
264 264
     public function getTitle()
265 265
     {
266
-        return "Pipeline {$this->ID} (Status: {$this->Status})";
266
+        return "pipeline {$this->ID} (Status: {$this->Status})";
267 267
     }
268 268
 
269 269
     /**
Please login to merge, or discard this patch.
code/model/steps/UserConfirmationStep.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -292,7 +292,7 @@
 block discarded – undo
292 292
     public function startApproval()
293 293
     {
294 294
         $this->Status = 'Started';
295
-        $this->log("Starting {$this->Title}...");
295
+        $this->log("starting {$this->Title}...");
296 296
         // Determine if we should use delayed notification
297 297
         $recipientGroup = 'all';
298 298
         if ($this->getConfigSetting('RecipientsDelay')) {
Please login to merge, or discard this patch.
code/model/steps/SmokeTestPipelineStep.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -292,7 +292,7 @@
 block discarded – undo
292 292
     public function startApproval()
293 293
     {
294 294
         $this->Status = 'Started';
295
-        $this->log("Starting {$this->Title}...");
295
+        $this->log("starting {$this->Title}...");
296 296
         // Determine if we should use delayed notification
297 297
         $recipientGroup = 'all';
298 298
         if ($this->getConfigSetting('RecipientsDelay')) {
Please login to merge, or discard this patch.
code/model/steps/TriggerDeployStep.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -292,7 +292,7 @@
 block discarded – undo
292 292
     public function startApproval()
293 293
     {
294 294
         $this->Status = 'Started';
295
-        $this->log("Starting {$this->Title}...");
295
+        $this->log("starting {$this->Title}...");
296 296
         // Determine if we should use delayed notification
297 297
         $recipientGroup = 'all';
298 298
         if ($this->getConfigSetting('RecipientsDelay')) {
Please login to merge, or discard this patch.