@@ -75,6 +75,7 @@ discard block |
||
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | /** |
| 78 | + * @param string $code |
|
| 78 | 79 | */ |
| 79 | 80 | public function setActionCode($code) { |
| 80 | 81 | $this->actionCode = $code; |
@@ -89,6 +90,7 @@ discard block |
||
| 89 | 90 | |
| 90 | 91 | /** |
| 91 | 92 | * @param int |
| 93 | + * @param string $seconds |
|
| 92 | 94 | */ |
| 93 | 95 | public function setEstimatedTime($seconds) { |
| 94 | 96 | $this->estimatedTime = $seconds; |
@@ -130,10 +130,10 @@ |
||
| 130 | 130 | */ |
| 131 | 131 | public function getChangesModificationNeeded() { |
| 132 | 132 | $filtered = []; |
| 133 | - foreach ($this->changes as $change => $details) { |
|
| 134 | - if (array_key_exists('description', $details)) { |
|
| 133 | + foreach($this->changes as $change => $details) { |
|
| 134 | + if(array_key_exists('description', $details)) { |
|
| 135 | 135 | $filtered[$change] = $details; |
| 136 | - } else if ( |
|
| 136 | + } else if( |
|
| 137 | 137 | (array_key_exists('from', $details) || array_key_exists('to', $details)) |
| 138 | 138 | && $details['from'] !== $details['to'] |
| 139 | 139 | ) { |
@@ -3,7 +3,7 @@ |
||
| 3 | 3 | class FrontendLink extends DataExtension { |
| 4 | 4 | |
| 5 | 5 | public function updateItemEditForm($form) { |
| 6 | - if ($this->owner->record->hasMethod('Link')) { |
|
| 6 | + if($this->owner->record->hasMethod('Link')) { |
|
| 7 | 7 | $link = sprintf( |
| 8 | 8 | '<a style="margin: 0.5em" target="deploynaut-frontend" href="%s">Preview »</a>', |
| 9 | 9 | $this->owner->record->Link() |
@@ -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 | } |
@@ -961,7 +961,7 @@ |
||
| 961 | 961 | * @param array $data |
| 962 | 962 | * @param Form $form |
| 963 | 963 | * |
| 964 | - * @return bool|HTMLText|SS_HTTPResponse |
|
| 964 | + * @return SS_HTTPResponse|null |
|
| 965 | 965 | */ |
| 966 | 966 | public function doCreateEnvironment($data, Form $form) { |
| 967 | 967 | $this->setCurrentActionType(self::ACTION_ENVIRONMENTS); |
@@ -183,7 +183,7 @@ discard block |
||
| 183 | 183 | ) |
| 184 | 184 | ); |
| 185 | 185 | |
| 186 | - if (\Director::isDev()) { |
|
| 186 | + if(\Director::isDev()) { |
|
| 187 | 187 | \Requirements::javascript('deploynaut/static/bundle-debug.js'); |
| 188 | 188 | } else { |
| 189 | 189 | \Requirements::javascript('deploynaut/static/bundle.js'); |
@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | // Block framework jquery |
| 248 | - Requirements::block(FRAMEWORK_DIR . '/thirdparty/jquery/jquery.js'); |
|
| 248 | + Requirements::block(FRAMEWORK_DIR.'/thirdparty/jquery/jquery.js'); |
|
| 249 | 249 | |
| 250 | 250 | self::include_requirements(); |
| 251 | 251 | } |
@@ -264,7 +264,7 @@ discard block |
||
| 264 | 264 | * @return \SS_HTTPResponse |
| 265 | 265 | */ |
| 266 | 266 | public function index(SS_HTTPRequest $request) { |
| 267 | - return $this->redirect($this->Link() . 'projects/'); |
|
| 267 | + return $this->redirect($this->Link().'projects/'); |
|
| 268 | 268 | } |
| 269 | 269 | |
| 270 | 270 | /** |
@@ -422,7 +422,7 @@ discard block |
||
| 422 | 422 | $form->disableSecurityToken(); |
| 423 | 423 | $form->addExtraClass('fields-wide'); |
| 424 | 424 | // Tweak the action so it plays well with our fake URL structure. |
| 425 | - $form->setFormAction($project->Link() . '/UploadSnapshotForm'); |
|
| 425 | + $form->setFormAction($project->Link().'/UploadSnapshotForm'); |
|
| 426 | 426 | |
| 427 | 427 | return $form; |
| 428 | 428 | } |
@@ -472,7 +472,7 @@ discard block |
||
| 472 | 472 | $dataArchive->DataTransfers()->add($dataTransfer); |
| 473 | 473 | $form->saveInto($dataArchive); |
| 474 | 474 | $dataArchive->write(); |
| 475 | - $workingDir = TEMP_FOLDER . DIRECTORY_SEPARATOR . 'deploynaut-transfer-' . $dataTransfer->ID; |
|
| 475 | + $workingDir = TEMP_FOLDER.DIRECTORY_SEPARATOR.'deploynaut-transfer-'.$dataTransfer->ID; |
|
| 476 | 476 | |
| 477 | 477 | $cleanupFn = function() use($workingDir, $dataTransfer, $dataArchive) { |
| 478 | 478 | $process = new Process(sprintf('rm -rf %s', escapeshellarg($workingDir))); |
@@ -572,7 +572,7 @@ discard block |
||
| 572 | 572 | $form->disableSecurityToken(); |
| 573 | 573 | $form->addExtraClass('fields-wide'); |
| 574 | 574 | // Tweak the action so it plays well with our fake URL structure. |
| 575 | - $form->setFormAction($project->Link() . '/PostSnapshotForm'); |
|
| 575 | + $form->setFormAction($project->Link().'/PostSnapshotForm'); |
|
| 576 | 576 | |
| 577 | 577 | return $form; |
| 578 | 578 | } |
@@ -710,7 +710,7 @@ discard block |
||
| 710 | 710 | $branchName = $request->getVar('name'); |
| 711 | 711 | $branch = $project->DNBranchList()->byName($branchName); |
| 712 | 712 | if(!$branch) { |
| 713 | - return new SS_HTTPResponse("Branch '" . Convert::raw2xml($branchName) . "' not found.", 404); |
|
| 713 | + return new SS_HTTPResponse("Branch '".Convert::raw2xml($branchName)."' not found.", 404); |
|
| 714 | 714 | } |
| 715 | 715 | |
| 716 | 716 | return $this->render(array( |
@@ -944,7 +944,7 @@ discard block |
||
| 944 | 944 | ); |
| 945 | 945 | |
| 946 | 946 | // Tweak the action so it plays well with our fake URL structure. |
| 947 | - $form->setFormAction($project->Link() . '/CreateEnvironmentForm'); |
|
| 947 | + $form->setFormAction($project->Link().'/CreateEnvironmentForm'); |
|
| 948 | 948 | |
| 949 | 949 | return $form; |
| 950 | 950 | } |
@@ -977,7 +977,7 @@ discard block |
||
| 977 | 977 | $job->write(); |
| 978 | 978 | $job->start(); |
| 979 | 979 | |
| 980 | - return $this->redirect($project->Link('createenv') . '/' . $job->ID); |
|
| 980 | + return $this->redirect($project->Link('createenv').'/'.$job->ID); |
|
| 981 | 981 | } |
| 982 | 982 | |
| 983 | 983 | /** |
@@ -1035,7 +1035,7 @@ discard block |
||
| 1035 | 1035 | */ |
| 1036 | 1036 | public function getPlatformSpecificStrings() { |
| 1037 | 1037 | $strings = $this->config()->platform_specific_strings; |
| 1038 | - if ($strings) { |
|
| 1038 | + if($strings) { |
|
| 1039 | 1039 | return new ArrayList($strings); |
| 1040 | 1040 | } |
| 1041 | 1041 | } |
@@ -1159,7 +1159,7 @@ discard block |
||
| 1159 | 1159 | return $body; |
| 1160 | 1160 | } |
| 1161 | 1161 | |
| 1162 | - $form->setFormAction($this->getRequest()->getURL() . '/DeployForm'); |
|
| 1162 | + $form->setFormAction($this->getRequest()->getURL().'/DeployForm'); |
|
| 1163 | 1163 | return $form; |
| 1164 | 1164 | } |
| 1165 | 1165 | |
@@ -1433,7 +1433,7 @@ discard block |
||
| 1433 | 1433 | $deployment->start(); |
| 1434 | 1434 | |
| 1435 | 1435 | return json_encode(array( |
| 1436 | - 'url' => Director::absoluteBaseURL() . $deployment->Link() |
|
| 1436 | + 'url' => Director::absoluteBaseURL().$deployment->Link() |
|
| 1437 | 1437 | ), JSON_PRETTY_PRINT); |
| 1438 | 1438 | } |
| 1439 | 1439 | |
@@ -1540,7 +1540,7 @@ discard block |
||
| 1540 | 1540 | ->addExtraClass('btn') |
| 1541 | 1541 | ) |
| 1542 | 1542 | ); |
| 1543 | - $form->setFormAction($this->getRequest()->getURL() . '/DataTransferForm'); |
|
| 1543 | + $form->setFormAction($this->getRequest()->getURL().'/DataTransferForm'); |
|
| 1544 | 1544 | |
| 1545 | 1545 | return $form; |
| 1546 | 1546 | } |
@@ -1742,7 +1742,7 @@ discard block |
||
| 1742 | 1742 | ->addExtraClass('btn') |
| 1743 | 1743 | ) |
| 1744 | 1744 | ); |
| 1745 | - $form->setFormAction($project->Link() . '/DataTransferRestoreForm'); |
|
| 1745 | + $form->setFormAction($project->Link().'/DataTransferRestoreForm'); |
|
| 1746 | 1746 | |
| 1747 | 1747 | return $form; |
| 1748 | 1748 | } |
@@ -1840,7 +1840,7 @@ discard block |
||
| 1840 | 1840 | ->addExtraClass('btn') |
| 1841 | 1841 | ) |
| 1842 | 1842 | ); |
| 1843 | - $form->setFormAction($project->Link() . '/DeleteForm'); |
|
| 1843 | + $form->setFormAction($project->Link().'/DeleteForm'); |
|
| 1844 | 1844 | |
| 1845 | 1845 | return $form; |
| 1846 | 1846 | } |
@@ -1946,7 +1946,7 @@ discard block |
||
| 1946 | 1946 | ->addExtraClass('btn') |
| 1947 | 1947 | ) |
| 1948 | 1948 | ); |
| 1949 | - $form->setFormAction($this->getCurrentProject()->Link() . '/MoveForm'); |
|
| 1949 | + $form->setFormAction($this->getCurrentProject()->Link().'/MoveForm'); |
|
| 1950 | 1950 | |
| 1951 | 1951 | return $form; |
| 1952 | 1952 | } |
@@ -2245,7 +2245,7 @@ discard block |
||
| 2245 | 2245 | */ |
| 2246 | 2246 | protected function project404Response() { |
| 2247 | 2247 | return new SS_HTTPResponse( |
| 2248 | - "Project '" . Convert::raw2xml($this->getRequest()->param('Project')) . "' not found.", |
|
| 2248 | + "Project '".Convert::raw2xml($this->getRequest()->param('Project'))."' not found.", |
|
| 2249 | 2249 | 404 |
| 2250 | 2250 | ); |
| 2251 | 2251 | } |
@@ -2255,7 +2255,7 @@ discard block |
||
| 2255 | 2255 | */ |
| 2256 | 2256 | protected function environment404Response() { |
| 2257 | 2257 | $envName = Convert::raw2xml($this->getRequest()->param('Environment')); |
| 2258 | - return new SS_HTTPResponse("Environment '" . $envName . "' not found.", 404); |
|
| 2258 | + return new SS_HTTPResponse("Environment '".$envName."' not found.", 404); |
|
| 2259 | 2259 | } |
| 2260 | 2260 | |
| 2261 | 2261 | /** |
@@ -2324,7 +2324,7 @@ discard block |
||
| 2324 | 2324 | public function AmbientMenu() { |
| 2325 | 2325 | $list = new ArrayList(); |
| 2326 | 2326 | |
| 2327 | - if (Member::currentUserID()) { |
|
| 2327 | + if(Member::currentUserID()) { |
|
| 2328 | 2328 | $list->push(new ArrayData(array( |
| 2329 | 2329 | 'Classes' => 'logout', |
| 2330 | 2330 | 'FaIcon' => 'sign-out', |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | return false; |
| 230 | 230 | } |
| 231 | 231 | |
| 232 | - $key = $memberID . '-' . $this->EnvironmentID; |
|
| 232 | + $key = $memberID.'-'.$this->EnvironmentID; |
|
| 233 | 233 | if(!isset(self::$_cache_can_restore[$key])) { |
| 234 | 234 | self::$_cache_can_restore[$key] = $this->Environment()->canUploadArchive($member); |
| 235 | 235 | } |
@@ -250,7 +250,7 @@ discard block |
||
| 250 | 250 | return false; |
| 251 | 251 | } |
| 252 | 252 | |
| 253 | - $key = $memberID . '-' . $this->EnvironmentID; |
|
| 253 | + $key = $memberID.'-'.$this->EnvironmentID; |
|
| 254 | 254 | if(!isset(self::$_cache_can_download[$key])) { |
| 255 | 255 | self::$_cache_can_download[$key] = $this->Environment()->canDownloadArchive($member); |
| 256 | 256 | } |
@@ -437,7 +437,7 @@ discard block |
||
| 437 | 437 | } |
| 438 | 438 | |
| 439 | 439 | // Extract database.sql.gz to <workingdir>/database.sql |
| 440 | - if(file_exists($workingDir . DIRECTORY_SEPARATOR . 'database.sql.gz')) { |
|
| 440 | + if(file_exists($workingDir.DIRECTORY_SEPARATOR.'database.sql.gz')) { |
|
| 441 | 441 | $process = new Process('gunzip database.sql.gz', $workingDir); |
| 442 | 442 | $process->setTimeout(3600); |
| 443 | 443 | $process->run(); |
@@ -448,7 +448,7 @@ discard block |
||
| 448 | 448 | } |
| 449 | 449 | |
| 450 | 450 | // Extract assets.tar.gz to <workingdir>/assets/ |
| 451 | - if(file_exists($workingDir . DIRECTORY_SEPARATOR . 'assets.tar.gz')) { |
|
| 451 | + if(file_exists($workingDir.DIRECTORY_SEPARATOR.'assets.tar.gz')) { |
|
| 452 | 452 | $process = new Process('tar xzf assets.tar.gz', $workingDir); |
| 453 | 453 | $process->setTimeout(3600); |
| 454 | 454 | $process->run(); |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | */ |
| 45 | 45 | public function getTitle() { |
| 46 | 46 | // Make sure the title includes the subtask |
| 47 | - return parent::getTitle() . ":{$this->Doing}"; |
|
| 47 | + return parent::getTitle().":{$this->Doing}"; |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | /** |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | |
| 30 | 30 | public function getTitle() { |
| 31 | 31 | // Make sure the title includes the subtask |
| 32 | - return parent::getTitle() . ":{$this->Doing}"; |
|
| 32 | + return parent::getTitle().":{$this->Doing}"; |
|
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | public function start() { |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | |
| 85 | 85 | // Skip deployment for dry run |
| 86 | 86 | if($this->Pipeline()->DryRun) { |
| 87 | - $this->log("[Skipped] Create DNDeployment for SHA " . $pipeline->SHA); |
|
| 87 | + $this->log("[Skipped] Create DNDeployment for SHA ".$pipeline->SHA); |
|
| 88 | 88 | $this->write(); |
| 89 | 89 | return true; |
| 90 | 90 | } |
@@ -74,7 +74,7 @@ |
||
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | public function getTreeTitle() { |
| 77 | - return $this->Title . ' (Status: ' . $this->Status . ')'; |
|
| 77 | + return $this->Title.' (Status: '.$this->Status.')'; |
|
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | public function getNiceName() { |
@@ -7,7 +7,7 @@ |
||
| 7 | 7 | public static $cache = array(); |
| 8 | 8 | |
| 9 | 9 | public static function getIncludingBranches($commit) { |
| 10 | - $cacheKey = 'getIncludingBranches-' . $commit->getRepository()->getPath() . '-' . $commit->gethash(); |
|
| 10 | + $cacheKey = 'getIncludingBranches-'.$commit->getRepository()->getPath().'-'.$commit->gethash(); |
|
| 11 | 11 | if(!isset(self::$cache[$cacheKey])) { |
| 12 | 12 | self::$cache[$cacheKey] = $commit->getIncludingBranches(); |
| 13 | 13 | } |