@@ -42,7 +42,7 @@ |
||
42 | 42 | { |
43 | 43 | throw new FormatException('invalid json response!'); |
44 | 44 | } |
45 | - $this->error_code = (isset($this->json['error']['code']))?$this->json['error']['code']:'undefined'; |
|
45 | + $this->error_code = (isset($this->json['error']['code'])) ? $this->json['error']['code'] : 'undefined'; |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | /** |
@@ -37,7 +37,7 @@ |
||
37 | 37 | * @param string $value |
38 | 38 | * @return string |
39 | 39 | */ |
40 | - public function sessionId($value=null) |
|
40 | + public function sessionId($value = null) |
|
41 | 41 | { |
42 | 42 | if ($value !== null) |
43 | 43 | { |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | * @param string $value |
43 | 43 | * @return string |
44 | 44 | */ |
45 | - public function sessionId($value=null) |
|
45 | + public function sessionId($value = null) |
|
46 | 46 | { |
47 | 47 | if ($value !== null) |
48 | 48 | { |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | * @param string $value |
59 | 59 | * @return string |
60 | 60 | */ |
61 | - public function id($value=null) |
|
61 | + public function id($value = null) |
|
62 | 62 | { |
63 | 63 | if ($value !== null) |
64 | 64 | { |
@@ -37,7 +37,7 @@ |
||
37 | 37 | * @param string $value |
38 | 38 | * @return string |
39 | 39 | */ |
40 | - public function id($value=null) |
|
40 | + public function id($value = null) |
|
41 | 41 | { |
42 | 42 | if ($value !== null) |
43 | 43 | { |
@@ -11,9 +11,9 @@ |
||
11 | 11 | * @param string $message |
12 | 12 | * @param Throwable $previous |
13 | 13 | */ |
14 | - public function __construct($message, \Exception $previous=null, $tracelog=false) |
|
14 | + public function __construct($message, \Exception $previous = null, $tracelog = false) |
|
15 | 15 | { |
16 | - Log::instance()->error($message.(($tracelog)?PHP_EOL.$this->getTraceAsString():null)); |
|
16 | + Log::instance()->error($message.(($tracelog) ?PHP_EOL.$this->getTraceAsString() : null)); |
|
17 | 17 | $code = 0; |
18 | 18 | parent::__construct($message, $code, $previous); |
19 | 19 | } |
@@ -42,7 +42,7 @@ |
||
42 | 42 | * @param string $value |
43 | 43 | * @return string |
44 | 44 | */ |
45 | - public function clientId($value=null) |
|
45 | + public function clientId($value = null) |
|
46 | 46 | { |
47 | 47 | if ($value !== null) |
48 | 48 | { |
@@ -37,7 +37,7 @@ |
||
37 | 37 | * @param string $value |
38 | 38 | * @return string |
39 | 39 | */ |
40 | - public function sessionId($value=null) |
|
40 | + public function sessionId($value = null) |
|
41 | 41 | { |
42 | 42 | if ($value !== null) |
43 | 43 | { |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | /** |
11 | 11 | * @var array |
12 | 12 | */ |
13 | - protected $jwt=array( |
|
13 | + protected $jwt = array( |
|
14 | 14 | 'using' => false, |
15 | 15 | 'UAPAY_pubkey' => '', |
16 | 16 | 'our_privkey' => '', |
@@ -27,21 +27,21 @@ discard block |
||
27 | 27 | if (isset($options['jwt'])) |
28 | 28 | { |
29 | 29 | // using |
30 | - if ( ! isset($options['jwt']['using'])) |
|
30 | + if (!isset($options['jwt']['using'])) |
|
31 | 31 | { |
32 | 32 | throw new Exception\Data('parameter jwt/using is not specified'); |
33 | 33 | } |
34 | - if ( ! is_bool($options['jwt']['using'])) |
|
34 | + if (!is_bool($options['jwt']['using'])) |
|
35 | 35 | { |
36 | 36 | throw new Exception\Data('parameter jwt/using is incorrect'); |
37 | 37 | } |
38 | 38 | // using |
39 | - if ( ! isset($options['jwt']['UAPAY_pubkey'])) |
|
39 | + if (!isset($options['jwt']['UAPAY_pubkey'])) |
|
40 | 40 | { |
41 | 41 | throw new Exception\Data('parameter jwt/UAPAY_pubkey is not specified'); |
42 | 42 | } |
43 | 43 | // using |
44 | - if ( ! isset($options['jwt']['our_privkey'])) |
|
44 | + if (!isset($options['jwt']['our_privkey'])) |
|
45 | 45 | { |
46 | 46 | throw new Exception\Data('parameter jwt/our_privkey is not specified'); |
47 | 47 | } |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | * |
38 | 38 | * @param array $jwt_options array of options |
39 | 39 | */ |
40 | - public function __construct($options=null) |
|
40 | + public function __construct($options = null) |
|
41 | 41 | { |
42 | 42 | $jo = new JWTOptions($options); |
43 | 43 | parent::__construct($this->get_http_raw_post_data(), $jo->get()); |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | */ |
59 | 59 | protected function get_http_raw_post_data() |
60 | 60 | { |
61 | - Log::instance()->add('callback request from ' . $_SERVER['REMOTE_ADDR']); |
|
61 | + Log::instance()->add('callback request from '.$_SERVER['REMOTE_ADDR']); |
|
62 | 62 | |
63 | 63 | $raw_request = file_get_contents('php://input'); |
64 | 64 | |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | |
84 | 84 | if ($this->jwt['using'] === true) |
85 | 85 | { |
86 | - if ( ! isset($this->json['token'])) |
|
86 | + if (!isset($this->json['token'])) |
|
87 | 87 | { |
88 | 88 | throw new Exception\JSON('json does not contain the token field!'); |
89 | 89 | } |