Add space between switch and ‘(‘

[MAILPOET-1791]
This commit is contained in:
Ján Mikláš
2019-02-13 12:54:08 +01:00
committed by M. Shull
parent ebbdec5ebd
commit a8972ca281
27 changed files with 43 additions and 43 deletions

View File

@ -63,7 +63,7 @@ class Services extends APIEndpoint {
return $this->successResponse(array('message' => $success_message));
}
switch($state) {
switch ($state) {
case Bridge::KEY_INVALID:
$error = __('Your MailPoet Sending Service key is invalid.', 'mailpoet');
break;
@ -128,7 +128,7 @@ class Services extends APIEndpoint {
);
}
switch($state) {
switch ($state) {
case Bridge::KEY_INVALID:
$error = __('Your Premium key is invalid.', 'mailpoet');
break;
@ -148,7 +148,7 @@ class Services extends APIEndpoint {
}
private function getErrorDescriptionByCode($code) {
switch($code) {
switch ($code) {
case Bridge::CHECK_ERROR_UNAVAILABLE:
$text = __('Service unavailable', 'mailpoet');
break;