25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

JPushException.php 162 B

3 yıl önce
123456789
  1. <?php
  2. namespace JPush\Exceptions;
  3. class JPushException extends \Exception {
  4. function __construct($message) {
  5. parent::__construct($message);
  6. }
  7. }