@@ -127,7 +127,7 @@ |
||
| 127 | 127 | curl_setopt($ch, CURLOPT_URL, $test['URL']); |
| 128 | 128 | |
| 129 | 129 | // Allow individual tests to override number of attempts |
| 130 | - $attempts = (int) $this->getConfigSetting('Attempts'); |
|
| 130 | + $attempts = (int)$this->getConfigSetting('Attempts'); |
|
| 131 | 131 | if(!empty($test['Attempts'])) { |
| 132 | 132 | $attempts = $test['Attempts']; |
| 133 | 133 | } |
@@ -282,7 +282,7 @@ |
||
| 282 | 282 | */ |
| 283 | 283 | public function startApproval() { |
| 284 | 284 | $this->Status = 'Started'; |
| 285 | - $this->log("Starting {$this->Title}..."); |
|
| 285 | + $this->log("starting {$this->Title}..."); |
|
| 286 | 286 | // Determine if we should use delayed notification |
| 287 | 287 | $recipientGroup = 'all'; |
| 288 | 288 | if($this->getConfigSetting('RecipientsDelay')) { |
@@ -282,7 +282,7 @@ |
||
| 282 | 282 | */ |
| 283 | 283 | public function startApproval() { |
| 284 | 284 | $this->Status = 'Started'; |
| 285 | - $this->log("Starting {$this->Title}..."); |
|
| 285 | + $this->log("starting {$this->Title}..."); |
|
| 286 | 286 | // Determine if we should use delayed notification |
| 287 | 287 | $recipientGroup = 'all'; |
| 288 | 288 | if($this->getConfigSetting('RecipientsDelay')) { |
@@ -1,8 +1,8 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Will convert the Filename to the version 1.2 of deploynaut where it |
|
| 4 | - * more or less is exactly is the same as the Name but with .rb |
|
| 5 | - */ |
|
| 3 | + * Will convert the Filename to the version 1.2 of deploynaut where it |
|
| 4 | + * more or less is exactly is the same as the Name but with .rb |
|
| 5 | + */ |
|
| 6 | 6 | class DNMigrate1_1to1_2 extends BuildTask { |
| 7 | 7 | /** |
| 8 | 8 | * @param SS_HTTPRequest $request |
@@ -1,7 +1,7 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Surface Filesystem::sync() as a dev task in case CMS has not been included. |
|
| 4 | - */ |
|
| 3 | + * Surface Filesystem::sync() as a dev task in case CMS has not been included. |
|
| 4 | + */ |
|
| 5 | 5 | class CMSFilesystemSyncTask extends BuildTask { |
| 6 | 6 | public function run($request = null) { |
| 7 | 7 | Filesystem::sync(); |
@@ -282,7 +282,7 @@ |
||
| 282 | 282 | */ |
| 283 | 283 | public function startApproval() { |
| 284 | 284 | $this->Status = 'Started'; |
| 285 | - $this->log("Starting {$this->Title}..."); |
|
| 285 | + $this->log("starting {$this->Title}..."); |
|
| 286 | 286 | // Determine if we should use delayed notification |
| 287 | 287 | $recipientGroup = 'all'; |
| 288 | 288 | if($this->getConfigSetting('RecipientsDelay')) { |
@@ -1,14 +1,14 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * This class will queue a ping job and also proxy to the log file of that output |
|
| 4 | - * |
|
| 5 | - * @property string $ResqueToken |
|
| 6 | - * |
|
| 7 | - * @method DNEnvironment Environment() |
|
| 8 | - * @property int EnvironmentID |
|
| 9 | - * @method Member Deployer() |
|
| 10 | - * @property int DeployerID |
|
| 11 | - */ |
|
| 3 | + * This class will queue a ping job and also proxy to the log file of that output |
|
| 4 | + * |
|
| 5 | + * @property string $ResqueToken |
|
| 6 | + * |
|
| 7 | + * @method DNEnvironment Environment() |
|
| 8 | + * @property int EnvironmentID |
|
| 9 | + * @method Member Deployer() |
|
| 10 | + * @property int DeployerID |
|
| 11 | + */ |
|
| 12 | 12 | class DNPing extends DataObject { |
| 13 | 13 | |
| 14 | 14 | /** |