Skip to content

Commit 00c14e8

Browse files
committed
2.0.2 version
1 parent 42ad313 commit 00c14e8

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Ubiquity/core/Framework.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,38 +15,38 @@
1515
use Ubiquity\utils\http\UCookie;
1616

1717
class Framework {
18-
public const version='2.0.0-beta.1';
18+
public const version = '2.0.2';
1919

2020
public static function getController() {
21-
return Startup::getController();
21+
return Startup::getController ();
2222
}
2323

2424
public static function getAction() {
25-
return Startup::getAction();
25+
return Startup::getAction ();
2626
}
2727

2828
public static function getUrl() {
29-
return \implode("/", Startup::$urlParts);
29+
return \implode ( "/", Startup::$urlParts );
3030
}
3131

3232
public static function getRouter() {
33-
return new Router();
33+
return new Router ();
3434
}
3535

3636
public static function getRequest() {
37-
return new URequest();
37+
return new URequest ();
3838
}
3939

4040
public static function getSession() {
41-
return new USession();
41+
return new USession ();
4242
}
4343

4444
public static function getCookies() {
45-
return new UCookie();
45+
return new UCookie ();
4646
}
4747

4848
public static function hasAdmin() {
49-
return \class_exists("controllers\Admin");
49+
return \class_exists ( "controllers\Admin" );
5050
}
5151
}
5252

0 commit comments

Comments
 (0)