]> git.mxchange.org Git - friendica.git/commitdiff
Code beautification
authorHypolite Petovan <hypolite@mrpetovan.com>
Sat, 5 Oct 2019 12:34:07 +0000 (08:34 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sat, 5 Oct 2019 12:34:07 +0000 (08:34 -0400)
src/Core/Search.php
src/Module/Search/Acl.php

index 495d45d1b5f39d0c482b85d7a5b9f586843ba02f..5792fb1c9e57c3e525474e8389563c9561fd3154 100644 (file)
@@ -247,8 +247,6 @@ class Search extends BaseObject
                return $resultList;
        }
 
-
-
        /**
         * Searching for global contacts for autocompletion
         *
index 9c99d1fc96b0acd7c1e39fface379747ae772d27..95ebd1cf74025c1bb31c75f617baa59b49fc2959 100644 (file)
@@ -23,13 +23,13 @@ use Friendica\Util\Strings;
  */
 class Acl extends BaseModule
 {
-       const TYPE_GLOBAL_CONTACT = 'x';
-       const TYPE_MENTION_CONTACT = 'c';
-       const TYPE_MENTION_GROUP = 'g';
+       const TYPE_GLOBAL_CONTACT        = 'x';
+       const TYPE_MENTION_CONTACT       = 'c';
+       const TYPE_MENTION_GROUP         = 'g';
        const TYPE_MENTION_CONTACT_GROUP = '';
-       const TYPE_MENTION_FORUM = 'f';
-       const TYPE_PRIVATE_MESSAGE = 'm';
-       const TYPE_ANY_CONTACT = 'a';
+       const TYPE_MENTION_FORUM         = 'f';
+       const TYPE_PRIVATE_MESSAGE       = 'm';
+       const TYPE_ANY_CONTACT           = 'a';
 
        public static function rawContent()
        {