Skip to content

Commit 64b54cc

Browse files
author
Grigorii Duca
authored
Merge pull request #3 from greg-md/analysis-z4974G
Applied fixes from StyleCI
2 parents cf65b71 + f707aba commit 64b54cc

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/Driver/Mysql/Query/MysqlDeleteQuery.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ class MysqlDeleteQuery extends DeleteQuery
88
{
99
use MysqlClauseSupportTrait;
1010
}
11-

src/RowTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public function first(callable $callable = null)
106106

107107
public function firstWhere($column, $value)
108108
{
109-
return $this->first(function($item) use ($column, $value) {
109+
return $this->first(function ($item) use ($column, $value) {
110110
return $item[$column] == $value;
111111
});
112112
}

0 commit comments

Comments
 (0)