1 | <?php namespace Arcanesoft\Blog; |
||
12 | class Blog |
||
13 | { |
||
14 | /* ----------------------------------------------------------------- |
||
15 | | Properties |
||
16 | | ----------------------------------------------------------------- |
||
17 | */ |
||
18 | /** |
||
19 | * Indicates if migrations will be run. |
||
20 | * |
||
21 | * @var bool |
||
22 | */ |
||
23 | public static $runsMigrations = true; |
||
24 | |||
25 | /* ----------------------------------------------------------------- |
||
26 | | Main Methods |
||
27 | | ----------------------------------------------------------------- |
||
28 | */ |
||
29 | /** |
||
30 | * Publish the migrations. |
||
31 | */ |
||
32 | public static function publishMigrations() |
||
36 | |||
37 | /** |
||
38 | * Register the public blog routes. |
||
39 | */ |
||
40 | public static function routes() |
||
52 | } |
||
53 |