]> git.mxchange.org Git - friendica.git/commitdiff
Remove unrecommended leading backslash for fully qualified namespaces
authorHypolite Petovan <mrpetovan@gmail.com>
Sun, 30 Apr 2017 04:29:14 +0000 (00:29 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Wed, 3 May 2017 03:37:06 +0000 (23:37 -0400)
20 files changed:
include/cache.php
include/config.php
include/cron.php
include/cronhooks.php
include/datetime.php
include/dbclean.php
include/dbupdate.php
include/directory.php
include/discover_poco.php
include/expire.php
include/gprobe.php
include/onepoll.php
include/pgettext.php
include/photos.php
include/queue.php
include/remove_contact.php
include/spool_post.php
include/update_gcontact.php
mod/worker.php
src/ParseUrl.php

index 98799bcf40ff904c70c7b08910b72005b221be63..b56906c54492d95033e073df544ab61505b6029a 100644 (file)
@@ -5,8 +5,8 @@
  * @brief Class for storing data for a short time
  */
 
-use \Friendica\Core\Config;
-use \Friendica\Core\PConfig;
+use Friendica\Core\Config;
+use Friendica\Core\PConfig;
 
 class Cache {
        /**
@@ -121,9 +121,9 @@ class Cache {
 
        /**
         * @brief Put data in the cache according to the key
-        * 
+        *
         * The input $value can have multiple formats.
-        * 
+        *
         * @param string $key The key to the cached data
         * @param mixed $valie The value that is about to be stored
         * @param integer $duration The cache lifespan
index c51db4ec7b1f7fc9f550bdf3818014553a5e9ec1..1c8b119bcc989ee8be13fa656198d09abc7a83fc 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file include/config.php
- * 
+ *
  *  @brief (Deprecated) Arbitrary configuration storage
  * Note:
  * Please do not store booleans - convert to 0/1 integer values
@@ -12,8 +12,8 @@
  * configurations need to be fixed as of 10/08/2011.
  */
 
-use \Friendica\Core\Config;
-use \Friendica\Core\PConfig;
+use Friendica\Core\Config;
+use Friendica\Core\PConfig;
 
 /**
  * @brief (Deprecated) Loads all configuration values of family into a cached storage.
index c4299dd4c2eea874671b6fc0df4baf69ad2daf01..bac9c8a3d8827e40b678dde262aeaeedbd3e9120 100644 (file)
@@ -1,5 +1,6 @@
 <?php
-use \Friendica\Core\Config;
+
+use Friendica\Core\Config;
 
 function cron_run(&$argv, &$argc){
        global $a;
index a519dee22433650e5839d6e4ed71e53f06dcd408..2c378aa39c059b71822238573f4de3bd25fafca7 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-use \Friendica\Core\Config;
+use Friendica\Core\Config;
 
 function cronhooks_run(&$argv, &$argc) {
        global $a;
index a840aa0a58492a6f49ce34d794d6b841d614e68c..3578698240053115ea3c5f9738ee98deb082bdd0 100644 (file)
@@ -4,7 +4,7 @@
  * @brief Some functions for date and time related tasks.
  */
 
-use \Friendica\Core\Config;
+use Friendica\Core\Config;
 
 /**
  * @brief Two-level sort for timezones.
@@ -34,7 +34,7 @@ function timezone_cmp($a, $b) {
 
 /**
  * @brief Emit a timezone selector grouped (primarily) by continent
- * 
+ *
  * @param string $current Timezone
  * @return string Parsed HTML output
  */
@@ -81,17 +81,17 @@ function select_timezone($current = 'America/Los_Angeles') {
 
 /**
  * @brief Generating a Timezone selector
- * 
+ *
  * Return a select using 'field_select_raw' template, with timezones
  * groupped (primarily) by continent
  * arguments follow convetion as other field_* template array:
  * 'name', 'label', $value, 'help'
- * 
+ *
  * @param string $name Name of the selector
  * @param string $label Label for the selector
  * @param string $current Timezone
  * @param string $help Help text
- * 
+ *
  * @return string Parsed HTML
  */
 function field_timezone($name='timezone', $label='', $current = 'America/Los_Angeles', $help){
@@ -114,7 +114,7 @@ function field_timezone($name='timezone', $label='', $current = 'America/Los_Ang
  * @param string $s Some parseable date/time string
  * @param string $fmt Output format recognised from php's DateTime class
  *   http://www.php.net/manual/en/datetime.format.php
- * 
+ *
  * @return string Formatted date according to given format
  */
 function datetime_convert($from = 'UTC', $to = 'UTC', $s = 'now', $fmt = "Y-m-d H:i:s") {
@@ -212,7 +212,7 @@ function dob($dob) {
 
 /**
  * @brief Returns a date selector
- * 
+ *
  * @param string $format
  *  Format string, e.g. 'ymd' or 'mdy'. Not currently supported
  * @param string $min
@@ -223,7 +223,7 @@ function dob($dob) {
  *  Unix timestamp of default date
  * @param string $id
  *  ID and name of datetimepicker (defaults to "datetimepicker")
- * 
+ *
  * @return string Parsed HTML output.
  */
 function datesel($format, $min, $max, $default, $id = 'datepicker') {
@@ -232,7 +232,7 @@ function datesel($format, $min, $max, $default, $id = 'datepicker') {
 
 /**
  * @brief Returns a time selector
- * 
+ *
  * @param string $format
  *  Format string, e.g. 'ymd' or 'mdy'. Not currently supported
  * @param $h
@@ -241,7 +241,7 @@ function datesel($format, $min, $max, $default, $id = 'datepicker') {
  *  Already selected minute
  * @param string $id
  *  ID and name of datetimepicker (defaults to "timepicker")
- * 
+ *
  * @return string Parsed HTML output.
  */
 function timesel($format, $h, $m, $id = 'timepicker') {
@@ -270,7 +270,7 @@ function timesel($format, $h, $m, $id = 'timepicker') {
  * @param $maxfrom
  *  set maximum date from picker with id $maxfrom (none by default)
  * @param bool $required default false
- * 
+ *
  * @return string Parsed HTML output.
  *
  * @todo Once browser support is better this could probably be replaced with
@@ -417,7 +417,7 @@ function relative_date($posted_date, $format = null) {
  * @param string $dob Date of Birth
  * @param string $owner_tz (optional) Timezone of the person of interest
  * @param string $viewer_tz (optional) Timezone of the person viewing
- * 
+ *
  * @return int Age in years
  */
 function age($dob, $owner_tz = '', $viewer_tz = '') {
@@ -452,7 +452,7 @@ function age($dob, $owner_tz = '', $viewer_tz = '') {
  *
  * @param int $y Year
  * @param int $m Month (1=January, 12=December)
- * 
+ *
  * @return int Number of days in the given month
  */
 function get_dim($y, $m) {
@@ -477,7 +477,7 @@ function get_dim($y, $m) {
  *
  * @param int $y Year
  * @param int $m Month (1=January, 12=December)
- * 
+ *
  * @return string day 0 = Sunday through 6 = Saturday
  */
 function get_first_dim($y,$m) {
@@ -498,7 +498,7 @@ function get_first_dim($y,$m) {
  * @param int $m Month
  * @param bool $links (default false)
  * @param string $class
- * 
+ *
  * @return string
  *
  * @todo Provide (prev,next) links, define class variations for different size calendars
index 6643a6314e44dd5504777eaed3f89f6ed8a43b1f..f31bfef8abbb91ff0136d947ae58b8e2ac7085d5 100644 (file)
@@ -4,7 +4,7 @@
  * @brief The script is called from time to time to clean the database entries and remove orphaned data.
  */
 
-use \Friendica\Core\Config;
+use Friendica\Core\Config;
 
 function dbclean_run(&$argv, &$argc) {
        if (!Config::get('system', 'dbclean', false)) {
index 725eca737045865d85ff2ec2ecf55ecbad250b68..799ca262c837b4229b80b3b464bd3bf5f6ac1624 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-use \Friendica\Core\Config;
+use Friendica\Core\Config;
 
 function dbupdate_run(&$argv, &$argc) {
        global $a;
index 41a3dd784c0b1876807ab81a9d9e06cd83098843..e507a939f8cd36ef37e3ed7cceec44bd49253b99 100644 (file)
@@ -1,9 +1,9 @@
 <?php
-/// @TODO no longer used?
-use \Friendica\Core\Config;
+
+use Friendica\Core\Config;
 
 function directory_run(&$argv, &$argc){
-       $dir = get_config('system', 'directory');
+       $dir = Config::get('system', 'directory');
 
        if (!strlen($dir)) {
                return;
index ff97b0e592913a6b1bdce9bba502d6e461497eef..e371080d19f99eed9bb8dff9b4353d6dd1aa954f 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-use \Friendica\Core\Config;
+use Friendica\Core\Config;
 
 require_once('include/socgraph.php');
 require_once('include/datetime.php');
index 098125a79864efb3315fe75ebd2319b6eca5a0de..da121157d21d5ed22454b33d4e76b26dea7d767e 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-use \Friendica\Core\Config;
+use Friendica\Core\Config;
 
 function expire_run(&$argv, &$argc){
        global $a;
index e79cc64764a3265211bf4f4458cbaeb39e77aff8..55ce4c70615a37b628a5bff563d95fdd93773bcd 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-use \Friendica\Core\Config;
+use Friendica\Core\Config;
 
 require_once('include/Scrape.php');
 require_once('include/socgraph.php');
index 5227b61a1ab118a3066247d631b7b8677776c584..3483d24930cec6b3fe61c43797c6768deab467b9 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-use \Friendica\Core\Config;
+use Friendica\Core\Config;
 
 require_once('include/follow.php');
 
index b42dcec119c76ca02af9e738627df22e2db60fb4..9b541e8e3c77f6fe1cc3bd776a0490145af3ffe7 100644 (file)
@@ -10,7 +10,7 @@
  *
  */
 
-use \Friendica\Core\Config;
+use Friendica\Core\Config;
 
 require_once("include/dba.php");
 
index e872532a481ae78dd882f5532c6fb36a8fb77c6f..38cda3f2bab189399d1c437f33fa10fa27be788e 100644 (file)
@@ -4,8 +4,8 @@
  * @brief Functions related to photo handling.
  */
 
-use \Friendica\Core\Config;
-use \Friendica\Core\PConfig;
+use Friendica\Core\Config;
+use Friendica\Core\PConfig;
 
 function getGps($exifCoord, $hemi) {
        $degrees = count($exifCoord) > 0 ? gps2Num($exifCoord[0]) : 0;
index c0c73cda61b7f7b75370ac655521cae0f018729d..b21bf676bae999e7f80e9a120f4f8de206853555 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-use \Friendica\Core\Config;
+use Friendica\Core\Config;
 
 require_once('include/queue_fn.php');
 require_once('include/dfrn.php');
index bd736e548447eb98f6238a72925b53b98b739bc8..a3938ad8ecbe390a7d52b612efea226963607d0a 100644 (file)
@@ -4,7 +4,7 @@
  * @brief Removes orphaned data from deleted contacts
  */
 
-use \Friendica\Core\Config;
+use Friendica\Core\Config;
 
 function remove_contact_run($argv, $argc) {
        if ($argc != 2) {
index b3fd5c6b0b1e5de407ad2c0fb2f5fdc1daa05c96..2b21e41965eea15b494ef2a53786c5a7b529c39d 100644 (file)
@@ -4,7 +4,7 @@
  * @brief Posts items that wer spooled because they couldn't be posted.
  */
 
-use \Friendica\Core\Config;
+use Friendica\Core\Config;
 
 require_once("include/items.php");
 
index 883a22989508eb4080c114f09472e030065adee0..7a3e48937ecc2241162c645d726464a976befbb8 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-use \Friendica\Core\Config;
+use Friendica\Core\Config;
 
 function update_gcontact_run(&$argv, &$argc) {
        global $a;
index 4949b830f4866c4863eb5fe99d363e35e06077a6..62f9bd3dde232d8611a150101b41a78adccd1e0c 100644 (file)
@@ -5,8 +5,8 @@
  */
 require_once("include/poller.php");
 
-use \Friendica\Core\Config;
-use \Friendica\Core\PConfig;
+use Friendica\Core\Config;
+use Friendica\Core\PConfig;
 
 function worker_init($a){
 
index e9ac527a1ad455fe8c9c29b8ba3ee1b987637b2c..943725ffe0819df55c4e2055f3bc87c5aa8e6abb 100644 (file)
@@ -7,7 +7,7 @@
 
 namespace Friendica;
 
-use \Friendica\Core\Config;
+use Friendica\Core\Config;
 
 require_once("include/network.php");
 require_once("include/Photo.php");