diff options
author | Silvio <s1lv10@uol.com.br> | 2010-08-02 15:39:44 -0300 |
---|---|---|
committer | Silvio <s1lv10@uol.com.br> | 2010-08-02 15:39:44 -0300 |
commit | e7db3c2cb2325a773dd17650735740e0c57423e7 (patch) | |
tree | 53bdea89040cd6e0c194651e091a4dc007a632c2 /lib/sfIsisImporterStats.class.php | |
parent | de6ea6006bca5115d84e75dfdcd308caea5a9ffa (diff) | |
download | sf_isis_importer_plugin-e7db3c2cb2325a773dd17650735740e0c57423e7.tar.gz sf_isis_importer_plugin-e7db3c2cb2325a773dd17650735740e0c57423e7.tar.bz2 |
Coding style
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() + { } } |