Failed Conditions
Push — refactor/improve-static-analys... ( 8da3ef...a7b39f )
by Bas
09:53
created

Schema::getFacadeAccessor()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

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