From e5ffccd4221f91f3d7c32075f08d98cb60a59dc1 Mon Sep 17 00:00:00 2001 From: pomaxa Date: Fri, 15 Jun 2012 17:56:19 +0300 Subject: [PATCH] fix indentation --- tests/Monolog/Handler/AmqpExchangeMock.php | 23 +++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/tests/Monolog/Handler/AmqpExchangeMock.php b/tests/Monolog/Handler/AmqpExchangeMock.php index 690ba078..2ed311ea 100644 --- a/tests/Monolog/Handler/AmqpExchangeMock.php +++ b/tests/Monolog/Handler/AmqpExchangeMock.php @@ -8,21 +8,22 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ + namespace Monolog\Handler; 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; + } } \ No newline at end of file