Skip to content

Commit fd74c74

Browse files
Merge remote-tracking branch 'upstream/3.x' into var_object
2 parents 9a96110 + 76568b8 commit fd74c74

29 files changed

Lines changed: 11315 additions & 599 deletions

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ jobs:
1616

1717
- name: Run CodeQL
1818
run: |
19-
docker run --rm -v $PWD:/app composer sh -c \
19+
docker run --rm -v $PWD:/app -w /app phpswoole/swoole:5.1.8-php8.3-alpine sh -c \
2020
"composer install --profile --ignore-platform-reqs && composer check"

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ jobs:
1616

1717
- name: Run Linter
1818
run: |
19-
docker run --rm -v $PWD:/app composer sh -c \
19+
docker run --rm -v $PWD:/app -w /app phpswoole/swoole:5.1.8-php8.3-alpine sh -c \
2020
"composer install --profile --ignore-platform-reqs && composer lint"

bin/cli.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
include 'tasks/index.php';
1414
include 'tasks/query.php';
1515
include 'tasks/relationships.php';
16+
include 'tasks/operators.php';
1617

1718
$cli
1819
->error()

bin/operators

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
3+
php /usr/src/code/bin/cli.php operators "$@"

0 commit comments

Comments
 (0)