]> git.mxchange.org Git - friendica.git/commitdiff
Remove extra spaces before closing parentheses in src/
authorHypolite Petovan <hypolite@mrpetovan.com>
Wed, 16 Oct 2019 12:58:09 +0000 (08:58 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Wed, 16 Oct 2019 12:58:09 +0000 (08:58 -0400)
src/App/BaseURL.php
src/BaseObject.php
src/Core/Config/Configuration.php
src/Core/Config/PConfiguration.php
src/Database/DBStructure.php
src/Model/GContact.php
src/Model/Profile.php
src/Protocol/ActivityPub/Processor.php
src/Util/Logger/SyslogLogger.php
src/Util/Network.php
src/Util/Profiler.php

index 9d9a2711e9530e4ab12d40294ecc86fa6052989f..8d76a0d2d25d9dcaa519dc87a64f88907e2bc046 100644 (file)
@@ -339,10 +339,10 @@ class BaseURL
                 * Not all of those $_SERVER properties can be present, so we do by inverse priority order
                 */
                $relative_script_path =
-                       ($this->server['REDIRECT_URL']        ?? '' ) ?:
-                       ($this->server['REDIRECT_URI']        ?? '' ) ?:
-                       ($this->server['REDIRECT_SCRIPT_URL'] ?? '' ) ?:
-                       ($this->server['SCRIPT_URL']          ?? '' ) ?:
+                       ($this->server['REDIRECT_URL']        ?? '') ?:
+                       ($this->server['REDIRECT_URI']        ?? '') ?:
+                       ($this->server['REDIRECT_SCRIPT_URL'] ?? '') ?:
+                       ($this->server['SCRIPT_URL']          ?? '') ?:
                         $this->server['REQUEST_URI']         ?? '';
 
                /* $relative_script_path gives /relative/path/to/friendica/module/parameter
index fcec89bb4228b5f3faae23beb535b7b8aee91c79..996824f4a132b631dddfbad6a6296f6a5f5905fd 100644 (file)
@@ -60,7 +60,7 @@ class BaseObject
                        throw new InternalServerErrorException('DICE isn\'t initialized.');
                }
 
-               if (class_exists($name) || interface_exists($name   )) {
+               if (class_exists($name) || interface_exists($name)) {
                        return self::$dice->create($name);
                } else {
                        throw new InternalServerErrorException('Class \'' . $name . '\' isn\'t valid.');
index f904f369bb81455d888254cbff9e80bb4000ff56..c54fbb27e76a12466621bc7bd2155be1ba80c276 100644 (file)
@@ -7,8 +7,8 @@ use Friendica\Model;
 /**
  * This class is responsible for all system-wide configuration values in Friendica
  * There are two types of storage
- * - The Config-Files    (loaded into the FileCache @see Cache\ConfigCache )
- * - The Config-DB-Table (per Config-DB-model @see Model\Config\Config )
+ * - The Config-Files    (loaded into the FileCache @see Cache\ConfigCache)
+ * - The Config-DB-Table (per Config-DB-model @see Model\Config\Config)
  */
 abstract class Configuration
 {
@@ -59,7 +59,7 @@ abstract class Configuration
         *
         * Get a particular config value from the given category ($cat)
         * and the $key from a cached storage either from the $this->configAdapter
-        * (@see IConfigAdapter ) or from the $this->configCache (@see ConfigCache ).
+        * (@see IConfigAdapter) or from the $this->configCache (@see ConfigCache).
         *
         * @param string  $cat        The category of the configuration value
         * @param string  $key           The configuration key to query
@@ -89,7 +89,7 @@ abstract class Configuration
         * @brief Deletes the given key from the system configuration.
         *
         * Removes the configured value from the stored cache in $this->configCache
-        * (@see ConfigCache ) and removes it from the database (@see IConfigAdapter ).
+        * (@see ConfigCache) and removes it from the database (@see IConfigAdapter).
         *
         * @param string $cat The category of the configuration value
         * @param string $key    The configuration key to delete
index badec9dfca094d5a60057065a919fc07ab9bb89e..c54fc31220361c7d3e1e3696a5f972a1f2635f0e 100644 (file)
@@ -8,7 +8,7 @@ use Friendica\Model;
  * This class is responsible for the user-specific configuration values in Friendica
  * The values are set through the Config-DB-Table (per Config-DB-model @see Model\Config\PConfig)
  *
- * The configuration cache (@see Cache\PConfigCache ) is used for temporary caching of database calls. This will
+ * The configuration cache (@see Cache\PConfigCache) is used for temporary caching of database calls. This will
  * increase the performance.
  */
 abstract class PConfiguration
@@ -52,7 +52,7 @@ abstract class PConfiguration
         * @param string $cat The category of the configuration value
         *
         * @return void
-        * @see PConfigCache )
+        * @see PConfigCache
         *
         */
        abstract public function load(int $uid, string $cat = 'config');
@@ -63,7 +63,7 @@ abstract class PConfiguration
         *
         * Get a particular user's config value from the given category ($cat)
         * and the $key with the $uid from a cached storage either from the $this->configAdapter
-        * (@see IConfigAdapter ) or from the $this->configCache (@see PConfigCache ).
+        * (@see IConfigAdapter) or from the $this->configCache (@see PConfigCache).
         *
         * @param int     $uid           The user_id
         * @param string  $cat           The category of the configuration value
@@ -96,7 +96,7 @@ abstract class PConfiguration
         * Deletes the given key from the users's configuration.
         *
         * Removes the configured value from the stored cache in $this->configCache
-        * (@see ConfigCache ) and removes it from the database (@see IConfigAdapter )
+        * (@see ConfigCache) and removes it from the database (@see IConfigAdapter)
         *  with the given $uid.
         *
         * @param int $uid The user_id
index 0c775377e493c7a2353538c0e7262d39c4b36711..218cab9507c4236329c6205f8363e730590bf2ee 100644 (file)
@@ -717,8 +717,8 @@ class DBStructure
         * @todo You cannot rename a primary key if "auto increment" is set
         *
         * @param string $table            Table name
-        * @param array  $columns          Columns Syntax for Rename: [ $old1 => [ $new1, $type1 ], $old2 => [ $new2, $type2 ], ... ] )
-        *                                 Syntax for Primary Key: [ $col1, $col2, ...] )
+        * @param array  $columns          Columns Syntax for Rename: [ $old1 => [ $new1, $type1 ], $old2 => [ $new2, $type2 ], ... ]
+        *                                 Syntax for Primary Key: [ $col1, $col2, ...]
         * @param int    $type             The type of renaming (Default is Column)
         *
         * @return boolean Was the renaming successful?
