Passed
Push — master ( e3b573...48db62 )
by Dmitry
01:54
created
src/ErrorResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
src/Orders/Create/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
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
         {
Please login to merge, or discard this patch.
src/Orders/Cancel/Request.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         {
Please login to merge, or discard this patch.
src/Orders/Show/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
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
         {
Please login to merge, or discard this patch.
src/Exception/General.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,9 +11,9 @@
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Sessions/Create/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
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
         {
Please login to merge, or discard this patch.
src/Reports/Client/Request.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
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
         {
Please login to merge, or discard this patch.
src/JWTOptions.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
src/Request.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
     /**
17 17
      *      @var array
18 18
      */
19
-    protected $jwt=array(
19
+    protected $jwt = array(
20 20
         'using'         => false,
21 21
         'UAPAY_pubkey'  => '',
22 22
         'our_privkey'   => '',
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     public function __construct($options)
37 37
     {
38 38
         // api_url
39
-        if ( ! isset($options['api_uri']))
39
+        if (!isset($options['api_uri']))
40 40
         {
41 41
             throw new Exception\Data('parameter api_uri is not specified');
42 42
         }
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      *      @param array $value
58 58
      *      @return array
59 59
      */
60
-    public function data($value=null)
60
+    public function data($value = null)
61 61
     {
62 62
         if ($value !== null)
63 63
         {
@@ -73,9 +73,9 @@  discard block
 block discarded – undo
73 73
      *      @param mixed $value
74 74
      *      @return string
75 75
      */
76
-    protected function as_string($value=null)
76
+    protected function as_string($value = null)
77 77
     {
78
-        return (is_scalar($value))?((is_bool($value))?(($value)?'true':'false'):"$value"):null;
78
+        return (is_scalar($value)) ? ((is_bool($value)) ? (($value) ? 'true' : 'false') : "$value") : null;
79 79
     }
80 80
 
81 81
     /**
@@ -84,9 +84,9 @@  discard block
 block discarded – undo
84 84
      *      @param mixed $value
85 85
      *      @return integer
86 86
      */
87
-    protected function as_int($value=null)
87
+    protected function as_int($value = null)
88 88
     {
89
-        return (is_int($value))?$value:null;
89
+        return (is_int($value)) ? $value : null;
90 90
     }
91 91
 
92 92
     /**
@@ -95,9 +95,9 @@  discard block
 block discarded – undo
95 95
      *      @param mixed $value
96 96
      *      @return array
97 97
      */
98
-    protected function as_array($value=null)
98
+    protected function as_array($value = null)
99 99
     {
100
-        return (is_array($value))?$value:null;
100
+        return (is_array($value)) ? $value : null;
101 101
     }
102 102
 
103 103
     /**
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
     protected function own_private_key()
171 171
     {
172 172
         // check private key file
173
-        if ( ! file_exists($this->jwt['our_privkey']))
173
+        if (!file_exists($this->jwt['our_privkey']))
174 174
         {
175 175
             throw new Exception\Runtime('The file with the private key was not find!');
176 176
         }
Please login to merge, or discard this patch.