@@ -36,102 +36,73 @@ public function space($sName, $sType = null): string
36
36
return $ this ->prepareSpace ($ sSpaceString );
37
37
}
38
38
39
- /**
40
- * @return string
41
- */
42
- public function spaceAfterRuleName ()
39
+ public function spaceAfterRuleName (): string
43
40
{
44
41
return $ this ->space ('AfterRuleName ' );
45
42
}
46
43
47
- /**
48
- * @return string
49
- */
50
- public function spaceBeforeRules ()
44
+ public function spaceBeforeRules (): string
51
45
{
52
46
return $ this ->space ('BeforeRules ' );
53
47
}
54
48
55
- /**
56
- * @return string
57
- */
58
- public function spaceAfterRules ()
49
+ public function spaceAfterRules (): string
59
50
{
60
51
return $ this ->space ('AfterRules ' );
61
52
}
62
53
63
- /**
64
- * @return string
65
- */
66
- public function spaceBetweenRules ()
54
+ public function spaceBetweenRules (): string
67
55
{
68
56
return $ this ->space ('BetweenRules ' );
69
57
}
70
58
71
- /**
72
- * @return string
73
- */
74
- public function spaceBeforeBlocks ()
59
+ public function spaceBeforeBlocks (): string
75
60
{
76
61
return $ this ->space ('BeforeBlocks ' );
77
62
}
78
63
79
- /**
80
- * @return string
81
- */
82
- public function spaceAfterBlocks ()
64
+ public function spaceAfterBlocks (): string
83
65
{
84
66
return $ this ->space ('AfterBlocks ' );
85
67
}
86
68
87
- /**
88
- * @return string
89
- */
90
- public function spaceBetweenBlocks ()
69
+ public function spaceBetweenBlocks (): string
91
70
{
92
71
return $ this ->space ('BetweenBlocks ' );
93
72
}
94
73
95
- /**
96
- * @return string
97
- */
98
- public function spaceBeforeSelectorSeparator ()
74
+ public function spaceBeforeSelectorSeparator (): string
99
75
{
100
76
return $ this ->space ('BeforeSelectorSeparator ' );
101
77
}
102
78
103
79
/**
104
80
* @return string
105
81
*/
106
- public function spaceAfterSelectorSeparator ()
82
+ public function spaceAfterSelectorSeparator (): string
107
83
{
108
84
return $ this ->space ('AfterSelectorSeparator ' );
109
85
}
110
86
111
87
/**
112
88
* @param string $sSeparator
113
89
*
114
- * @return string
115
90
*/
116
- public function spaceBeforeListArgumentSeparator ($ sSeparator )
91
+ public function spaceBeforeListArgumentSeparator ($ sSeparator ): string
117
92
{
118
93
return $ this ->space ('BeforeListArgumentSeparator ' , $ sSeparator );
119
94
}
120
95
121
96
/**
122
97
* @param string $sSeparator
123
98
*
124
- * @return string
125
99
*/
126
- public function spaceAfterListArgumentSeparator ($ sSeparator )
100
+ public function spaceAfterListArgumentSeparator ($ sSeparator ): string
127
101
{
128
102
return $ this ->space ('AfterListArgumentSeparator ' , $ sSeparator );
129
103
}
130
104
131
- /**
132
- * @return string
133
- */
134
- public function spaceBeforeOpeningBrace ()
105
+ public function spaceBeforeOpeningBrace (): string
135
106
{
136
107
return $ this ->space ('BeforeOpeningBrace ' );
137
108
}
0 commit comments