Replace "get" with "return" in comments
authorMatthias Schmidt <gravatronics@live.com>
Sat, 30 Jul 2016 12:11:29 +0000 (14:11 +0200)
committerMatthias Schmidt <gravatronics@live.com>
Sat, 30 Jul 2016 12:35:21 +0000 (14:35 +0200)
40 files changed:
wcfsetup/install/files/lib/acp/form/UserEditForm.class.php
wcfsetup/install/files/lib/acp/page/UserListPage.class.php
wcfsetup/install/files/lib/data/article/ViewableArticle.class.php
wcfsetup/install/files/lib/data/attachment/AdministrativeAttachment.class.php
wcfsetup/install/files/lib/data/like/Like.class.php
wcfsetup/install/files/lib/data/like/object/LikeObject.class.php
wcfsetup/install/files/lib/data/object/type/IObjectTypeProvider.class.php
wcfsetup/install/files/lib/data/paid/subscription/transaction/log/PaidSubscriptionTransactionLog.class.php
wcfsetup/install/files/lib/data/paid/subscription/user/PaidSubscriptionUser.class.php
wcfsetup/install/files/lib/data/style/StyleEditor.class.php
wcfsetup/install/files/lib/data/user/User.class.php
wcfsetup/install/files/lib/data/user/online/UsersOnlineList.class.php
wcfsetup/install/files/lib/data/user/profile/visitor/UserProfileVisitor.class.php
wcfsetup/install/files/lib/form/LoginForm.class.php
wcfsetup/install/files/lib/form/SearchForm.class.php
wcfsetup/install/files/lib/system/WCFSetup.class.php
wcfsetup/install/files/lib/system/acl/ACLHandler.class.php
wcfsetup/install/files/lib/system/attachment/IAttachmentObjectType.class.php
wcfsetup/install/files/lib/system/category/CategoryHandler.class.php
wcfsetup/install/files/lib/system/cronjob/GetUpdateInfoCronjob.class.php
wcfsetup/install/files/lib/system/database/Database.class.php
wcfsetup/install/files/lib/system/exporter/AbstractExporter.class.php
wcfsetup/install/files/lib/system/language/LanguageFactory.class.php
wcfsetup/install/files/lib/system/like/LikeHandler.class.php
wcfsetup/install/files/lib/system/mail/Mail.class.php
wcfsetup/install/files/lib/system/mail/SMTPMailSender.class.php
wcfsetup/install/files/lib/system/option/OptionHandler.class.php
wcfsetup/install/files/lib/system/package/PackageInstallationSQLParser.class.php
wcfsetup/install/files/lib/system/package/PackageInstallationScheduler.class.php
wcfsetup/install/files/lib/system/package/PackageUpdateDispatcher.class.php
wcfsetup/install/files/lib/system/package/plugin/ObjectTypePackageInstallationPlugin.class.php
wcfsetup/install/files/lib/system/tagging/ITagged.class.php
wcfsetup/install/files/lib/system/tagging/TagCloud.class.php
wcfsetup/install/files/lib/system/upload/UploadFile.class.php
wcfsetup/install/files/lib/system/upload/UploadHandler.class.php
wcfsetup/install/files/lib/system/user/UserBirthdayCache.class.php
wcfsetup/install/files/lib/system/user/authentication/UserAuthenticationFactory.class.php
wcfsetup/install/files/lib/system/user/notification/object/type/IUserNotificationObjectType.class.php
wcfsetup/install/files/lib/system/visitTracker/VisitTracker.class.php
wcfsetup/install/files/lib/system/worker/IWorker.class.php

