Skip to content

Commit df3909e

Browse files
committed
coding style
1 parent a561254 commit df3909e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Database/Table/IRow.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ function related(string $key, string $throughColumn = null): GroupedSelection;
4040
/**
4141
* Returns referenced row.
4242
*/
43-
function ref(string $key, string $throughColumn = null): ?IRow;
43+
function ref(string $key, string $throughColumn = null): ?self;
4444
}

src/Database/Table/SqlBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ public function getParameters(): array
244244
}
245245

246246

247-
public function importConditions(SqlBuilder $builder): void
247+
public function importConditions(self $builder): void
248248
{
249249
$this->where = $builder->where;
250250
$this->joinCondition = $builder->joinCondition;

0 commit comments

Comments
 (0)