コード例 #1
0
ファイル: Profile.php プロジェクト: skht777/chatwork-php
 public function __construct(Client $client)
 {
     parent::__construct($client, 'me');
     $this->_information = new UserInformation($client, 'my');
     $this->_contacts = new UserContact($client, 'contacts');
     $this->_belongs = new UserBelong($client, 'rooms');
 }
コード例 #2
0
ファイル: Chat.php プロジェクト: skht777/chatwork-php
 public function __construct(Client $client)
 {
     parent::__construct($client, 'rooms');
 }