index f3ce0c92cc64f133731ca75d4f86795a55f14b88..3caabdd19b78ef42eabd2f3909d7f5748501deff 100644 (file)
@@ -255,7 +255,7 @@ class GContact
                        WHERE `glink`.`cid` = %d AND `glink`.`uid` = %d AND
                        ((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR
                        (`gcontact`.`updated` >= `gcontact`.`last_failure`))
-                       AND `gcontact`.`nurl` IN (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 and id != %d ) ",
+                       AND `gcontact`.`nurl` IN (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 and id != %d) ",
                        intval($cid),
                        intval($uid),
                        intval($uid),
@@ -281,7 +281,7 @@ class GContact
                        "SELECT count(*) as `total`
                        FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
                        where `glink`.`zcid` = %d
-                       and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 ) ",
+                       and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0) ",
                        intval($zcid),
                        intval($uid)
                );
@@ -353,7 +353,7 @@ class GContact
                        "SELECT `gcontact`.*
                        FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
                        where `glink`.`zcid` = %d
-                       and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 )
+                       and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0)
                        $sql_extra limit %d, %d",
                        intval($zcid),
                        intval($uid),
index 0c1ae01e413d71908c92211f07fa6ce5ff876993..b69860edfff73038d4f6438f4ab2e865be765c2c 100644 (file)
@@ -460,7 +460,7 @@ class Profile
                        $diaspora = [
                                'guid' => $profile['guid'],
                                'podloc' => System::baseUrl(),
-                               'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false' ),
+                               'searchable' => (($profile['publish'] && $profile['net-publish']) ? 'true' : 'false'),
                                'nickname' => $profile['nickname'],
                                'fullname' => $profile['name'],
                                'firstname' => $firstname,
index 48af31cc65e9775fe423dd0b0a32a56baecfd000..50e8dd91e8f5ec6726750d263c4ca99b341a2812 100644 (file)
@@ -893,7 +893,7 @@ class Processor
 
                // Extract one prepended mention at a time from the body
                while(preg_match('#^(@\[url=([^\]]+)].*?\[\/url]\s)(.*)#is', $body, $matches)) {
-                       if (!in_array($matches[2], $potential_mentions) ) {
+                       if (!in_array($matches[2], $potential_mentions)) {
                                $kept_mentions[] = $matches[1];
                        }
 
index 83c3fc3ce57e8707ebc4891fb7e564fba199eb65..7ef4f6b27a81b3b66d81b9cf74db873fcf4761fb 100644 (file)
@@ -111,7 +111,7 @@ class SyslogLogger extends AbstractLogger
        }
 
        /**
-        * Maps the LogLevel (@see LogLevel ) to a SysLog priority (@see http://php.net/manual/en/function.syslog.php#refsect1-function.syslog-parameters )
+        * Maps the LogLevel (@see LogLevel) to a SysLog priority (@see http://php.net/manual/en/function.syslog.php#refsect1-function.syslog-parameters)
         *
         * @param string $level A LogLevel
         *
index 348bff50e39f0cf84c51d194a8c8174ed02c6847..7e1012827e4dac297bd7af46f3710c5bc13f6bd7 100644 (file)
@@ -380,7 +380,7 @@ class Network
                /// @TODO Really suppress function outcomes? Why not find them + debug them?
                $h = @parse_url($url);
 
-               if (!empty($h['host']) && (@dns_get_record($h['host'], DNS_A + DNS_CNAME) || filter_var($h['host'], FILTER_VALIDATE_IP) )) {
+               if (!empty($h['host']) && (@dns_get_record($h['host'], DNS_A + DNS_CNAME) || filter_var($h['host'], FILTER_VALIDATE_IP))) {
                        return $url;
                }
 
@@ -406,7 +406,7 @@ class Network
                $h = substr($addr, strpos($addr, '@') + 1);
 
                // Concerning the @ see here: https://stackoverflow.com/questions/36280957/dns-get-record-a-temporary-server-error-occurred
-               if ($h && (@dns_get_record($h, DNS_A + DNS_MX) || filter_var($h, FILTER_VALIDATE_IP) )) {
+               if ($h && (@dns_get_record($h, DNS_A + DNS_MX) || filter_var($h, FILTER_VALIDATE_IP))) {
                        return true;
                }
                if ($h && @dns_get_record($h, DNS_CNAME + DNS_MX)) {
index b42d0facca03678fdc536ec56b2e070dd83715be..e745a8bbdf001e528cb5735a411698b8b43e0436 100644 (file)
@@ -13,7 +13,7 @@ use Psr\Log\LoggerInterface;
  * A class to store profiling data
  * It can handle different logging data for specific functions or global performance measures
  *
- * It stores the data as log entries (@see LoggerInterface )
+ * It stores the data as log entries (@see LoggerInterface)
  */
 class Profiler implements ContainerInterface
 {