Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsgiehl <stefan@piwik.org>2013-07-06 20:00:00 +0400
committersgiehl <stefan@piwik.org>2013-07-06 20:00:00 +0400
commitbfd7e1fa5d0df717d7e715a99cd741d76229f7d4 (patch)
tree88bb71abcb142612013781d0f3915734cb2dce7e /plugins/MobileMessaging
parent1f787b2c435d7e5b2e33d2aeffa821eccb546bf7 (diff)
fixed several doc blocks
Diffstat (limited to 'plugins/MobileMessaging')
-rw-r--r--plugins/MobileMessaging/API.php3
-rw-r--r--plugins/MobileMessaging/SMSProvider.php1
2 files changed, 4 insertions, 0 deletions
diff --git a/plugins/MobileMessaging/API.php b/plugins/MobileMessaging/API.php
index 1d1c591bbf..02843e568d 100644
--- a/plugins/MobileMessaging/API.php
+++ b/plugins/MobileMessaging/API.php
@@ -36,6 +36,7 @@ class Piwik_MobileMessaging_API
}
/**
+ * @param string $provider
* @return Piwik_MobileMessaging_SMSProvider
*/
static private function getSMSProviderInstance($provider)
@@ -157,7 +158,9 @@ class Piwik_MobileMessaging_API
/**
* send a SMS
*
+ * @param string $content
* @param string $phoneNumber
+ * @param string $from
* @return bool true
* @ignore
*/
diff --git a/plugins/MobileMessaging/SMSProvider.php b/plugins/MobileMessaging/SMSProvider.php
index 9f17311349..6abc527dcb 100644
--- a/plugins/MobileMessaging/SMSProvider.php
+++ b/plugins/MobileMessaging/SMSProvider.php
@@ -166,6 +166,7 @@ abstract class Piwik_MobileMessaging_SMSProvider
* @param string $apiKey
* @param string $smsText
* @param string $phoneNumber
+ * @param string $from
* @return bool true
*/
abstract public function sendSMS($apiKey, $smsText, $phoneNumber, $from);