summaryrefslogtreecommitdiff
path: root/ext/sqlite3/sqlite3.stub.php
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2020-09-16 21:27:01 +0200
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-09-16 21:27:01 +0200
commitde912821e0c2e154a4fca0479755c9e089b130b8 (patch)
treeec33aaeeb9265748863ff71a9e543cb56fe3d896 /ext/sqlite3/sqlite3.stub.php
parentc76910cd967f498065f50f17dcaad941792e8430 (diff)
downloadphp-git-de912821e0c2e154a4fca0479755c9e089b130b8.tar.gz
Display string default values in stubs more uniformly
Settling on using quoted string
Diffstat (limited to 'ext/sqlite3/sqlite3.stub.php')
-rw-r--r--ext/sqlite3/sqlite3.stub.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/sqlite3/sqlite3.stub.php b/ext/sqlite3/sqlite3.stub.php
index d2435051e1..132bd44cbb 100644
--- a/ext/sqlite3/sqlite3.stub.php
+++ b/ext/sqlite3/sqlite3.stub.php
@@ -5,10 +5,10 @@
class SQLite3
{
/** @alias SQLite3::open */
- public function __construct(string $filename, int $flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE, string $encryption_key = '') {}
+ public function __construct(string $filename, int $flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE, string $encryption_key = "") {}
/** @return void */
- public function open(string $filename, int $flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE, string $encryption_key = '') {}
+ public function open(string $filename, int $flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE, string $encryption_key = "") {}
/** @return bool */
public function close() {}