Completed
Push — php-cs-fixer ( b6f93e...b9836a )
by Fabio
07:15
created
framework/Web/UI/ActiveControls/TStyleDiff.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
 	}
40 40
 
41 41
 	/**
42
-	 * @param string CSS custom style string.
42
+	 * @param string string custom style string.
43 43
 	 * @param array CSS style as name-value array.
44 44
 	 */
45 45
 	protected function getStyleFromString($string)
Please login to merge, or discard this patch.
framework/Web/UI/IBindable.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@
 block discarded – undo
24 24
 {
25 25
 	/**
26 26
 	 * Performs databinding.
27
+	 * @return void
27 28
 	 */
28 29
 	public function dataBind();
29 30
 }
30 31
\ No newline at end of file
Please login to merge, or discard this patch.
framework/Web/UI/IButtonControl.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -31,6 +31,8 @@  discard block
 block discarded – undo
31 31
 
32 32
 	/**
33 33
 	 * @param string caption of the button
34
+	 * @param string $value
35
+	 * @return void
34 36
 	 */
35 37
 	public function setText($value);
36 38
 
@@ -41,6 +43,7 @@  discard block
 block discarded – undo
41 43
 
42 44
 	/**
43 45
 	 * @param boolean whether postback event trigger by this button will cause input validation
46
+	 * @return void
44 47
 	 */
45 48
 	public function setCausesValidation($value);
46 49
 
@@ -51,6 +54,7 @@  discard block
 block discarded – undo
51 54
 
52 55
 	/**
53 56
 	 * @param string the command name associated with the {@link onCommand OnCommand} event.
57
+	 * @return void
54 58
 	 */
55 59
 	public function setCommandName($value);
56 60
 
@@ -61,6 +65,7 @@  discard block
 block discarded – undo
61 65
 
62 66
 	/**
63 67
 	 * @param string the parameter associated with the {@link onCommand OnCommand} event.
68
+	 * @return void
64 69
 	 */
65 70
 	public function setCommandParameter($value);
66 71
 
@@ -71,23 +76,27 @@  discard block
 block discarded – undo
71 76
 
72 77
 	/**
73 78
 	 * @param string the group of validators which the button causes validation upon postback
79
+	 * @return void
74 80
 	 */
75 81
 	public function setValidationGroup($value);
76 82
 
77 83
 	/**
78 84
 	 * Raises <b>OnClick</b> event.
79 85
 	 * @param TEventParameter event parameter to be passed to the event handlers
86
+	 * @return void
80 87
 	 */
81 88
 	public function onClick($param);
82 89
 
83 90
 	/**
84 91
 	 * Raises <b>OnCommand</b> event.
85 92
 	 * @param TCommandEventParameter event parameter to be passed to the event handlers
93
+	 * @return void
86 94
 	 */
87 95
 	public function onCommand($param);
88 96
 
89 97
 	/**
90 98
 	 * @param boolean set by a panel to register this button as the default button for the panel.
99
+	 * @return void
91 100
 	 */
92 101
 	public function setIsDefaultButton($value);
93 102
 
Please login to merge, or discard this patch.
framework/Web/UI/IPageStatePersister.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -25,15 +25,18 @@
 block discarded – undo
25 25
 {
26 26
 	/**
27 27
 	 * @param TPage the page that this persister works for
28
+	 * @return TPage
28 29
 	 */
29 30
 	public function getPage();
30 31
 	/**
31 32
 	 * @param TPage the page that this persister works for
33
+	 * @return void
32 34
 	 */
33 35
 	public function setPage(TPage $page);
34 36
 	/**
35 37
 	 * Saves state to persistent storage.
36 38
 	 * @param mixed state to be stored
39
+	 * @return void
37 40
 	 */
38 41
 	public function save($state);
39 42
 	/**
Please login to merge, or discard this patch.
framework/Web/UI/IPostBackEventHandler.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 	 * The implementation of this function should raise appropriate event(s) (e.g. OnClick, OnCommand)
28 28
 	 * indicating the component is responsible for the postback event.
29 29
 	 * @param string the parameter associated with the postback event
30
+	 * @return void
30 31
 	 */
31 32
 	public function raisePostBackEvent($param);
32 33
 }
33 34
\ No newline at end of file
Please login to merge, or discard this patch.
framework/Web/UI/IRenderable.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -26,6 +26,7 @@
 block discarded – undo
26 26
 	/**
27 27
 	 * Renders the component to end-users.
28 28
 	 * @param ITextWriter writer for the rendering purpose
29
+	 * @return void
29 30
 	 */
30 31
 	public function render($writer);
31 32
 }
32 33
\ No newline at end of file
Please login to merge, or discard this patch.
framework/Web/UI/ITemplate.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
 	 * Content in the template will be instantiated as components and text strings
29 29
 	 * and passed to the specified parent control.
30 30
 	 * @param TControl the parent control
31
+	 * @return void
31 32
 	 */
32 33
 	public function instantiateIn($parent);
33 34
 }
34 35
\ No newline at end of file
Please login to merge, or discard this patch.
framework/Web/UI/ITheme.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
 	/**
26 26
 	 * Applies this theme to the specified control.
27 27
 	 * @param TControl the control to be applied with this theme
28
+	 * @return boolean
28 29
 	 */
29 30
 	public function applySkin($control);
30 31
 }
31 32
\ No newline at end of file
Please login to merge, or discard this patch.
framework/Web/UI/IValidator.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -35,6 +35,7 @@  discard block
 block discarded – undo
35 35
 	public function getIsValid();
36 36
 	/**
37 37
 	 * @param boolean whether the validator validates successfully
38
+	 * @return void
38 39
 	 */
39 40
 	public function setIsValid($value);
40 41
 	/**
@@ -43,6 +44,7 @@  discard block
 block discarded – undo
43 44
 	public function getErrorMessage();
44 45
 	/**
45 46
 	 * @param string error message for the validation
47
+	 * @return void
46 48
 	 */
47 49
 	public function setErrorMessage($value);
48 50
 }
49 51
\ No newline at end of file
Please login to merge, or discard this patch.