Skip to content

Commit bfed397

Browse files
Merge pull request #17 from appwrite/dev
chore: update role helper class
2 parents 28c7b0d + f2d5523 commit bfed397

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Twitter Account](https://img.shields.io/twitter/follow/appwrite?color=00acee&label=twitter&style=flat-square)](https://twitter.com/appwrite)
77
[![Discord](https://img.shields.io/discord/564160730845151244?label=discord&style=flat-square)](https://appwrite.io/discord)
88

9-
**This SDK is compatible with Appwrite server version 1.0.0. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-php/releases).**
9+
**This SDK is compatible with Appwrite server version 1.0.x. For older versions, please check [previous releases](https://github.com/appwrite/sdk-for-php/releases).**
1010

1111
Appwrite is an open-source backend as a service server that abstract and simplify complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the PHP SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
1212

src/Appwrite/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class Client
4040
'x-sdk-name'=> 'PHP',
4141
'x-sdk-platform'=> 'server',
4242
'x-sdk-language'=> 'php',
43-
'x-sdk-version'=> '7.0.0',
43+
'x-sdk-version'=> '7.1.0',
4444
];
4545

4646
/**

src/Appwrite/Role.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,4 @@ public static function member(string $id): string
3737
{
3838
return "member:$id";
3939
}
40-
public static function status(string $status): string
41-
{
42-
return "status:$status";
43-
}
4440
}

0 commit comments

Comments
 (0)