From e7db3c2cb2325a773dd17650735740e0c57423e7 Mon Sep 17 00:00:00 2001 From: Silvio Date: Mon, 2 Aug 2010 15:39:44 -0300 Subject: Coding style --- lib/sfIsisImporterStats.class.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'lib/sfIsisImporterStats.class.php') diff --git a/lib/sfIsisImporterStats.class.php b/lib/sfIsisImporterStats.class.php index d7dae34..54789ab 100644 --- a/lib/sfIsisImporterStats.class.php +++ b/lib/sfIsisImporterStats.class.php @@ -45,7 +45,8 @@ class sfIsisImporterStats * * @param string $name Name */ - public function soundex($name) { + public function soundex($name) + { $this->stats['sounded'][soundex($name)] = $name; } @@ -54,7 +55,8 @@ class sfIsisImporterStats * * @param string $name Name */ - public function metaphone($name) { + public function metaphone($name) + { $this->stats['sounded'][metaphone($name)] = $name; } @@ -63,7 +65,8 @@ class sfIsisImporterStats * * @param string $name Name */ - public function similar($name) { + public function similar($name) + { $this->soundex($name); $this->metaphone($name); } @@ -73,6 +76,7 @@ class sfIsisImporterStats * * @todo Write and test */ - public function display() { + public function display() + { } } -- cgit v1.2.3