Completed
Pull Request — master (#421)
by Michael
1346:13 queued 1341:51
created
code/backends/DeploymentStrategy.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -75,6 +75,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
code/control/DNRoot.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -963,7 +963,7 @@  discard block
 block discarded – undo
963 963
 	 * @param array $data
964 964
 	 * @param Form $form
965 965
 	 *
966
-	 * @return bool|HTMLText|SS_HTTPResponse
966
+	 * @return SS_HTTPResponse|null
967 967
 	 */
968 968
 	public function doCreateEnvironment($data, Form $form) {
969 969
 		$this->setCurrentActionType(self::ACTION_ENVIRONMENTS);
@@ -2351,7 +2351,7 @@  discard block
 block discarded – undo
2351 2351
 	/**
2352 2352
 	 * Create project action.
2353 2353
 	 *
2354
-	 * @return SS_HTTPResponse
2354
+	 * @return HTMLText
2355 2355
 	 */
2356 2356
 	public function createproject(SS_HTTPRequest $request) {
2357 2357
 		if($this->canCreateProjects()) {
Please login to merge, or discard this patch.
code/model/DNProject.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -445,7 +445,7 @@  discard block
 block discarded – undo
445 445
 	}
446 446
 
447 447
 	/**
448
-	 * @return false|Gitonomy\Git\Repository
448
+	 * @return Gitonomy\Git\Repository
449 449
 	 */
450 450
 	public function getRepository() {
451 451
 		if(!$this->repoExists()) {
@@ -953,7 +953,7 @@  discard block
 block discarded – undo
953 953
 	/**
954 954
 	 * Check if member has a permission code in this project.
955 955
 	 *
956
-	 * @param string $code
956
+	 * @param string $codes
957 957
 	 * @param Member|null $member
958 958
 	 *
959 959
 	 * @return bool
Please login to merge, or discard this patch.