File tree Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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 ()
You can’t perform that action at this time.
0 commit comments