Remove unrecommended leading backslash for fully qualified namespaces

This commit is contained in:
Hypolite Petovan 2017-04-30 00:29:14 -04:00
parent 1d427aa214
commit ce866ad39b
20 changed files with 44 additions and 43 deletions

View File

@ -5,8 +5,8 @@
* @brief Class for storing data for a short time * @brief Class for storing data for a short time
*/ */
use \Friendica\Core\Config; use Friendica\Core\Config;
use \Friendica\Core\PConfig; use Friendica\Core\PConfig;
class Cache { class Cache {
/** /**

View File

@ -12,8 +12,8 @@
* configurations need to be fixed as of 10/08/2011. * configurations need to be fixed as of 10/08/2011.
*/ */
use \Friendica\Core\Config; use Friendica\Core\Config;
use \Friendica\Core\PConfig; use Friendica\Core\PConfig;
/** /**
* @brief (Deprecated) Loads all configuration values of family into a cached storage. * @brief (Deprecated) Loads all configuration values of family into a cached storage.

View File

@ -1,5 +1,6 @@
<?php <?php
use \Friendica\Core\Config;
use Friendica\Core\Config;
function cron_run(&$argv, &$argc){ function cron_run(&$argv, &$argc){
global $a; global $a;

View File

@ -1,6 +1,6 @@
<?php <?php
use \Friendica\Core\Config; use Friendica\Core\Config;
function cronhooks_run(&$argv, &$argc) { function cronhooks_run(&$argv, &$argc) {
global $a; global $a;

View File

@ -4,7 +4,7 @@
* @brief Some functions for date and time related tasks. * @brief Some functions for date and time related tasks.
*/ */
use \Friendica\Core\Config; use Friendica\Core\Config;
/** /**
* @brief Two-level sort for timezones. * @brief Two-level sort for timezones.

View File

@ -4,7 +4,7 @@
* @brief The script is called from time to time to clean the database entries and remove orphaned data. * @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) { function dbclean_run(&$argv, &$argc) {
if (!Config::get('system', 'dbclean', false)) { if (!Config::get('system', 'dbclean', false)) {

View File

@ -1,6 +1,6 @@
<?php <?php
use \Friendica\Core\Config; use Friendica\Core\Config;
function dbupdate_run(&$argv, &$argc) { function dbupdate_run(&$argv, &$argc) {
global $a; global $a;

View File

@ -1,9 +1,9 @@
<?php <?php
/// @TODO no longer used?
use \Friendica\Core\Config; use Friendica\Core\Config;
function directory_run(&$argv, &$argc){ function directory_run(&$argv, &$argc){
$dir = get_config('system', 'directory'); $dir = Config::get('system', 'directory');
if (!strlen($dir)) { if (!strlen($dir)) {
return; return;

View File

@ -1,6 +1,6 @@
<?php <?php
use \Friendica\Core\Config; use Friendica\Core\Config;
require_once('include/socgraph.php'); require_once('include/socgraph.php');
require_once('include/datetime.php'); require_once('include/datetime.php');

View File

@ -1,6 +1,6 @@
<?php <?php
use \Friendica\Core\Config; use Friendica\Core\Config;
function expire_run(&$argv, &$argc){ function expire_run(&$argv, &$argc){
global $a; global $a;

View File

@ -1,6 +1,6 @@
<?php <?php
use \Friendica\Core\Config; use Friendica\Core\Config;
require_once('include/Scrape.php'); require_once('include/Scrape.php');
require_once('include/socgraph.php'); require_once('include/socgraph.php');

View File

@ -1,6 +1,6 @@
<?php <?php
use \Friendica\Core\Config; use Friendica\Core\Config;
require_once('include/follow.php'); require_once('include/follow.php');

View File

@ -10,7 +10,7 @@
* *
*/ */
use \Friendica\Core\Config; use Friendica\Core\Config;
require_once("include/dba.php"); require_once("include/dba.php");

View File

@ -4,8 +4,8 @@
* @brief Functions related to photo handling. * @brief Functions related to photo handling.
*/ */
use \Friendica\Core\Config; use Friendica\Core\Config;
use \Friendica\Core\PConfig; use Friendica\Core\PConfig;
function getGps($exifCoord, $hemi) { function getGps($exifCoord, $hemi) {
$degrees = count($exifCoord) > 0 ? gps2Num($exifCoord[0]) : 0; $degrees = count($exifCoord) > 0 ? gps2Num($exifCoord[0]) : 0;

View File

@ -1,6 +1,6 @@
<?php <?php
use \Friendica\Core\Config; use Friendica\Core\Config;
require_once('include/queue_fn.php'); require_once('include/queue_fn.php');
require_once('include/dfrn.php'); require_once('include/dfrn.php');

View File

@ -4,7 +4,7 @@
* @brief Removes orphaned data from deleted contacts * @brief Removes orphaned data from deleted contacts
*/ */
use \Friendica\Core\Config; use Friendica\Core\Config;
function remove_contact_run($argv, $argc) { function remove_contact_run($argv, $argc) {
if ($argc != 2) { if ($argc != 2) {

View File

@ -4,7 +4,7 @@
* @brief Posts items that wer spooled because they couldn't be posted. * @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"); require_once("include/items.php");

View File

@ -1,6 +1,6 @@
<?php <?php
use \Friendica\Core\Config; use Friendica\Core\Config;
function update_gcontact_run(&$argv, &$argc) { function update_gcontact_run(&$argv, &$argc) {
global $a; global $a;

View File

@ -5,8 +5,8 @@
*/ */
require_once("include/poller.php"); require_once("include/poller.php");
use \Friendica\Core\Config; use Friendica\Core\Config;
use \Friendica\Core\PConfig; use Friendica\Core\PConfig;
function worker_init($a){ function worker_init($a){

View File

@ -7,7 +7,7 @@
namespace Friendica; namespace Friendica;
use \Friendica\Core\Config; use Friendica\Core\Config;
require_once("include/network.php"); require_once("include/network.php");
require_once("include/Photo.php"); require_once("include/Photo.php");