diff options
author | Silvio <silvio@devlet.com.br> | 2010-08-03 10:38:04 -0300 |
---|---|---|
committer | Silvio <silvio@devlet.com.br> | 2010-08-03 10:38:04 -0300 |
commit | 2e66a7279b67b35369da83cc4959edd5e957cae2 (patch) | |
tree | e0dc698fb076ff035a9940afada03bfc13770e8c | |
parent | ac89ccd27ccd781b0e8c7534f41838c1c6a7050a (diff) | |
download | cinisis-2e66a7279b67b35369da83cc4959edd5e957cae2.tar.gz cinisis-2e66a7279b67b35369da83cc4959edd5e957cae2.tar.bz2 |
Minor change
-rw-r--r-- | classes/IsisConnector.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/classes/IsisConnector.php b/classes/IsisConnector.php index 277412d..886246e 100644 --- a/classes/IsisConnector.php +++ b/classes/IsisConnector.php @@ -333,11 +333,13 @@ class IsisConnector { /** * Guess a method name from a type. * - * @param string $type Mapping type - * @return string Method name + * @param $type + * Mapping type. + * + * @return + * Method name. */ - static function methodName($type) - { + static function methodName($type) { return 'import'. ucfirst($type); } |