Skip to content

Commit f50f758

Browse files
authored
Merge pull request joelbutcher#6 from joelbutcher/analysis-LZw6Pn
Apply fixes from StyleCI
2 parents 5494e02 + 1630d18 commit f50f758

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

src/Application.php

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,12 @@ public function unserialize($serialized)
107107

108108
$this->__construct($id, $secret);
109109
}
110-
111-
public function __serialize() {}
112-
public function __unserialize(array $data) {}
110+
111+
public function __serialize()
112+
{
113+
}
114+
115+
public function __unserialize(array $data)
116+
{
117+
}
113118
}

src/Exception/ResponseException.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public static function create(Response $response)
8282
case 464:
8383
case 467:
8484
return new static($response, new AuthenticationException($message, $code));
85-
// Video upload resumable error
85+
// Video upload resumable error
8686
case 1363030:
8787
case 1363019:
8888
case 1363037:
@@ -100,20 +100,20 @@ public static function create(Response $response)
100100
case 190:
101101
return new static($response, new AuthenticationException($message, $code));
102102

103-
// Server issue, possible downtime
103+
// Server issue, possible downtime
104104
case 1:
105105
case 2:
106106
return new static($response, new ServerException($message, $code));
107107

108-
// API Throttling
108+
// API Throttling
109109
case 4:
110110
case 17:
111111
case 32:
112112
case 341:
113113
case 613:
114114
return new static($response, new ThrottleException($message, $code));
115115

116-
// Duplicate Post
116+
// Duplicate Post
117117
case 506:
118118
return new static($response, new ClientException($message, $code));
119119
}

src/FileUpload/Mimetypes.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -948,6 +948,7 @@ class Mimetypes
948948
* Get a singleton instance of the class.
949949
*
950950
* @return self
951+
*
951952
* @codeCoverageIgnore
952953
*/
953954
public static function getInstance()

0 commit comments

Comments
 (0)