Skip to content

Commit ce8c7da

Browse files
committedJun 8, 2024
Reposition return annotation in DiiWebApplication
This commit repositions the "@return array|null" documentation comment to be above the "@throws" comments for correct ordering. Strives for consistency in how the documentation comments are ordered through the codebase.
1 parent b5706bf commit ce8c7da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/DiiWebApplication.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ class DiiWebApplication extends CWebApplication
3030
/**
3131
* {@inheritdoc}
3232
*
33+
* @return array|null
34+
*
3335
* @throws CException
3436
* @throws ReflectionException
3537
*
3638
* @psalm-suppress UndefinedVariable
3739
* @psalm-suppress ArgumentTypeCoercion
38-
*
39-
* @return array|null
4040
*/
4141
public function createController($route, $owner = null)
4242
{

0 commit comments

Comments
 (0)
Please sign in to comment.