| Conditions | 3 |
| Paths | 4 |
| Total Lines | 16 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 60 | public function build() { |
||
| 61 | if (!$this->stream_socket_client) { |
||
| 62 | $this->stream_socket_client = new ClientStreamSocket( |
||
| 63 | $this->local_cert, |
||
| 64 | $this->passphrase, |
||
| 65 | $this->host, |
||
| 66 | $this->port |
||
| 67 | ); |
||
| 68 | } |
||
| 69 | |||
| 70 | if (!$this->batch_size) { |
||
| 71 | $this->batch_size = Client::FASTAPNS_BATCH_SIZE_DEFAULT; |
||
| 72 | } |
||
| 73 | |||
| 74 | return new Client($this->stream_socket_client, $this->batch_size); |
||
| 75 | } |
||
| 76 | } |
||
| 77 |