diff options
Diffstat (limited to 'classes')
-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); } |