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)
107
107
108
108
$ this ->__construct ($ id , $ secret );
109
109
}
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
+ }
113
118
}
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ public static function create(Response $response)
82
82
case 464 :
83
83
case 467 :
84
84
return new static ($ response , new AuthenticationException ($ message , $ code ));
85
- // Video upload resumable error
85
+ // Video upload resumable error
86
86
case 1363030 :
87
87
case 1363019 :
88
88
case 1363037 :
@@ -100,20 +100,20 @@ public static function create(Response $response)
100
100
case 190 :
101
101
return new static ($ response , new AuthenticationException ($ message , $ code ));
102
102
103
- // Server issue, possible downtime
103
+ // Server issue, possible downtime
104
104
case 1 :
105
105
case 2 :
106
106
return new static ($ response , new ServerException ($ message , $ code ));
107
107
108
- // API Throttling
108
+ // API Throttling
109
109
case 4 :
110
110
case 17 :
111
111
case 32 :
112
112
case 341 :
113
113
case 613 :
114
114
return new static ($ response , new ThrottleException ($ message , $ code ));
115
115
116
- // Duplicate Post
116
+ // Duplicate Post
117
117
case 506 :
118
118
return new static ($ response , new ClientException ($ message , $ code ));
119
119
}
Original file line number Diff line number Diff line change @@ -948,6 +948,7 @@ class Mimetypes
948
948
* Get a singleton instance of the class.
949
949
*
950
950
* @return self
951
+ *
951
952
* @codeCoverageIgnore
952
953
*/
953
954
public static function getInstance ()
You can’t perform that action at this time.
0 commit comments