diff options
Diffstat (limited to 'lib/sfIsisImporterStats.class.php')
-rw-r--r-- | lib/sfIsisImporterStats.class.php | 12 |
1 files changed, 8 insertions, 4 deletions
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() + { } } |