Passed
Push — next ( ed4ce4...be2ec6 )
by Bas
12:50
created

Schema::connection()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
ccs 0
cts 2
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace LaravelFreelancerNL\Aranguent\Facades;
4
5
use Closure;
6
use Illuminate\Support\Facades\Schema as IlluminateSchema;
7
use LaravelFreelancerNL\Aranguent\Schema\Builder;
8
9
/**
10
 * Table handling:
11
 * @method static Builder create($collection, Closure $callback, $options = [])
12
 * @method static Builder getAllTables()
13
 * @method static Builder drop(string $collection)
14
 * @method static Builder dropIfExists(string $collection)
15
 * @method static Builder dropAllTables()
16
 * @method static Builder table(string $table, \Closure $callback)
17
 * @method static Builder hasColumn(string $table, $column)
18
 *
19
 * View handling:
20
 * @method static Builder createView($name, array $properties, $type = 'arangosearch')
21
 * @method static Builder getView(string $name)
22
 * @method static Builder editView($name, array $properties)
23
 * @method static Builder renameView(string $from, string $to)
24
 * @method static Builder dropView(string $name)
25
 * @method static Builder dropAllViews()
26
 *
27
 * @see \LaravelFreelancerNL\Aranguent\Schema\Builder
28
 */
29
class Schema extends IlluminateSchema
30
{
31
}
32