1 | <?php |
||
9 | class OracleBuilder extends Builder |
||
10 | { |
||
11 | /** |
||
12 | * Insert a new record and get the value of the primary key. |
||
13 | * |
||
14 | * @param array $values |
||
15 | * @param array $binaries |
||
16 | * @param string $sequence |
||
17 | * @return int |
||
18 | 6 | */ |
|
19 | public function insertLob(array $values, array $binaries, $sequence = 'id') |
||
33 | |||
34 | /** |
||
35 | * Update a new record with blob field. |
||
36 | * |
||
37 | * @param array $values |
||
38 | * @param array $binaries |
||
39 | * @param string $sequence |
||
40 | * @return bool |
||
41 | 6 | */ |
|
42 | public function updateLob(array $values, array $binaries, $sequence = 'id') |
||
58 | |||
59 | /** |
||
60 | * Add a "where in" clause to the query. |
||
61 | * Split one WHERE IN clause into multiple clauses each |
||
62 | * with up to 1000 expressions to avoid ORA-01795. |
||
63 | * |
||
64 | * @param string $column |
||
65 | * @param mixed $values |
||
66 | * @param string $boolean |
||
67 | * @param bool $not |
||
68 | * @return \Illuminate\Database\Query\Builder|\Yajra\Oci8\Query\OracleBuilder |
||
69 | 9 | */ |
|
70 | public function whereIn($column, $values, $boolean = 'and', $not = false) |
||
91 | |||
92 | /** |
||
93 | * Run the query as a "select" statement against the connection. |
||
94 | * |
||
95 | * @return array |
||
96 | 27 | */ |
|
97 | protected function runSelect() |
||
109 | |||
110 | /** |
||
111 | * Makes "from" fetch from a subquery. |
||
112 | * |
||
113 | * @param \Closure|\Illuminate\Database\Query\Builder|string $query |
||
114 | * @param string $as |
||
115 | * @return \Illuminate\Database\Query\Builder|static |
||
116 | * |
||
117 | * @throws \InvalidArgumentException |
||
118 | */ |
||
119 | public function fromSub($query, $as) |
||
125 | |||
126 | /** |
||
127 | * Add a subquery join clause to the query. |
||
128 | * |
||
129 | * @param \Closure|\Illuminate\Database\Query\Builder|string $query |
||
130 | * @param string $as |
||
131 | * @param \Closure|string $first |
||
132 | * @param string|null $operator |
||
133 | * @param string|null $second |
||
134 | * @param string $type |
||
135 | * @param bool $where |
||
136 | * @return \Illuminate\Database\Query\Builder|static |
||
137 | * |
||
138 | * @throws \InvalidArgumentException |
||
139 | */ |
||
140 | public function joinSub($query, $as, $first, $operator = null, $second = null, $type = 'inner', $where = false) |
||
150 | } |
||
151 |
This check marks access to variables or properties that have not been declared yet. While PHP has no explicit notion of declaring a variable, accessing it before a value is assigned to it is most likely a bug.