Skip to content

Commit 26cede4

Browse files
committed
[ci skip] fix indent
1 parent 9d8642b commit 26cede4

File tree

6 files changed

+41
-36
lines changed

6 files changed

+41
-36
lines changed

.devcontainer/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ RUN apt-get update \
99
ENV LANGUAGE ""
1010
ENV LANG "en_US.UTF-8"
1111
ENV LC_ALL "C"
12-
ENV PDO_PGSQL_TEST_DSN "pgsql:host=pgsql port=5432 dbname=test user=test password=test"

.devcontainer/compose.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ services:
1111
tty: true
1212
depends_on:
1313
- pgsql
14+
environment:
15+
PDO_PGSQL_TEST_DSN: "pgsql:host=pgsql port=5432 dbname=test user=test password=test"
1416
pgsql:
1517
image: postgres
1618
environment:

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
},
1313
"dockerComposeFile": "compose.yaml",
1414
"service": "shell"
15-
}
15+
}

.devcontainer/local/devcontainer.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@
1313
"dockerComposeFile": "./../compose.yaml",
1414
"service": "shell",
1515
"mounts": [
16-
{"type": "bind", "source": "./../", "target": "/workspace/php-src"}
16+
{
17+
"type": "bind",
18+
"source": "./../",
19+
"target": "/workspace/php-src"
20+
}
1721
],
1822
"workspaceFolder": "/workspace/php-src"
19-
}
23+
}

.vscode/c_cpp_properties.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
2-
"configurations": [
3-
{
4-
"name": "Linux",
5-
"includePath": [
6-
"${workspaceFolder}/**",
7-
"/workspace/php-src",
8-
"/workspace/php-src/TSRM",
9-
"/workspace/php-src/Zend",
10-
"/workspace/php-src/ext",
11-
"/workspace/php-src/main",
12-
"/workspace/php-src/sapi"
13-
],
14-
"defines": [],
15-
"compilerPath": "/usr/bin/gcc",
16-
"cStandard": "c99"
17-
}
18-
],
19-
"version": 4
20-
}
2+
"configurations": [
3+
{
4+
"name": "Linux",
5+
"includePath": [
6+
"${workspaceFolder}/**",
7+
"/workspace/php-src",
8+
"/workspace/php-src/TSRM",
9+
"/workspace/php-src/Zend",
10+
"/workspace/php-src/ext",
11+
"/workspace/php-src/main",
12+
"/workspace/php-src/sapi"
13+
],
14+
"defines": [],
15+
"compilerPath": "/usr/bin/gcc",
16+
"cStandard": "c99"
17+
}
18+
],
19+
"version": 4
20+
}

.vscode/settings.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"files.associations": {
3-
"*.phpt": "php",
4-
"*.c": "c",
5-
"*.h": "c",
6-
"*.cpp": "cpp",
7-
"*.cc": "cpp",
8-
"*.cxx": "cpp",
9-
"*.hpp": "cpp",
10-
},
11-
"editor.tabSize": 4,
12-
"editor.insertSpaces": false,
13-
"editor.detectIndentation": false
14-
}
2+
"files.associations": {
3+
"*.phpt": "php",
4+
"*.c": "c",
5+
"*.h": "c",
6+
"*.cpp": "cpp",
7+
"*.cc": "cpp",
8+
"*.cxx": "cpp",
9+
"*.hpp": "cpp",
10+
},
11+
"editor.tabSize": 4,
12+
"editor.insertSpaces": false,
13+
"editor.detectIndentation": false
14+
}

0 commit comments

Comments
 (0)