index 22257b698964e11dea3b85d959849f14f87341f4..3f7d73f754fada44b20ea55db6fa63c1f11f981e 100755 (executable)
@@ -174,14 +174,14 @@ class UserEditForm extends UserAddForm {
        }
        
        /**
-        * Gets the selected languages.
+        * Sets the selected languages.
         */
        protected function readVisibleLanguages() {
                $this->visibleLanguages = $this->user->getLanguageIDs();
        }
        
        /**
-        * Gets the default values.
+        * Sets the default values.
         */
        protected function readDefaultValues() {
                $this->username = $this->user->username;
index 3cddaddc7a072330e6973f8c18f96d6cf3d9fb91..f23c352db7926407128ed9c9a7ade4328f37929f 100755 (executable)
@@ -228,7 +228,7 @@ class UserListPage extends SortablePage {
        }
        
        /**
-        * Gets the list of results.
+        * Fetches the list of results.
         */
        protected function readUsers() {
                // get user ids
@@ -324,7 +324,7 @@ class UserListPage extends SortablePage {
        }
        
        /**
-        * Gets the result of the search with the given search id.
+        * Fetches the result of the search with the given search id.
         */
        protected function readSearchResult() {
                // get user search from database
@@ -352,7 +352,7 @@ class UserListPage extends SortablePage {
        }
        
        /**
-        * Gets the user options from cache.
+        * Fetches the user options from cache.
         */
        protected function readUserOptions() {
                $this->options = UserOptionCacheBuilder::getInstance()->getData([], 'options');
index b69402c3e14465ee6c71bfcbff4b9b8e8fd97f7e..6ab05921d8dcd430470d85c9864d2192da3b3b9d 100644 (file)
@@ -32,7 +32,7 @@ class ViewableArticle extends DatabaseObjectDecorator {
        protected $userProfile = null;
        
        /**
-        * Gets a specific article decorated as viewable article.
+        * Returns a specific article decorated as viewable article or `null` if it does not exist.
         *
         * @param       integer         $articleID
         * @param       boolean         $enableContentLoading   Enables/disables the loading of article content objects
index b55ed2d5b123f494175a136c300b8484f2b61a73..e2879441fd79cb3b7a0d4ed17374a19a97354fe3 100644 (file)
@@ -34,7 +34,7 @@ class AdministrativeAttachment extends DatabaseObjectDecorator {
        protected $containerObjectLoaded = false;
        
        /**
-        * Gets the container object of this attachment.
+        * Returns the container object of this attachment.
         * 
         * @return      IUserContent
         */
index 9d249076bf9f76b8ff60bb1bf30e30693fd46864..3dd9e854c17af6d7ed3b34bd183d37a52554d247 100644 (file)
@@ -43,7 +43,7 @@ class Like extends DatabaseObject {
        const DISLIKE = -1;
        
        /**
-        * Gets a like by type, object id and user id.
+        * Returns the like with given type, object id and user id.
         * 
         * @param       integer         $objectTypeID
         * @param       integer         $objectID
index b7b4a264e2e5ab4e21d5b92949b81c10db4a6ef8..050e75d867b43338c1601023e00079045dfd2734 100644 (file)
@@ -65,7 +65,7 @@ class LikeObject extends DatabaseObject {
        }
        
        /**
-        * Gets the first 3 users who liked this object.
+        * Returns the first 3 users who liked this object.
         * 
         * @return      User[]
         */
@@ -96,7 +96,7 @@ class LikeObject extends DatabaseObject {
        }
        
        /**
-        * Gets a like object by type and object id.
+        * Returns the like object with the given type and object id.
         * 
         * @param       integer         $objectTypeID
         * @param       integer         $objectID
index c83c05e16450bf7664689d55b1ceaa51f47597b2..66ed52091d3401a56b919f1643fc2df756986b27 100644 (file)
@@ -12,7 +12,7 @@ use wcf\data\DatabaseObject;
  */
 interface IObjectTypeProvider {
        /**
-        * Gets an object by its ID.
+        * Returns an object by its ID.
         * 
         * @param       integer         $objectID
         * @return      \wcf\data\DatabaseObject
@@ -20,7 +20,7 @@ interface IObjectTypeProvider {
        public function getObjectByID($objectID);
        
        /**
-        * Gets like objects by their IDs.
+        * Returns objects by their IDs.
         * 
         * @param       integer[]               $objectIDs
         * @return      DatabaseObject[]
index cfcf979cfcfe50abd57965727a6b816385d97c03..54a421f54c1c993a2f1ce9080a27fff6079cf9e8 100644 (file)
@@ -93,11 +93,11 @@ class PaidSubscriptionTransactionLog extends DatabaseObject {
        }
        
        /**
-        * Gets a transaction log entry by transaction id.
+        * Returns the transaction log entry by transaction id or `null` if no such entry exists.
         * 
         * @param       integer         $paymentMethodObjectTypeID
         * @param       string          $transactionID
-        * @return      \wcf\data\paid\subscription\transaction\log\PaidSubscriptionTransactionLog
+        * @return      PaidSubscriptionTransactionLog|null
         */
        public static function getLogByTransactionID($paymentMethodObjectTypeID, $transactionID) {
                $sql = "SELECT  *
index 3b35982a93924a5ca6fbf761db7c376080803f1d..3bc332defcaa420a43d98673952ea9b8ff8bd320 100644 (file)
@@ -37,9 +37,9 @@ class PaidSubscriptionUser extends DatabaseObject {
        protected $subscription = null;
        
        /**
-        * Gets the paid subscription object.
+        * Returns the paid subscription object.
         * 
-        * @return      \wcf\data\paid\subscription\PaidSubscription
+        * @return      PaidSubscription
         */
        public function getSubscription() {
                if ($this->subscription === null) {
@@ -59,11 +59,11 @@ class PaidSubscriptionUser extends DatabaseObject {
        }
        
        /**
-        * Gets a specific subscription user.
+        * Returns a specific subscription user or `null` if such a user does not exist.
         * 
         * @param       integer         $subscriptionID
         * @param       integer         $userID
-        * @return      \wcf\data\paid\subscription\user\PaidSubscriptionUser
+        * @return      PaidSubscriptionUser|null
         */
        public static function getSubscriptionUser($subscriptionID, $userID) {
                $sql = "SELECT  *
index 0e0b6c8d1355b01d5bfc810388d11843ec39cdeb..21698a3573ec1a8cc685b7e404c698a23f716854 100644 (file)
@@ -263,10 +263,10 @@ class StyleEditor extends DatabaseObjectEditor implements IEditableCachedObject
        }
        
        /**
-        * Gets the data of a style exchange format file.
+        * Returns the data of a style exchange format file.
         * 
         * @param       string          $filename
-        * @return      array           data
+        * @return      array
         */
        public static function getStyleData($filename) {
                // open file
index b6597f3640f666951dec18238fd2d696e7ce678d..8cde1f3f9c17b224467857bddf65531d6eb7303e 100644 (file)
@@ -278,7 +278,7 @@ final class User extends DatabaseObject implements IRouteController, IUserConten
        }
        
        /**
-        * Gets all user options from cache.
+        * Fetches all user options from cache.
         */
        protected static function getUserOptionCache() {
                self::$userOptions = UserOptionCacheBuilder::getInstance()->getData([], 'options');
index 3f123bc8f77b3b3ddd41173aca220acebe623eb4..9e8d9f1c211308672b6113aee22824557db7206c 100644 (file)
@@ -81,7 +81,7 @@ class UsersOnlineList extends SessionList {
        }
        
        /**
-        * Gets users online stats.
+        * Fetches users online stats.
         */
        public function readStats() {
                $conditionBuilder = clone $this->getConditionBuilder();
index 198ef8736e4b28df4b449900dacf931d4dd05c9a..6575567f9478e03cbc1d8f4bdcb8d29b6751f4b9 100644 (file)
@@ -28,11 +28,11 @@ class UserProfileVisitor extends DatabaseObject {
        protected static $databaseTableIndexName = 'visitorID';
        
        /**
-        * Gets a profile visitor object.
+        * Returns a profile visitor object or `null` if it does not exist.
         * 
         * @param       integer         $ownerID
         * @param       integer         $userID
-        * @return      \wcf\data\user\profile\visitor\UserProfileVisitor
+        * @return      UserProfileVisitor|null
         */
        public static function getObject($ownerID, $userID) {
                $sql = "SELECT  *
index 882df981939f3863121ac7c32d571ff72dddd69f..4a4224c8aee359eb062b1f6b8867882dee466ab0 100644 (file)
@@ -70,7 +70,7 @@ class LoginForm extends \wcf\acp\form\LoginForm {
        }
        
        /**
-        * Gets the redirect url.
+        * Sets the redirect url.
         */
        protected function checkURL() {
                if (empty($this->url) || mb_stripos($this->url, '?Login/') !== false) {
index 65036aa4229c644547523931427ade5c0491c119..2ea2b16706d81d44963aec02e4edffeb0968efe1 100644 (file)
@@ -428,7 +428,7 @@ class SearchForm extends AbstractCaptchaForm {
        }
        
        /**
-        * Gets the conditions for a search in the table of the selected object types.
+        * Sets the conditions for a search in the table of the selected object types.
         */
        protected function getConditions() {
                if (empty($this->selectedObjectTypes)) {
index e62d098cc048cf5549a5af7af0f88d51327319cc..a5b5babc22bab4e4b7a4e5006e565511906e132e 100644 (file)
@@ -103,7 +103,7 @@ class WCFSetup extends WCF {
        }
        
        /**
-        * Gets the status of the developer mode.
+        * Sets the status of the developer mode.
         */
        protected static function getDeveloperMode() {
                if (isset($_GET['dev'])) self::$developerMode = intval($_GET['dev']);
@@ -111,7 +111,7 @@ class WCFSetup extends WCF {
        }
        
        /**
-        * Gets the selected language.
+        * Sets the selected language.
         */
        protected static function getLanguageSelection() {
                self::$availableLanguages = self::getAvailableLanguages();
@@ -129,7 +129,7 @@ class WCFSetup extends WCF {
        }
        
        /**
-        * Gets the selected wcf dir from request.
+        * Sets the selected wcf dir from request.
         * 
         * @since       3.0
         */
@@ -1224,7 +1224,7 @@ class WCFSetup extends WCF {
        }
        
        /**
-        * Gets the package names of the bundled applications in WCFSetup.tar.gz.
+        * Reads the package names of the bundled applications in WCFSetup.tar.gz.
         */
        protected static function getPackageNames() {
                // get package name
index a1160d628ad0e27e0281d069e7196fead3dffce0..3054ca4c6e79d5b415d9d8a7cf6ae52619f4c48b 100644 (file)
@@ -121,7 +121,7 @@ class ACLHandler extends SingletonFactory {
        }
        
        /**
-        * Gets the object type id.
+        * Returns the id of the given acl object type.
         * 
         * @param       string          $objectType
         * @return      integer
index fa9f5b904b0ef2796c7e730364afc4420d3a7e7e..bb50dba8022ebbb8ae67fd7e5e16a32f6eef5df7 100644 (file)
@@ -67,7 +67,7 @@ interface IAttachmentObjectType {
        public function getMaxCount();
        
        /**
-        * Gets the container object of an attachment.
+        * Returns the container object of an attachment.
         * 
         * @param       integer         $objectID
         * @return      \wcf\data\IUserContent
index 4fc25a5e6e1df89d3171dea65b609ee103e8ff5a..dd7f896e36d10eaad0b444a37cc351ddc7fcfdcb 100644 (file)
@@ -103,10 +103,10 @@ class CategoryHandler extends SingletonFactory {
        }
        
        /**
-        * Gets the object type with the given id.
+        * Returns the category object type with the given id or null if no such object type exists.
         * 
         * @param       integer         $objectTypeID
-        * @return      \wcf\data\object\type\ObjectType
+        * @return      ObjectType|null
         */
        public function getObjectType($objectTypeID) {
                if (isset($this->objectTypeIDs[$objectTypeID])) {
@@ -117,10 +117,10 @@ class CategoryHandler extends SingletonFactory {
        }
        
        /**
-        * Gets the object type with the given name.
+        * Returns the category object type with the given name or null if no such object type exists.
         * 
         * @param       string          $objectType
-        * @return      \wcf\data\object\type\ObjectType
+        * @return      ObjectType|null
         */
        public function getObjectTypeByName($objectType) {
                if (isset($this->objectTypes[$objectType])) {
index 1bc9fd312a354fbf49a015c62936858df731306f..ac69f5f79a2628a0126593c5add03780968c2a61 100644 (file)
@@ -4,7 +4,7 @@ use wcf\data\cronjob\Cronjob;
 use wcf\system\package\PackageUpdateDispatcher;
 
 /**
- * Gets update package information.
+ * Fetches update package information.
  * 
  * @author     Alexander Ebert
  * @copyright  2001-2016 WoltLab GmbH
index 1fd81b807efeb3d358764275959830148bce827c..cd4e0c6c912009d3b7312901de09566cad36046e 100644 (file)
@@ -283,7 +283,7 @@ abstract class Database {
        }
        
        /**
-        * Gets the current database type.
+        * Returns the current database type.
         * 
         * @return      string
         */
@@ -302,7 +302,7 @@ abstract class Database {
        }
        
        /**
-        * Gets the sql version.
+        * Returns the sql version.
         * 
         * @return      string
         */
@@ -318,7 +318,7 @@ abstract class Database {
        }
        
        /**
-        * Gets the database name.
+        * Returns the database name.
         * 
         * @return      string
         */
index 1c3934229a22a9824f80f0f6ff6fe1fd36fe8cac..b017975b1cd296b6c158d41689a3985d8ac6137d 100644 (file)
@@ -181,7 +181,7 @@ abstract class AbstractExporter implements IExporter {
        }
        
        /**
-        * Gets the max value of a specific column.
+        * Returns the maximum value of a specific column.
         * 
         * @param       string          $tableName
         * @param       string          $columnName
index ea1f62b8fbc234c0a813ae08a8da3fde812dec4f..0f6e18b75a528cb5a91d45ddd84dd805fdd4c2e2 100644 (file)
@@ -61,7 +61,7 @@ class LanguageFactory extends SingletonFactory {
        }
        
        /**
-        * Gets the preferred language of the current user.
+        * Returns the preferred language of the current user.
         * 
         * @param       integer         $languageID
         * @return      Language
index baffedf3ba83bf067aad4c5b360808ac15e8448b..028494d01d962f417c48baac1bebdb7f7e1d022d 100644 (file)
@@ -71,11 +71,11 @@ class LikeHandler extends SingletonFactory {
        }
        
        /**
-        * Gets a like object.
+        * Returns a like object.
         * 
         * @param       ObjectType      $objectType
         * @param       integer         $objectID
-        * @return      LikeObject
+        * @return      LikeObject|null
         */
        public function getLikeObject(ObjectType $objectType, $objectID) {
                if (isset($this->likeObjectCache[$objectType->objectTypeID][$objectID])) {
@@ -86,7 +86,7 @@ class LikeHandler extends SingletonFactory {
        }
        
        /**
-        * Gets the like objects of a specific object type.
+        * Returns the like objects of a specific object type.
         * 
         * @param       ObjectType      $objectType
         * @return      LikeObject[]
index 92dc9231e5df7e9a80ea120f51b06981beafbf51..6a2f2b04cbd58958dbad6ea2b6417c21b4cd3d6e 100644 (file)
@@ -335,7 +335,7 @@ class Mail {
        }
        
        /**
-        * Gets the sender of this mail.
+        * Returns the sender of this mail.
         * 
         * @return      string
         */
index 475f5bbe1366d85969aa325099a328fbfbb0bab2..c529f91fc72715707ee5ecb6a34e682376e61f77 100644 (file)
@@ -277,7 +277,7 @@ class SMTPMailSender extends MailSender {
        }
        
        /**
-        * Gets error code and message from a server message.
+        * Extracts error code and message from a server message.
         * 
         * @param       string          $data
         */
index 9f2efe6aa1bcfb052e7b84ef0d75b1e8d6886c54..cd0631b773a8e6e52d85b8e5bbbdb9dda20e43be 100644 (file)
@@ -387,7 +387,7 @@ class OptionHandler implements IOptionHandler {
        }
        
        /**
-        * Gets all options and option categories from cache.
+        * Fetches all options and option categories from cache.
         */
        protected function readCache() {
                $cache = call_user_func([$this->cacheClass, 'getInstance']);
index d1c94aac9621f3127605741e6e4916fce5a6abba..9d388de28677e75494fd76409c8966653ae6703d 100644 (file)
@@ -190,7 +190,7 @@ class PackageInstallationSQLParser extends SQLParser {
        }
        
        /**
-        * Gets known sql tables and their owners from installation log.
+        * Fetches known sql tables and their owners from installation log.
         */
        protected function getKnownTables() {
                $sql = "SELECT  packageID, sqlTable
index 715ae286d9a7d07d461ca5431fff10aa432ac57d..e1dd02a4a914ad6726a6359fed4750573a66a305 100644 (file)
@@ -613,11 +613,11 @@ class PackageInstallationScheduler {
        }
        
        /**
-        * Gets the filename of in session stored donwloads.
+        * Returns the filename of downloads stored in session or null if no stored downloads exist.
         * 
         * @param       string          $package        package identifier
         * @param       string          $version        package version
-        * @return      string          $filename
+        * @return      string|boolean
         */
        protected function getCachedDownload($package, $version) {
                $cachedDownloads = WCF::getSession()->getVar('cachedPackageUpdateDownloads');
@@ -629,7 +629,7 @@ class PackageInstallationScheduler {
        }
        
        /**
-        * Gets stored auth data of given update server.
+        * Returns stored auth data the update server with given data.
         * 
         * @param       array           $data
         * @return      array
index 42e8042e2646d376d730c8027b78ba620d577442..4b2855c27b096e6439061489fc8198f054140e5c 100644 (file)
@@ -84,7 +84,7 @@ class PackageUpdateDispatcher extends SingletonFactory {
        }
        
        /**
-        * Gets the package_update.xml from an update server.
+        * Fetches the package_update.xml from an update server.
         * 
         * @param       PackageUpdateServer     $updateServer
         * @param       boolean                 $forceHTTP
@@ -655,7 +655,7 @@ class PackageUpdateDispatcher extends SingletonFactory {
        }
        
        /**
-        * Gets package update versions of a package.
+        * Returns package update versions of the specified package.
         * 
         * @param       string          $package        package identifier
         * @param       string          $version        package version
index 4ac1eced45a123bcc4393b70d8fa429dd0874e42..f6a89dae4fa2003eb6bbc1f144cddc8661a0770f 100644 (file)
@@ -30,7 +30,7 @@ class ObjectTypePackageInstallationPlugin extends AbstractXMLPackageInstallation
        public static $reservedTags = ['classname', 'definitionname', 'name'];
        
        /**
-        * Gets the definition id by name
+        * Returns the id of the object type definition with the given name.
         * 
         * @param       string          $definitionName
         * @return      integer
index ee705b0773b679e5971d2c3c0e496dbba8d85dab..5eb1093cbf62e6a6ae949a9d11e730c751e8f074 100644 (file)
@@ -11,16 +11,16 @@ namespace wcf\system\tagging;
  */
 interface ITagged {
        /**
-        * Gets the id of the tagged object.
+        * Returns the id of the tagged object.
         * 
         * @return      integer         the id to get
         */
        public function getObjectID();
        
        /**
-        * Gets the taggable type of this tagged object.
+        * Returns the taggable type of this tagged object.
         * 
-        * @return      \wcf\system\tagging\ITaggable
+        * @return      ITaggable
         */
        public function getTaggable();
 }
index 807256017d56fc2f18c70b42400509924abf25e8..1df409f0638f0ed24acfc9d3e0fb5d3f1ef61fdd 100644 (file)
@@ -74,7 +74,7 @@ class TagCloud {
        }
        
        /**
-        * Gets a list of weighted tags.
+        * Returns a list of weighted tags.
         * 
         * @param       integer         $slice
         * @return      TagCloudTag[]   the tags to get
index 27db9debd437667a5f747862f2e89bc5ae899252..55ace04329e833dea168d48a737f88a083c47dac 100644 (file)
@@ -160,9 +160,9 @@ class UploadFile {
        }
        
        /**
-        * Gets image data.
+        * Returns the image data of the file or `null` if the file is no image.
         * 
-        * @return      array
+        * @return      array|null
         */
        public function getImageData() {
                if (strpos($this->getMimeType(), 'image/') == 0) {
index 00f7f3ec6d3d266ddf8e587abb9ff05b68783545..1b94456a9030232b22b3b04446758e12091a661f 100644 (file)
@@ -110,13 +110,16 @@ class UploadHandler {
        }
        
        /**
-        * Gets an upload handler instance.
+        * Returns an upload handler instance for the given identifier or `null` if no data exists in `$_FILES`
+        * for the identifier.
         * 
         * @param       string          $identifier
-        * @return      \wcf\system\upload\UploadHandler
+        * @return      UploadHandler
         */
        public static function getUploadHandler($identifier) {
-               if (isset($_FILES[$identifier]) && is_array($_FILES[$identifier])) return new UploadHandler($_FILES[$identifier]);
+               if (isset($_FILES[$identifier]) && is_array($_FILES[$identifier])) {
+                       return new UploadHandler($_FILES[$identifier]);
+               }
                
                return null;
        }
index 0b4d44b49f9e3dc90749ac09f4c491d0d5bd76f5..6a7997902aa16237b761a65583aa2b6f4660f869 100644 (file)
@@ -37,7 +37,7 @@ class UserBirthdayCache extends SingletonFactory {
        }
        
        /**
-        * Gets the user birthdays for a specific day.
+        * Returns the user birthdays for a specific day.
         * 
         * @param       integer         $month
         * @param       integer         $day
index 0be1d00b8a5a96f82098870e6e265df4937a5154..d5816fcc93766cc1c8909f6f9dd9bd32b9e72ce9 100644 (file)
@@ -5,7 +5,7 @@ use wcf\system\exception\ImplementationException;
 use wcf\system\SingletonFactory;
 
 /**
- * Gets the user authentication instance.
+ * Provides the user authentication instance.
  * 
  * @author     Alexander Ebert
  * @copyright  2001-2016 WoltLab GmbH
index f7058eea5a10defa75dcdbdafb837d11aa18ce75..37e29c10f76f63a749e04d4a7e28e471ad81adab 100644 (file)
@@ -13,7 +13,7 @@ use wcf\system\user\notification\object\IUserNotificationObject;
  */
 interface IUserNotificationObjectType extends IDatabaseObjectProcessor {
        /**
-        * Gets notification objects by their IDs.
+        * Returns notification objects by their IDs.
         * 
         * @param       integer[]       $objectIDs
         * @return      IUserNotificationObject[]
index b0592d5cfcbff99868d3c5a7f7de40da19044ae3..79b4c8466e2733a360c06363a4794c757e2a0290 100644 (file)
@@ -57,7 +57,7 @@ class VisitTracker extends SingletonFactory {
        }
        
        /**
-        * Gets the last visit time for a whole object type.
+        * Returns the last visit time for a whole object type.
         * 
         * @param       string          $objectType
         * @return      integer
index 13ac8cc4da0cc260e0dd8f1fea4402a041253ad2..29db24fcd474d23155443e8189b5665413ca2acc 100644 (file)
@@ -25,8 +25,8 @@ interface IWorker {
        public function setLoopCount($loopCount);
        
        /**
-        * Gets current process, integer between 0 and 100. If the progress
-        * hits 100 the worker will terminate.
+        * Returns current process of the worker, an integer between 0 and 100.
+        * If the progress hits 100, the worker will terminate.
         * 
         * @return      integer
         */