Skip to content

Commit d2260f6

Browse files
authored
Merge pull request #46 from appwrite/dev
feat: PHP SDK update for version 17.1.0
2 parents d09767f + 21d7a0f commit d2260f6

18 files changed

+41
-27
lines changed

docs/examples/databases/create-line-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ $result = $databases->createLineAttribute(
1515
collectionId: '<COLLECTION_ID>',
1616
key: '',
1717
required: false,
18-
default: [[1,2], [3, 4]] // optional
18+
default: [[1, 2], [3, 4], [5, 6]] // optional
1919
);

docs/examples/databases/create-point-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ $result = $databases->createPointAttribute(
1515
collectionId: '<COLLECTION_ID>',
1616
key: '',
1717
required: false,
18-
default: [[1,2], [3, 4]] // optional
18+
default: [1, 2] // optional
1919
);

docs/examples/databases/create-polygon-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ $result = $databases->createPolygonAttribute(
1515
collectionId: '<COLLECTION_ID>',
1616
key: '',
1717
required: false,
18-
default: [[1,2], [3, 4]] // optional
18+
default: [[[1, 2], [3, 4], [5, 6], [1, 2]]] // optional
1919
);

docs/examples/databases/update-line-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ $result = $databases->updateLineAttribute(
1515
collectionId: '<COLLECTION_ID>',
1616
key: '',
1717
required: false,
18-
default: [[1,2], [3, 4]], // optional
18+
default: [[1, 2], [3, 4], [5, 6]], // optional
1919
newKey: '' // optional
2020
);

docs/examples/databases/update-point-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ $result = $databases->updatePointAttribute(
1515
collectionId: '<COLLECTION_ID>',
1616
key: '',
1717
required: false,
18-
default: [[1,2], [3, 4]], // optional
18+
default: [1, 2], // optional
1919
newKey: '' // optional
2020
);

docs/examples/databases/update-polygon-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ $result = $databases->updatePolygonAttribute(
1515
collectionId: '<COLLECTION_ID>',
1616
key: '',
1717
required: false,
18-
default: [[1,2], [3, 4]], // optional
18+
default: [[[1, 2], [3, 4], [5, 6], [1, 2]]], // optional
1919
newKey: '' // optional
2020
);

docs/examples/tablesdb/create-line-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ $result = $tablesDB->createLineColumn(
1515
tableId: '<TABLE_ID>',
1616
key: '',
1717
required: false,
18-
default: [[1,2], [3, 4]] // optional
18+
default: [[1, 2], [3, 4], [5, 6]] // optional
1919
);

docs/examples/tablesdb/create-point-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ $result = $tablesDB->createPointColumn(
1515
tableId: '<TABLE_ID>',
1616
key: '',
1717
required: false,
18-
default: [[1,2], [3, 4]] // optional
18+
default: [1, 2] // optional
1919
);

docs/examples/tablesdb/create-polygon-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ $result = $tablesDB->createPolygonColumn(
1515
tableId: '<TABLE_ID>',
1616
key: '',
1717
required: false,
18-
default: [[1,2], [3, 4]] // optional
18+
default: [[[1, 2], [3, 4], [5, 6], [1, 2]]] // optional
1919
);

docs/examples/tablesdb/update-line-column.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ $result = $tablesDB->updateLineColumn(
1515
tableId: '<TABLE_ID>',
1616
key: '',
1717
required: false,
18-
default: [[1,2], [3, 4]], // optional
18+
default: [[1, 2], [3, 4], [5, 6]], // optional
1919
newKey: '' // optional
2020
);

0 commit comments

Comments
 (0)