Skip to content
This repository was archived by the owner on Mar 25, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/assignee.config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ numberOfReviewers: 1

reviewers:
- semyon492
- phakof

addAssignees: true

assignees:
- semyon492
- phakof

numberOfAssignees: 1

Expand Down
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ updates:
open-pull-requests-limit: 10
reviewers:
- semyon492
- phakof
assignees:
- semyon492
- phakof
labels:
- type:build
145 changes: 0 additions & 145 deletions .github/workflows/ci.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Tests

on: [ push, pull_request ]
on: [ push ]

jobs:
tests:
Expand Down
6 changes: 3 additions & 3 deletions tests/InsertTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public function testBuildInsertIgnoreSql(callable $cb)
{
$db = $this->databaseExpectedFromCallable($cb);

list($query) = $db->buildInsertQueryBoolSafe(
[$query] = $db->buildInsertQueryBoolSafe(
'test_table',
[
'foo' => 'bar',
Expand All @@ -123,7 +123,7 @@ public function testBuildInsertOnDuplicateKeyUpdate(callable $cb)
{
$db = $this->databaseExpectedFromCallable($cb);

list($query) = $db->buildInsertQueryBoolSafe(
[$query] = $db->buildInsertQueryBoolSafe(
'test_table',
[
'foo' => 'bar',
Expand All @@ -146,7 +146,7 @@ public function testBuildInsertOnDuplicateKeyUpdateMultiple(callable $cb)
{
$db = $this->databaseExpectedFromCallable($cb);

list($query) = $db->buildInsertQueryBoolSafe(
[$query] = $db->buildInsertQueryBoolSafe(
'test_table',
[
'foo' => 'bar',
Expand Down