Completed
Push — master ( 2685c9...70631d )
by Mikael
04:50 queued 02:34
created
src/View/ViewHelperTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
      *
114 114
      * @param string $region to render in
115 115
      *
116
-     * @return boolean true or false
116
+     * @return boolean|null true or false
117 117
      */
118 118
     public function renderRegion($region)
119 119
     {
Please login to merge, or discard this patch.
src/View/ViewContainer.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
      *
142 142
      * @param string $region which region to check
143 143
      *
144
-     * @return $this
144
+     * @return boolean
145 145
      */
146 146
     public function hasContent($region)
147 147
     {
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
      *
171 171
      * @param string $region which region to use
172 172
      *
173
-     * @return void
173
+     * @return ViewContainer|null
174 174
      */
175 175
     public function render($region = "main")
176 176
     {
Please login to merge, or discard this patch.
src/View/ViewCollection.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
      *
180 180
      * @param string $region which region to check
181 181
      *
182
-     * @return $this
182
+     * @return boolean
183 183
      */
184 184
     public function hasContent($region)
185 185
     {
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
      *
194 194
      * @param string $region which region to use
195 195
      *
196
-     * @return void
196
+     * @return ViewCollection|null
197 197
      */
198 198
     public function render($region = "main")
199 199
     {
Please login to merge, or discard this patch.
src/View/View2.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
     /**
75 75
      * Render the view.
76 76
      *
77
-     * @param object $di optional with access to the framework resources.
77
+     * @param DIInterface $di optional with access to the framework resources.
78 78
      *
79 79
      * @return void
80 80
      */
Please login to merge, or discard this patch.