Completed
Pull Request — 3.4 (#6844)
by Gregory
11:16
created
tests/forms/RequirementsTest.php 1 patch
Doc Comments   +14 added lines patch added patch discarded remove patch
@@ -51,6 +51,9 @@  discard block
 block discarded – undo
51 51
 		);
52 52
 	}
53 53
 
54
+	/**
55
+	 * @param Requirements_Backend $backend
56
+	 */
54 57
 	protected function setupCombinedRequirements($backend) {
55 58
 		$basePath = $this->getCurrentRelativePath();
56 59
 
@@ -76,6 +79,9 @@  discard block
 block discarded – undo
76 79
 		);
77 80
 	}
78 81
 
82
+	/**
83
+	 * @param Requirements_Backend $backend
84
+	 */
79 85
 	protected function setupCombinedNonrequiredRequirements($backend) {
80 86
 			$basePath = $this->getCurrentRelativePath();
81 87
 
@@ -482,6 +488,10 @@  discard block
 block discarded – undo
482 488
 		$this->assertContains('var myvar="<head></head>";', $backend->includeInHTML(false, $template));
483 489
 	}
484 490
 
491
+	/**
492
+	 * @param Requirements_Backend $backend
493
+	 * @param string $type
494
+	 */
485 495
 	public function assertFileIncluded($backend, $type, $files) {
486 496
 		$type = strtolower($type);
487 497
 		switch (strtolower($type)) {
@@ -526,6 +536,10 @@  discard block
 block discarded – undo
526 536
 		}
527 537
 	}
528 538
 
539
+	/**
540
+	 * @param Requirements_Backend $backend
541
+	 * @param string $type
542
+	 */
529 543
 	public function assertFileNotIncluded($backend, $type, $files) {
530 544
 		$type = strtolower($type);
531 545
 		switch ($type) {
Please login to merge, or discard this patch.