Commit b67b91de by xmy
parents 7dc7d1bd d990ba99
...@@ -7,8 +7,18 @@ ...@@ -7,8 +7,18 @@
*/ */
namespace Hdll\Services\Buyer; namespace Hdll\Services\Buyer;
class Test { use Swoft\Core\ResultInterface;
public function test() {
echo 'buyer_test'; /**
} * @method ResultInterface deferGetUser(string $token)
* @method ResultInterface deferUpdateProfile(string $token, array $data)
* Interface BuyerInterface
* @package App\Lib
*/
interface BuyerInterface
{
public function getUser(string $token);
public function updateProfile(string $token, array $data);
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment