1 | <?php namespace jlourenco\support\Database; |
||
5 | class Schema extends Facade |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * Get a schema builder instance for a connection. |
||
10 | * |
||
11 | * @param string $name |
||
12 | * @return \Illuminate\Database\Schema\Builder |
||
13 | */ |
||
14 | public static function connection($name) |
||
19 | |||
20 | /** |
||
21 | * Get a schema builder. |
||
22 | * |
||
23 | * @return \Illuminate\Database\Schema\Builder |
||
24 | */ |
||
25 | protected static function getFacadeAccessor() |
||
30 | |||
31 | /** |
||
32 | * Boot system by calling our custom Grammar |
||
33 | * |
||
34 | * @param object $connection \Illuminate\Database\Connection |
||
35 | * @return \Illuminate\Database\Schema\Builder |
||
36 | */ |
||
37 | protected static function useCustomGrammar($connection) |
||
52 | |||
53 | } |