for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the dingtalk.
* User: Ilham Tahir <[email protected]>
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Aplisin\DingTalk\User;
use Aplisin\DingTalk\Kernel\BaseClient;
class Client extends BaseClient
{
* @param array $params
* @return \Aplisin\DingTalk\Kernel\Http\Response
* @throws \GuzzleHttp\Exception\GuzzleException
public function simpleList(array $params)
return $this->httpGet('/user/simplelist', $params);
return $this->httpGet('/...r/simplelist', $params)
Aplisin\DingTalk\Kernel\Support\Collection|array
Aplisin\DingTalk\Kernel\Http\Response
}