Skip to content

Commit 4ea1fd2

Browse files
committed
Update
1 parent 3ef3f54 commit 4ea1fd2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Connection/Db.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function close()
7878
*/
7979
public function bind($bind, $value)
8080
{
81-
$this->parameters[sizeof($this->parameters)] = [":{$bind}",$value];
81+
$this->parameters[sizeof($this->parameters)] = [":{$bind}", $value];
8282
}
8383

8484
/**
@@ -94,7 +94,7 @@ public function bindMore($bind)
9494
if ( TypeCheck::isArray($bind) ) {
9595
$columns = Arrayify::keys($bind);
9696
foreach ($columns as $i => &$column) {
97-
$this->bind($column,$bind[$column]);
97+
$this->bind($column, $bind[$column]);
9898
}
9999
}
100100
}

src/Filesystem/File.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ public static function r($path, $inc = false, $context = null, $offset = 0)
461461
* @param string $append
462462
* @return bool
463463
*/
464-
public static function w($path, $input = '', $append = false)
464+
public static function w($path, $input = '', $append = false) : bool
465465
{
466466
$flag = 0;
467467
if ( $append ) {

0 commit comments

Comments
 (0)