Skip to content

Commit 3882ffe

Browse files
committed
Update stubs
1 parent 2361adf commit 3882ffe

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

stubs/ext/oci8/OCICollection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function assign(OCICollection $from)
3434
* @alias oci_collection_element_assign
3535
* @return bool
3636
*/
37-
public function assignelem(int $index, string $value)
37+
public function assignElem(int $index, string $value)
3838
{
3939
}
4040
/**

stubs/ext/oci8/OCILob.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function import(string $filename)
2020
* @alias oci_lob_import
2121
* @return bool
2222
*/
23-
public function savefile(string $filename)
23+
public function saveFile(string $filename)
2424
{
2525
}
2626
/**
@@ -111,21 +111,21 @@ public function flush(int $flag = 0) : bool
111111
* @alias ocisetbufferinglob
112112
* @return bool
113113
*/
114-
public function setbuffering(bool $mode)
114+
public function setBuffering(bool $mode)
115115
{
116116
}
117117
/**
118118
* @alias ocigetbufferinglob
119119
* @return bool
120120
*/
121-
public function getbuffering()
121+
public function getBuffering()
122122
{
123123
}
124124
/**
125125
* @alias oci_lob_export
126126
* @return bool
127127
*/
128-
public function writetofile(string $filename, ?int $offset = null, ?int $length = null)
128+
public function writeToFile(string $filename, ?int $offset = null, ?int $length = null)
129129
{
130130
}
131131
/**
@@ -136,7 +136,7 @@ public function export(string $filename, ?int $offset = null, ?int $length = nul
136136
{
137137
}
138138
/** @return bool */
139-
public function writetemporary(string $data, int $type = OCI_TEMP_CLOB)
139+
public function writeTemporary(string $data, int $type = OCI_TEMP_CLOB)
140140
{
141141
}
142142
/** @return bool */

0 commit comments

Comments
 (0)