Completed
Pull Request — master (#489)
by Helpful
03:51
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/SmokeTestPipelineStep.php 1 patch
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -206,7 +206,7 @@
 block discarded – undo
206 206
     public function start()
207 207
     {
208 208
         $this->Status = 'Started';
209
-        $this->log("Starting {$this->Title}...");
209
+        $this->log("starting {$this->Title}...");
210 210
         $this->write();
211 211
 
212 212
         // Get tests to run
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
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
         if (!$this->Started) {
125 125
             $this->Started = SS_Datetime::now()->Rfc2822();
126 126
         }
127
-        $this->log("Starting {$this->Title}...");
127
+        $this->log("starting {$this->Title}...");
128 128
         $this->write();
129 129
         return true;
130 130
     }
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.