Completed
Pull Request — master (#5)
by frey
04:43
created
src/Suite/Suite.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@
 block discarded – undo
23 23
     /**
24 24
      * Create an instance of the EntWeChat for the given authorizer.
25 25
      *
26
-     * @param string $corpId        Authorizer CorpId
27 26
      * @param string $permanentCode Authorizer permanent-code
28 27
      *
29 28
      * @return \EntWeChat\Foundation\Application
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,8 +31,8 @@
 block discarded – undo
31 31
     public function createAuthorizerApplication($authorizerCorpId, $permanentCode)
32 32
     {
33 33
         $this->fetch('authorization')
34
-             ->setAuthorizerCorpId($authorizerCorpId)
35
-             ->setAuthorizerPermanentCode($permanentCode);
34
+                ->setAuthorizerCorpId($authorizerCorpId)
35
+                ->setAuthorizerPermanentCode($permanentCode);
36 36
 
37 37
         $application                 = $this->fetch('app');
38 38
         $application['access_token'] = $this->fetch('authorizer_access_token');
Please login to merge, or discard this patch.
src/User/Department.php 1 patch
Doc Comments   +4 added lines, -6 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
      * @param int|null $order
23 23
      * @param int|null $partyId
24 24
      *
25
-     * @return int
25
+     * @return \EntWeChat\Support\Collection
26 26
      */
27 27
     public function create($name, $parentId, $order = null, $partyId = null)
28 28
     {
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     /**
40 40
      * List all Departments.
41 41
      *
42
-     * @return array
42
+     * @return \EntWeChat\Support\Collection
43 43
      */
44 44
     public function lists($partyId = null)
45 45
     {
@@ -54,9 +54,8 @@  discard block
 block discarded – undo
54 54
      * Update a Department.
55 55
      *
56 56
      * @param int   $partyId
57
-     * @param array $name
58 57
      *
59
-     * @return bool
58
+     * @return \EntWeChat\Support\Collection
60 59
      */
61 60
     public function update($partyId, array $partyInfo = [])
62 61
     {
@@ -68,9 +67,8 @@  discard block
 block discarded – undo
68 67
     /**
69 68
      * Delete Department.
70 69
      *
71
-     * @param int $groupId
72 70
      *
73
-     * @return bool
71
+     * @return \EntWeChat\Support\Collection
74 72
      */
75 73
     public function delete($partyId)
76 74
     {
Please login to merge, or discard this patch.
src/Support/Url.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@
 block discarded – undo
20 20
 
21 21
         $protocol = (!empty($_SERVER['HTTPS'])
22 22
             && $_SERVER['HTTPS'] !== 'off'
23
-            || (int)$_SERVER['SERVER_PORT'] === 443) ? 'https://' : 'http://';
23
+            || (int) $_SERVER['SERVER_PORT'] === 443) ? 'https://' : 'http://';
24 24
 
25
-        return $protocol . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
25
+        return $protocol.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
26 26
     }
27 27
 }
Please login to merge, or discard this patch.
src/Support/Traits/PrefixedContainer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     {
58 58
         $className = basename(str_replace('\\', '/', static::class));
59 59
 
60
-        $name = Str::snake($className) . '.' . $key;
60
+        $name = Str::snake($className).'.'.$key;
61 61
 
62 62
         return $this->container->offsetGet($name);
63 63
     }
Please login to merge, or discard this patch.
src/Support/Arr.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -76,9 +76,9 @@  discard block
 block discarded – undo
76 76
 
77 77
         foreach ($array as $key => $value) {
78 78
             if (is_array($value)) {
79
-                $results = array_merge($results, static::dot($value, $prepend . $key . '.'));
79
+                $results = array_merge($results, static::dot($value, $prepend.$key.'.'));
80 80
             } else {
81
-                $results[$prepend . $key] = $value;
81
+                $results[$prepend.$key] = $value;
82 82
             }
83 83
         }
84 84
 
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
      */
96 96
     public static function except($array, $keys)
97 97
     {
98
-        return array_diff_key($array, array_flip((array)$keys));
98
+        return array_diff_key($array, array_flip((array) $keys));
99 99
     }
100 100
 
101 101
     /**
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
         foreach (explode('.', $key) as $segment) {
114 114
             $results = [];
115 115
             foreach ($array as $value) {
116
-                $value     = (array)$value;
116
+                $value     = (array) $value;
117 117
                 $results[] = $value[$segment];
118 118
             }
119 119
             $array = array_values($results);
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
         $return = [];
169 169
         array_walk_recursive(
170 170
             $array,
171
-            function ($x) use (&$return) {
171
+            function($x) use (&$return) {
172 172
                 $return[] = $x;
173 173
             }
174 174
         );
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
     {
187 187
         $original = &$array;
188 188
 
189
-        foreach ((array)$keys as $key) {
189
+        foreach ((array) $keys as $key) {
190 190
             $parts = explode('.', $key);
191 191
             while (count($parts) > 1) {
192 192
                 $part = array_shift($parts);
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
      */
240 240
     public static function only($array, $keys)
241 241
     {
242
-        return array_intersect_key($array, array_flip((array)$keys));
242
+        return array_intersect_key($array, array_flip((array) $keys));
243 243
     }
244 244
 
245 245
     /**
Please login to merge, or discard this patch.
src/Support/Str.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -142,14 +142,14 @@
 block discarded – undo
142 142
      */
143 143
     public static function snake($value, $delimiter = '_')
144 144
     {
145
-        $key = $value . $delimiter;
145
+        $key = $value.$delimiter;
146 146
 
147 147
         if (isset(static::$snakeCache[$key])) {
148 148
             return static::$snakeCache[$key];
149 149
         }
150 150
 
151 151
         if (!ctype_lower($value)) {
152
-            $value = strtolower(preg_replace('/(.)(?=[A-Z])/', '$1' . $delimiter, $value));
152
+            $value = strtolower(preg_replace('/(.)(?=[A-Z])/', '$1'.$delimiter, $value));
153 153
         }
154 154
 
155 155
         return static::$snakeCache[$key] = $value;
Please login to merge, or discard this patch.
src/Support/XML.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
         $result = null;
85 85
 
86 86
         if (is_object($obj)) {
87
-            $obj = (array)$obj;
87
+            $obj = (array) $obj;
88 88
         }
89 89
 
90 90
         if (is_array($obj)) {
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
             $xml .= "<{$key}{$attr}>";
126 126
 
127 127
             if ((is_array($val) || is_object($val))) {
128
-                $xml .= self::data2Xml((array)$val, $item, $id);
128
+                $xml .= self::data2Xml((array) $val, $item, $id);
129 129
             } else {
130 130
                 $xml .= is_numeric($val) ? $val : self::cdata($val);
131 131
             }
Please login to merge, or discard this patch.
src/Suite/Authorization.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 
9 9
 class Authorization
10 10
 {
11
-    const CACHE_KEY_ACCESS_TOKEN  = 'EntWeChat.suite.authorizer_access_token';
11
+    const CACHE_KEY_ACCESS_TOKEN = 'EntWeChat.suite.authorizer_access_token';
12 12
     const CACHE_KEY_PERMANENT_CODE = 'EntWeChat.suite.authorizer_permanent_code';
13 13
 
14 14
     /**
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
      */
83 83
     public function getAuthorizerAccessTokenKey()
84 84
     {
85
-        return self::CACHE_KEY_ACCESS_TOKEN . $this->suiteId . $this->getAuthorizerCorpId();
85
+        return self::CACHE_KEY_ACCESS_TOKEN.$this->suiteId.$this->getAuthorizerCorpId();
86 86
     }
87 87
 
88 88
     /**
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
      */
147 147
     public function getAuthorizerPermanentCodeKey()
148 148
     {
149
-        return self::CACHE_KEY_PERMANENT_CODE . $this->suiteId . $this->getAuthorizerCorpId();
149
+        return self::CACHE_KEY_PERMANENT_CODE.$this->suiteId.$this->getAuthorizerCorpId();
150 150
     }
151 151
 
152 152
     /**
Please login to merge, or discard this patch.
src/Suite/AccessToken.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
         $token = $http->parseJSON($http->json(self::API_TOKEN_GET, $data));
63 63
 
64 64
         if (empty($token[$this->tokenJsonKey])) {
65
-            throw new HttpException('Request SuiteAccessToken fail. response: ' . json_encode($token, JSON_UNESCAPED_UNICODE));
65
+            throw new HttpException('Request SuiteAccessToken fail. response: '.json_encode($token, JSON_UNESCAPED_UNICODE));
66 66
         }
67 67
 
68 68
         return $token;
Please login to merge, or discard this patch.