Passed
Pull Request — master (#15)
by Wilmer
01:39
created

TableSchema::foreignKey()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
nc 1
nop 2
dl 0
loc 3
rs 10
c 1
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\Db\Oracle;
6
7
use Yiisoft\Db\Schema\TableSchema as AbstractTableSchema;
8
9
/**
10
 * TableSchema represents the metadata of a database table.
11
 */
12
final class TableSchema extends AbstractTableSchema
13
{
14
    private array $foreignKeys = [];
15
16
    /**
17
     * @return array foreign keys of this table. Each array element is of the following structure:
18
     *
19
     * ```php
20
     * [
21
     *  'ForeignTableName',
22
     *  'fk1' => 'pk1',  // pk1 is in foreign table
23
     *  'fk2' => 'pk2',  // if composite foreign key
24
     * ]
25
     * ```
26
     */
27
    public function getForeignKeys(): array
28
    {
29
        return $this->foreignKeys;
30
    }
31
32
    public function foreignKey(string $key, array $value): void
0 ignored issues
show
Unused Code introduced by
The parameter $key is not used and could be removed. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-unused  annotation

32
    public function foreignKey(/** @scrutinizer ignore-unused */ string $key, array $value): void

This check looks for parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
33
    {
34
        $this->foreignKeys[] = $value;
35
    }
36
37
    public function foreignKeys(array $value): void
38
    {
39
        $this->foreignKeys = $value;
40
    }
41
}
42