Skip to content

Commit 7d208b5

Browse files
committed
Fix coding standard
1 parent 5311f7f commit 7d208b5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

App.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
*
1313
* @see https://docs.aplus-framework.com/guides/projects/app/#the-global-class-app
1414
*/
15-
class App extends \Framework\MVC\App
15+
class App extends Framework\MVC\App
1616
{
1717
}

boot/helpers.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function current_url() : string
8484
/**
8585
* Get the current Route.
8686
*
87-
* @return Framework\Routing\Route
87+
* @return Route
8888
*/
8989
function current_route() : Route
9090
{
@@ -133,7 +133,7 @@ function lang(string $line, array $args = [], string $locale = null) : ?string
133133
/**
134134
* Get the Session instance.
135135
*
136-
* @return Framework\Session\Session
136+
* @return Session
137137
*/
138138
function session() : Session
139139
{
@@ -200,7 +200,7 @@ function csrf_input(string $instance = 'default') : string
200200
*
201201
* @param array<string,mixed> $variables
202202
*
203-
* @return Framework\HTTP\Response
203+
* @return Response
204204
*/
205205
function respond_not_found(array $variables = []) : Response
206206
{
@@ -241,7 +241,7 @@ function respond_not_found(array $variables = []) : Response
241241
*
242242
* @throws InvalidArgumentException for invalid Redirection code
243243
*
244-
* @return Framework\HTTP\Response
244+
* @return Response
245245
*/
246246
function redirect(string $location, array $data = [], int $code = null) : Response
247247
{
@@ -268,7 +268,7 @@ function redirect(string $location, array $data = [], int $code = null) : Respon
268268
*
269269
* @throws InvalidArgumentException for invalid Redirection code
270270
*
271-
* @return Framework\HTTP\Response
271+
* @return Response
272272
*/
273273
function redirect_to(
274274
array | string $route,

0 commit comments

Comments
 (0)