コード例 #1
0
 public function setUp()
 {
     parent::setUp();
     $this->endpoint .= '/push';
     $this->resource = '/notifications';
     $this->endpointClass = NotificationsEndpoint::class;
 }
コード例 #2
0
 public function setUp()
 {
     parent::setUp();
     $this->endpoint .= '/deploy';
     $this->resource = '/channels';
     $this->endpointClass = ChannelsEndpoint::class;
 }
コード例 #3
0
 public function setUp()
 {
     parent::setUp();
     $this->endpoint .= '/deploy';
     $this->resource = '/snapshots';
     $this->endpointClass = SnapshotsEndpoint::class;
 }
コード例 #4
0
 public function setUp()
 {
     parent::setUp();
     $this->endpoint .= '/push';
     $this->resource = '/messages';
     $this->endpointClass = MessagesEndpoint::class;
 }
コード例 #5
0
 public function setUp()
 {
     parent::setUp();
     $this->endpoint .= '/push';
     $this->resource = '/tokens';
     $this->endpointClass = TokensEndpoint::class;
 }
コード例 #6
0
 public function setUp()
 {
     parent::setUp();
     $this->resource = '/users';
     $this->endpointClass = UsersEndpoint::class;
 }
コード例 #7
0
 public function setUp()
 {
     parent::setUp();
     $this->deploy = new DeployEndpoint($this->client->reveal(), 'http://api.fakeserver.com');
 }
コード例 #8
0
 public function setUp()
 {
     parent::setUp();
     $this->push = new PushEndpoint($this->client->reveal(), 'http://api.fakeserver.com');
 }