Comply with PSR-2 on intentional fall-through in non-empty case.

This commit is contained in:
Daniele Alessandri
2014-07-27 20:56:21 +02:00
parent 78ec22563a
commit fff303a03b
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -123,6 +123,7 @@ class Consumer extends AbstractConsumer
}
// The missing break here is intentional as we must process
// subscriptions and unsubscriptions as standard messages.
// no break
case self::MESSAGE:
return (object) array(
@@ -909,6 +909,7 @@ class MultiExecTest extends PredisTestCase
case 'UNWATCH':
$watch = false;
// no break
default:
return $multi ? new Response\Status('QUEUED') : 'DUMMY_RESPONSE';