1: | <?php |
2: | /** |
3: | * This file is part of the PHPLucidFrame library. |
4: | * SchemaManager manages your database schema. |
5: | * |
6: | * @package PHPLucidFrame\Core |
7: | * @since PHPLucidFrame v 3.0.0 |
8: | * @copyright Copyright (c), PHPLucidFrame. |
9: | * @link http://phplucidframe.com |
10: | * @license http://www.opensource.org/licenses/mit-license.php MIT License |
11: | * This source file is subject to the MIT license that is bundled |
12: | * with this source code in the file LICENSE |
13: | */ |
14: | |
15: | namespace LucidFrame\Core; |
16: | |
17: | final class App |
18: | { |
19: | /** |
20: | * @var Database |
21: | */ |
22: | public static $db; |
23: | /** |
24: | * @var View |
25: | */ |
26: | public static $view; |
27: | /** |
28: | * @var string |
29: | */ |
30: | public static $page; |
31: | /** |
32: | * @var object |
33: | */ |
34: | public static $auth; |
35: | /** |
36: | * @var string|array |
37: | */ |
38: | public static $title; |
39: | } |
40: |