Răsfoiți Sursa

fix indentation

pomaxa 13 ani în urmă
părinte
comite
e5ffccd422
1 a modificat fișierele cu 12 adăugiri și 11 ștergeri
  1. 12 11
      tests/Monolog/Handler/AmqpExchangeMock.php

+ 12 - 11
tests/Monolog/Handler/AmqpExchangeMock.php

@@ -8,21 +8,22 @@
  * For the full copyright and license information, please view the LICENSE
  * For the full copyright and license information, please view the LICENSE
  * file that was distributed with this source code.
  * file that was distributed with this source code.
  */
  */
+
 namespace Monolog\Handler;
 namespace Monolog\Handler;
 
 
 class MockAMQPExchange extends \AMQPExchange
 class MockAMQPExchange extends \AMQPExchange
 {
 {
-public function __construct()
-{
-}
+    public function __construct()
+    {
+    }
 
 
-public function publish($message, $routing_key, $params = 0, $attributes = array())
-{
-return true;
-}
+    public function publish($message, $routing_key, $params = 0, $attributes = array())
+    {
+        return true;
+    }
 
 
-public function setName($name)
-{
-return true;
-}
+    public function setName($name)
+    {
+        return true;
+    }
 }
 }