Passed
Pull Request — master (#10)
by Anton
04:10
created
www/engine/Framework/Classes/Template/Template.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -54,6 +54,9 @@
 block discarded – undo
54 54
 
55 55
 		# Output contents
56 56
 
57
+		/**
58
+		 * @param string $status
59
+		 */
57 60
 		public static function output(Template\Asset\Block $block, $status = null) {
58 61
 
59 62
 			if ((null === $status) || !Headers::isStatusCode($status)) $status = STATUS_CODE_200;
Please login to merge, or discard this patch.
www/engine/Framework/Classes/Form/Utils/Field.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -14,6 +14,9 @@
 block discarded – undo
14 14
 
15 15
 		# Get tag
16 16
 
17
+		/**
18
+		 * @param string $contents
19
+		 */
17 20
 		protected function getTag(string $name, array $attributes = [], $contents = null) {
18 21
 
19 22
 			$tag = new Tag($name, $attributes, $contents);
Please login to merge, or discard this patch.
www/engine/Framework/Classes/Request/Request.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -49,6 +49,9 @@
 block discarded – undo
49 49
 
50 50
 		# Validate file or directory name
51 51
 
52
+		/**
53
+		 * @return string
54
+		 */
52 55
 		public static function fileName(string $value) {
53 56
 
54 57
 			return (preg_match(REGEX_FILE_NAME, $value) ? $name : false);
Please login to merge, or discard this patch.